Bitcoin Forum
May 13, 2024, 01:27:07 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Bitcoin / Development & Technical Discussion / Re: i'd like to start educating others about blockchain: main points? on: August 03, 2018, 05:57:38 AM
what are main areas that are fundamental to learn in order to fully understand blockchain, so that they can do the same with others and become valuable members of crypto community?

Which aspect of blockchains? Do you mean to fully undertand the technical details or just a brief overview about blockchains that they are able to use it?
2  Other / Beginners & Help / Re: How to protect myself from RBF? on: August 02, 2018, 07:35:16 AM
Replace by fee (RBF) just means that the sender can resend the transaction with a higher fee, if they accidentally set a low fee and dont want to wait hours for confirmations. It is possible to double spend an unconfirmed transaction without RBF flag.

When the transaction has 1 confirmation it is safe from double spend attacks. Thats why it is important to wait ca 10 minutes for 1 confirmation before sending the product. For high amounts some people prefer to wait for 3+ confirmations.

If there is 1 confirmation does it mean you can't do RBF?

No, you can only use RBF for unconfirmed transactions. Otherwise your transaction was already put into a block and added to the chain.
3  Bitcoin / Development & Technical Discussion / Re: How can we make Bitcoin/ Lightning more user friendly? on: July 31, 2018, 08:22:08 AM
It has to be easy. No setup, no sending to the lightning nodes, everything has to happen automatically.

I tested the wallet (was called zap when I remember correctly) and it would be too hard to set it up for a non-tech person. People don't want a complicated setup, they want an app on their smartphone which just works. That's it.
4  Bitcoin / Development & Technical Discussion / Re: Collection of 18.509 found and used Brainwallets on: July 30, 2018, 05:31:18 PM
Did you also find wallets with any balance on it? Would be interesting if people still use them.
5  Bitcoin / Bitcoin Technical Support / Re: BIP 70 python(Flask) - payment with two outputs on: July 26, 2018, 01:18:13 PM
You didn't provide much info.

If you have the bitcoin CLI available, look for listunspent, createrawtransaction, signrawtransaction and broadcastrawtransaction.
6  Other / Beginners & Help / Re: how to have 25 $ daily ??? on: July 26, 2018, 01:13:06 PM
What do you think? 25$ per day without any effort? Sure ...

I can only recommend that you learn some useful skills and after a few years you will have a decent income. Maybe software development if you prefer to work from home.
7  Bitcoin / Development & Technical Discussion / Re: Development Environment to get started on: July 26, 2018, 09:16:57 AM
Bitcoin core is written in C, so any IDE / text editor + compiler would be enough.

For solidity, you can take a look here (https://solidity.readthedocs.io/en/develop/).
Multiple plugins for several IDE's are available, according to the docs, remix(https://remix.ethereum.org/), a browser based IDE, is suggested for developing smart contracts.
However, you can find an solidity extension for visual studio here: https://marketplace.visualstudio.com/items?itemName=ConsenSys.Solidity.

Thank you for your feedback. I will checkout the extension, I really like visual studio code.
8  Bitcoin / Development & Technical Discussion / Development Environment to get started on: July 25, 2018, 09:00:13 AM
I am pretty new to blockchain development and would like to know how I can get started. My idea would be an linux enviroment (proably ubuntu) with visual studio code.

I will use it mainly for qt wallets and will also checkout solidity. Is vs code suited for this or should I use another iDE?
9  Bitcoin / Bitcoin Technical Support / Re: Retrieve private key from seed and pubblic address on: July 25, 2018, 08:33:31 AM
ismine function returns false...
So nothing, I was soooo sure, but wrong -_-

Thanks everybody for the help!

I assume the function look up your address only in the listed ones and therefore you will get false as result. You could try to create a raw transaction and let electrum only sign it for you.

Just an idea, don't know if it will work.
10  Other / Beginners & Help / Re: Parsing unix timestamp from CLI response with jq on: July 20, 2018, 07:50:28 AM
Not sure if you can use this but if you simply want to convert that to a readable date, you can use:

Code:
date -d @1440604784 +'%d.%m.%Y'

The output would be:

26.08.2015

Thank you. I used another approach, but your idea helped me to find the right solution for my issue.

e.g. (output truncated):
Code:
bitcoin-cli listtransactions | jq '.[].time |=(. | strftime("%Y-%m-%d"))'

Result:
Code:
{
  "txid": "5756ff16e2b9f881cd15b8a7e478b4899965f87f553b6210d0f8e5bf5be7df1d",
  "blockhash": "0000000000000000027d0985fef71cbc05a5ee5cdbdc4c6baf2307e6c5db8591",
  "blockheight": 371622,
  "confirmations": 160829,
  "time": "2015-08-26",
  "blocktime": 1440604784,
  "isCoinBase": true,
  "valueOut": 25.37726812,
  "size": 185
}
11  Bitcoin / Electrum / Re: Electrum: What does bad-txns-vin-empty mean? on: July 19, 2018, 09:11:43 AM
I think the error is related to you trying to spend coins with a segwit scrip/adress, while the wallet/server you are using doesn't recognize the script, and is thus unable to broadcast it.

Which is pretty weird, considering i also use Electrum segwit and never had any issues.

Try switching electrum servers, see if that does anything?

https://bitcoin.stackexchange.com/questions/75942/16-bad-txns-vin-empty-code-26/75944

Thank you! Switching the server worked and I was able to broadcast the transaction.
12  Bitcoin / Electrum / Electrum: What does bad-txns-vin-empty mean? on: July 19, 2018, 08:52:19 AM
Code:
I wanted to test out a segwit wallet on electrum, but when I broadcast a new transaction I get the this error.
[code]
error: {'code': 1, 'message': 'the transaction was rejected by network rules.\n\n16: bad-txns-vin-empty

Steps to reproduce
1. Create new segwit wallet with electrum
2. Send funds to an andress from this wallet
3. Send funds from this address

What does this error mean and how can I fix it?[/code]
13  Other / Beginners & Help / Parsing unix timestamp from CLI response with jq on: July 18, 2018, 11:55:16 AM
I would like to query data with the CLI and parse the response. I am using the terminal with jq for this.

{                                                                                                                                                   
  "txid": "5756ff16e2b9f881cd15b8a7e478b4899965f87f553b6210d0f8e5bf5be7df1d",                                                                                                                                                                                               
  "blockhash": "0000000000000000027d0985fef71cbc05a5ee5cdbdc4c6baf2307e6c5db8591",                                                                   
  "blockheight": 371622,                                                                                                                             
  "confirmations": 160829,                                                                                                                           
  "time": 1440604784,                                                                                                                               
  "blocktime": 1440604784,                                                                                                                           
  "isCoinBase": true,                                                                                                                               
  "valueOut": 25.37726812,                                                                                                                           
  "size": 185                                                                                                                                       
}

My goal is to change the unix timestamps to another format and pipe the result to another command.

So, the block time should be changed from this
  "blocktime": 1440604784,                                                                                                                           

to this
  "blocktime": "18.07.2018"
14  Bitcoin / Electrum / Electrum: Can you recover new change addresses from seed? on: July 18, 2018, 07:54:53 AM
I noticed a a nasty bug on the electrum wallet. If you use it regularly and don't have any change addresses left, electrum will create new ones for you.

If you then restore the wallet from the seed, the newly generated addresses aren't visible / availalable anymore. How can I check the correct balance on my new wallet? Would it be possible to sign from the missing change addresses?
15  Alternate cryptocurrencies / Altcoin Discussion / Re: Cost of dApp development on ethereum blockchain? on: July 18, 2018, 06:17:59 AM
On https://ethgasstation.info/ , the standard transaction cost seems $0.218 right now. What is this standard? How much raw data (in bytes) can it be carried per transaction at this cost?

This is the maximal cost for the standard gas limit of 21000 (typically used for a standard ETH transaction). You can adjust this with the "Gas-Time-Price Estimator" on this site.

I am not sure how many bytes a standard transaction need.
16  Bitcoin / Development & Technical Discussion / Re: Setting up nodes. on: July 13, 2018, 07:13:44 AM
1. How can i set up masternodes (I tried to do a research and watching online but I'm still confused)

This is different from coin to coin. The best way to test it out is to search for a coin which has maternodes and a active testnet. Then you can just ask for coins on the testnet (they do not have any worth) and create a test setup.

2. Do I need to have a VPS in order to create a node?

No, but it is probably recommended. You don't know which kind of software you are executing, even if it's open source. Not every new altcoin is reviewed.

3. What does the VPS do in regards with setting up node?

VPS stand for Virtual Private Server and is in the most cases just a separated Environment (An Operating System on Shared Hardware Resources) on a server.

4. Is it risky? Or atleast may I know what are the risk I will face when I setup a node?

Yes, could be. There are also many scams and they can infect your computer with malware.
17  Bitcoin / Bitcoin Technical Support / Re: Any Trusted BTC Wallet? on: July 13, 2018, 07:02:15 AM
You will find the most common wallets in the link from mocacinno.

Electrum is probably (I didn't check any statistics) the one which is mainly used. Before using it you should understand change addresses.
18  Other / Beginners & Help / Re: Ready to learn about crypto! on: July 12, 2018, 10:39:55 AM
Do you mean the fee that you have to pay if you register from a blacklisted ip?

What help do you need? What do you want to learn?
19  Alternate cryptocurrencies / Altcoin Discussion / Re: Cost of dApp development on etherium blockchain? on: July 12, 2018, 09:12:12 AM
I just quote this here. You should find all information about the required gas for the deployment of contracts in this article.

https://hackernoon.com/costs-of-a-real-world-ethereum-contract-2033511b3214
Quote
At 20 Gwei per gas, deploying the contract cost 0.01072934 ether, or about $3.21 USD at the current exchange rate of $300/ETH.

You can also minimize the costs by reducing the gas price, check https://ethgasstation.info/ for a safe low price.
20  Bitcoin / Bitcoin Technical Support / Re: Bitcoin core help on: July 12, 2018, 08:20:54 AM
You have a couple of options.

  • The easiest one is to dump your private key and import it into another wallet
  • You can also create, sign and send a raw transaction. This is a complicated one, if you are interested in it, just drop me a message
  • You can download the blockchain to a external hard drive. Move the folder Bitcoin to E:\Bitcoin and then execute this command from your cmd
    • mklink /J C:\Users\Username\AppData\Roaming\Bitcoin E:\Bitcoin

Don't use online based web wallets, many of them are scam or could be hacked.
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!