Solnet icon indicating copy to clipboard operation
Solnet copied to clipboard

Solana's .NET SDK and integration library.

Results 57 Solnet issues
Sort by recently updated
recently updated
newest added

This PR aim to fix the issue #426 Solana added versionned transaction since EPOCH 358. Current version of solnet only support `getTransaction` and `getBlock` on LEGACY version. To be able...

When I change wallet MnemonicWords to new one and run AssociatedTokenAccountsExample , I got this error in response of transaction : `Transaction simulation failed: Attempt to debit an account but...

Would like to make use of rpcRequests and streamRpcRequests that support multiple types of encoding [encoding](https://docs.solana.com/api/http#parsed-responses) string optional Encoding format for Account data Values: base58 base64 base64+zstd jsonParsed

**Describe the bug** I created a transaction (Tx) in my client and sent the signature to the server. Then, I created a new transaction in the server and added the...

bug

GetTokenAccountBalance is available in the rpc client but not in the batch. I urgently need this function. ``` public void GetTokenAccountBalance(string pubKey, Commitment commitment = Commitment.Finalized, Action callback = null)...

When SendTransaction is used, it is possible that the request has been sent to the block and write succeeded, but it still returns a request failure(For example, timeout). At this...

**Describe the bug** When I call InstructionDecoder.DecodeInstructions to parse **5vwPMat2ukA6SZpL4vWa5ty1W4WALreavXvPoUUDqtt4EHkfD7Kgyk5QPDxRVwH1yEsYK76tDZhoC83EKM2RAMMo** an exception will be thrown **To Reproduce** ``` static void Test() { var rpcClient = Solnet.Rpc.ClientFactory.GetClient("https://rpc.ankr.com/solana"); var t = rpcClient.GetTransaction("5vwPMat2ukA6SZpL4vWa5ty1W4WALreavXvPoUUDqtt4EHkfD7Kgyk5QPDxRVwH1yEsYK76tDZhoC83EKM2RAMMo");...

bug

I can use github.com/gagliardetto/solan-go to create an Account (Wallet) through private key (base58) ``` // Wallet is a wrapper around a PrivateKey type Wallet struct { PrivateKey PrivateKey } func...

Hi I have my wallet address and I Would like to get a list of stake accounts and iterate each stake account to get all the reward transactions. Is that...