Questions tagged [nbitcoin]
23 questions
0
votes
1 answer
NBitcoin and Mnemonic Standards
I am very new to Bitcoin development so forgive me...
I'm using NBitcoin in a .Net console app to generate a master key using a mnemonic and then derive hierarchical keys. Here is the code I am using:
Mnemonic mnemo = new Mnemonic(Wordlist.English,…

INNVTV
- 3,155
- 7
- 37
- 71
-1
votes
0 answers
How can I generate extended ripple address from mnemonic in .NET Core
I have a sample project to Generate Extended ripple address from mnemonic in .NET Core.
I use NBitcoin to get public address and generate address by using Rippleshrp lib but I did not succeed
How can I generate extended ripple address from mnemonic…

MaT
- 29
- 5
-1
votes
1 answer
Nbitcoin.Transaction inaccessible due to protection level C#
Using the NBitcoin library I am trying to make a transaction, when calling
Transaction tx = new Transaction { };
I get the error Transaction.Transaction() is inaccessible due to its protection level. Renaming it to NBitcoin.Transaction results in…

Noot Noot
- 1
- 3
-1
votes
1 answer
Obsolete "Use GetAddress(ScriptPubKeyType.Legacy) instead"
using System;
using NBitcoin;
namespace RSA
{
public class RSA
{
public static Wallet KeyGenerate()
{
Key privateKey = new Key();
var v = privateKey.GetBitcoinSecret(Network.Main).GetAddress();
…

tree em
- 20,379
- 30
- 92
- 130
-1
votes
1 answer
TransactionId in Blockchain and Bitcoin
Hello dear all friends,
I am very newbie about Blockchain and Bitcoin. I am struggling to learn from book and example sources.
Do I have to fill in the transactionId value before sending the coin?
If so, why? I think transactionId should appear at…
-2
votes
1 answer
Connect to Bitcoin core from c#
I download bitcoin core from here https://bitcoin.org/en/download and try to connect to it from C# I use the demo code from here
https://github.com/cryptean/bitcoinlib
I set bitcoin.conf like this:
server=1
rpcport=8332
rpcuser=myuser…

Fath Bakri
- 161
- 1
- 12
-2
votes
1 answer
How to send test BTC from one address to another with c# NBitcoin?
I am trying to figure this out for like three days now. I think my problem is not in transaction builder but in .AddCoins part.
TransactionBuilder builder = Network.TestNet.CreateTransactionBuilder();
var transaction = builder
…

pregmatch
- 2,629
- 6
- 31
- 68
-4
votes
1 answer
SetGenesis Hex String - Cryptovalues
how can I get this hex string from the Dash?
SetGenesis…

Omar Baruzzo
- 1
- 4