Mehrdad
Mehrdad
@nazbrok Hi Can You Send Your code ? Because i don't Create partially signed transaction
` //Client App Wallet wallet = new(MnemonicWords); Account fromAccount = wallet.GetAccount(10); Account toAccount = wallet.GetAccount(8); var blockHash = rpcClient.GetLatestBlockHash(); Console.WriteLine($"BlockHash >> {blockHash.Result.Value.Blockhash}"); TransactionBuilder txBuilder = new TransactionBuilder() .SetRecentBlockHash(blockHash.Result.Value.Blockhash) .SetFeePayer(fromAccount) .AddInstruction(SystemProgram.Transfer(fromAccount.PublicKey,...
`// Set up the RPC client for sending and receiving transactions // Set up the wallet for the sender account var mnemonicWordsSender = "your mnemonic words for the sender account";...
@BifrostTitan @tiago18c @nazbrok Hello, is it check to use this method? The next point is that I use Is this the right solution for what I want to do? `var...