Created
May 23, 2025 15:05
-
-
Save codebender828/9d5f1a9877981f040a3b7b561cca1a85 to your computer and use it in GitHub Desktop.
Deserialize Base 64 Transaction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Transaction } from '@solana/web3.js'; | |
| const transactionBuffer = Buffer.from(<BASE_64_TRANSACTION_PAYLOAD>, 'base64'); | |
| const transaction = Transaction.from(transactionBuffer); | |
| // proceed with transaction signing and sending |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment