Using Solana Web3 TS library how can we wrap and unwrap SOL? Here on this link it is possible to see what the SPL Token CLI program does for wrapping ...
Using Solana Web3 TS library how can we wrap and unwrap SOL? Here on this link it is possible to see what the SPL Token CLI program does for wrapping ...
How to decode the transaction instruction of Solana. Is there any method to decode the instruction? I want to know which function is called and what v ...
Folks, I'm starting with Solana and it's been rough to learn. Despite the poor error messages and the learning curve of Rust, I'm making my way throug ...
I have deployed my contract on the Solana mainnet and when I run The server started running successfully but when I post a file to the service, it ...
When i try to upgrade a solana program on mainnet using buffer, it has limits because when you deploy a program on Solana, the amount of space allocat ...
What I'm tryding to achieve is a webpage on which the user connects its phantom wallet and then by a simple press of a button creates a token. In ord ...
i'm trying to send an spl-token transaction but it's not working, it's a transacion on the devnet with a token that i newly created, my code is and ...
Suppose I have a simple web UI to connect wallet and click a button to invoke a solana program transaction. Since the call is happening actually on us ...
I've been trying to figure out if it's at all possible to create a smart contract in Solana that will run a long-ish calculation (e.g. many sha256 ite ...
I am trying to transfer some spl tokens from one account to another. The account's authority is a PDA of the program: My program succeeds without t ...
I am getting an error message when creating a signature Signature created like this: After few seconds/minute or 2 I get the above error message ...
I'm doing a simple transaction with a single transfer instruction for 0,1 SOL from one account to another. Then I want to get the transaction data and ...
Tldr; If I close an ATA with delegated authority, and reopen it, will it still have delegated authority? Further details: I’m trying to help someone ...
I am new to solana and exploring the things. I came across these terms What is the difference between these three? ...
I have tried sending sol token from my pda account to another account This only works if the account calling this function is also the receiver. I ...
What I would like to achieve is to make the user use the solana program for "free" and make the company pay for the transaction, what I have in mind i ...
Try to transfer tokens to one of the account declared in remaining_accounts list. Here's the way I create CpiContext: let cpi_context = CpiContext:: ...
I'm building on Solana and need some PDAs to store my program state. The default with anchor is constantly serialize/deserialize the accounts, even w ...
I am just finishing an upload of 8000 assets to candy machine (via the upload command). Everything seemed to be working well when it was creating the ...
I am trying to make a transaction using python in the Solana network, I am using solana.py python library and anchor.py, but I am unable to identify h ...