365 questions
-2 votes
1 answer
87 views
# Phantom Wallet signMessage() Always Returns -32603 "Unexpected error" on Solana
Problem Description I'm implementing wallet authentication in a Next.js/Solana application using direct Phantom wallet integration. The wallet connects successfully, but signMessage() consistently ...
1 vote
3 answers
215 views
PumpFun Bonding Curve: All Sell Operations Fail with "TooLittleSolReceived" Error on devnet
I'm experiencing an issue with a PumpFun token bonding curve where all sell operations fail with the same error, regardless of the amount being sold. The buy operations work perfectly, but selling any ...
1 vote
2 answers
205 views
How to subscribe to blocks on Solana
is there a chance to use blockSubscribe method, on public solana RPC, because it returns, "unknown method", or if I run it locally, it works, but the solana-validator uses too much resources,...
0 votes
0 answers
32 views
Non-deterministic returns from getParsedTransaction function of solana
I am experiencing an issue with the getParsedTransaction method in my production-level Solana application. Below is the function I am using: and this is the transactionHash - ...
0 votes
1 answer
211 views
How to get mint address of tokens in wallet with solana/web3.js v2
I am able to get the tokens in my wallet but then am not able to derive the mint address from the received data. I want to get the mint address of all tokens in my wallet to then use that with some ...
0 votes
0 answers
114 views
Cant fix Uncaught (in promise) SyntaxError: Cannot convert 22,42,79,4,0,0,0,0 to a BigInt
const BN = window.BN || solanaWeb3.BN; if (typeof window !== "undefined" && typeof window.Buffer === "undefined") { window.Buffer = { from: (data) => new ...
1 vote
0 answers
93 views
Unable to decode the value of the data field of the instruction in the Solana blockchain transaction
There is such a transaction in the Solana blockchain: 5Tkjtr2SnhaTbchug5TzeBZj6eehjdnDCLm9z6Hb3xFAcVtM6rAv2Ecxtvi6N8RbnfkRuRKR7aJv61RRNSPRxW77 There are instructions in it: ('Instruction Details' =>...
1 vote
0 answers
124 views
Solana token 2022 mint issue
I am making solana token mint website using solana/web3.js To mint token, I created token 2022 with metadata. now I need to supply tokens and used this instructions. const ata = ...
0 votes
0 answers
198 views
raydium sdk V2 Error: fetch vault info error
I am trying to read a pool with sdkV2, and got also a problem. got error : @raydium-io/raydium-sdk-v2/src/raydium/liquidity/liquidity.ts:1402 if (vaultItemInfo === null) throw Error("fetch ...
0 votes
1 answer
154 views
Solana Candy Machine v3: BorshIoError "Unexpected variant index: 1" during NFT minting
Problem Description: I'm trying to mint NFTs using Metaplex's Candy Machine v3, but encountering a BorshIoError during the mint transaction. The error occurs despite following the official ...
0 votes
1 answer
84 views
Cannot access spl-token account balance for ai16z using @solana.web3js
I I've been able to get token balances for sol and uscd plus tokens like Pyth Network using @solana.web3js. However the same code fails when retrieving the balance for ai16z. Simplified code looks ...
1 vote
0 answers
69 views
Solana USDC Transfer: "Cannot Read Properties of Undefined (Reading 'from')" Error in @solana/spl-token
I'm trying to transfer USDC on Solana using @solana/spl-token in a React app with @solana/wallet-adapter-react, but I'm getting this error: Uncaught TypeError: Cannot read properties of undefined (...
1 vote
1 answer
195 views
Receiving an error after a toast message, although the transaction is done successfully
We launched a public sale of nfts. While buying the nfts, the transaction is done successfully and shown on etherscan but after the transaction we got this error message twice only yet. Error message ...
0 votes
1 answer
485 views
problem in understanding Jupiter's GET /quote
I am currently trying to swap some tokens in Python using Jupiter to generate the quote for my transactions. Their method is well detailed and I can swap my SOLs for some random token. In this case ...
0 votes
1 answer
198 views
Get only buy transactions of an address in Solana chain
I’m trying to write a script to retrieve buy transactions for a specific address on the Solana blockchain. My goal is to identify the first 5 buy transactions, starting from the oldest to the newest. ...