Nathan Martell
Nathan Martell
Don't craft the transaction twice just pass the message and signature on to the server. When you sign the transaction it hashes the transaction message and since the client transaction...
Server doesn't need to sign the transaction for this type of transaction. The client doesn't need authorization or sign-off from the recipient to send SOL. In this case there is...
var rpcClient = ClientFactory.GetClient(Cluster.MainNet); // Set up the wallet for the sender account var mnemonicWordsSender = "your mnemonic words for the sender account"; var walletSender = new Wallet(mnemonicWordsSender); var accountSender...
https://github.com/bmresearch/Solnet/pull/419/commits/eac74306442d8585646c90cb17bf7b2b57f4a529 Added support for versioned transactions. I believe compile message needs a update to write versioned transaction from the client not totally sure so this only covers the reading portion.
https://github.com/bmresearch/Solnet/commit/eac74306442d8585646c90cb17bf7b2b57f4a529 This PR allows you to get & decode versioned transactions successfully. You will no longer get the client warning that you mentioned above. The response for the TX in...
[2f6d8dc](https://github.com/bmresearch/Solnet/pull/419/commits/2f6d8dcf5ee774ab36d38c240a5e672880b26e9f) Added patch to recent PR. Awaiting merge from @tiago18c @murlokito
It already been patched. Compile from source to use the latest version. The nuget package will be updated soon https://github.com/bmresearch/Solnet/pull/419/commits/eac74306442d8585646c90cb17bf7b2b57f4a529
Has already been introduced in a previous pull request https://github.com/bmresearch/Solnet/pull/419/commits/21fdbcee0e90d59c8eef5391fe72f2546791211a
I found multiple ways to get this error. Double check you have the correct wallet public keys set in the CreateMetadataAccount method when creating the instructions. If they are not...
Which instructions are you building in the transaction builder? Hard to pin point the issue without knowing what parameters you are using as well as other instructions included in the...