Bitcoin Forum
May 13, 2024, 02:47:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 »
81  Bitcoin / Development & Technical Discussion / Re: Finally showed up! on: December 10, 2017, 01:26:19 AM
next time before making tx, check the https://blockchain.info/unconfirmed-transactions

if Unconfirmed Transactions count is greater than 30k, then you should increase the fees, if you want your tx to confirm faster.
82  Economy / Web Wallets / Re: Bitcoin stolen from Blockchain account on: December 10, 2017, 01:23:27 AM
i never heard blockchain got hacked and refunding people
you are creating a fake story

i guess, he means, there was issue with blockchain.info creaing wallet address using some bugged method.,

but it has been sorted out already and it was in past.,

83  Bitcoin / Bitcoin Discussion / Re: The Legend of Satoshi Nakamato, FINAL STEP PUBLISHED.... 4.87 BTC GRAND PRIZE! on: December 08, 2017, 02:03:47 PM
this challenge looks amazing,  but its colorful ness makes it difficult for colorblind people, including myself.

are there any clues out there ?
84  Bitcoin / Bitcoin Discussion / Re: why some country banned bitcoin? on: December 08, 2017, 01:45:44 PM
its simple, government will ban anything and everything which they cant control i.e. cant make profit off of it., i.e. cant tax it.

and bitcoin by nature is decentralized , i .e. its people's money no control on it whatsoever.

so obviously, govrn., hate it and they mark it as banned. but it doesnt stop people from using it., 
85  Bitcoin / Bitcoin Discussion / Re: What if a person died with BTC!! on: December 08, 2017, 11:04:45 AM
each person should have cold wallet and hot wallet, treat it like cold wallet = bank locker and hot walletm is your daily wallet you carry., where in hot wallet you keep low amounts of btc and in cold wallet, you keep your most of the btc.

you make paper wallet of your cold wallet and give a copy to your loved ones as a backup/nominee.

in case person dies, then loved ones can still access btc from the cold wallet.

cold wallet / paper wallets  can be stored in bank lockers.,
86  Bitcoin / Bitcoin Discussion / Re: I found WIF key of 1BitcoinEaterAddressDontSendf59kuE on: December 08, 2017, 03:06:36 AM
Why dont you take them?


PM me the WIF and I will send the btc to you.


becuase i want more than that, not just 13 btc.

how do i know, you wont scam me.


Hi, all

I found WIF key of Bitcoin eater address i.e. 1BitcoinEaterAddressDontSendf59kuE

on http://allbitcoinprivatekeys.com/

and It start with 5


Well the funds are still there, so IF U had the WIF, your an idiot, thus it can only be surmised that your a liar. Smiley


1BitcoinEaterAddressDontSendf59kuE

13 BTC



It's EXTREMELY hard to break an address by brute force, its far better to build a bloom-filter for all addresses that have a balance over 1 BTC, then run a GPU farm over the ultimate rainbow table and hope that you occasionally hit on of the 10k addresses with value, but note that the other 10**77 have no value

Nobody can break an address, 1 in 10**77 is like finding a pebble in space, 10k in 10**77 is like finding a ring on some beach on the earth, buried in the sand Smiley

A good rain-bow table and a person with high-value address and weak passphrase may drop the 10**77 down to 10**32 and make it very manageable, the problem is most of these low entropy high value addresses were cracked pre 2015 Sad

is there bloom-filter which uses GPU ? instead of CPU ?
87  Bitcoin / Bitcoin Discussion / I found WIF key of 1BitcoinEaterAddressDontSendf59kuE on: December 08, 2017, 01:37:29 AM
Hi, all

I found WIF key of Bitcoin eater address i.e. 1BitcoinEaterAddressDontSendf59kuE

on http://allbitcoinprivatekeys.com/

and It start with 5







88  Alternate cryptocurrencies / Mining (Altcoins) / Re: My machine doesn't detect the CPU for mining. on: December 04, 2017, 04:40:08 PM
what error/warninng message exactly you are getting ?

any screenshots , or command line copy paste would be good for us to know what is causing.

89  Bitcoin / Development & Technical Discussion / Re: Is there minimal cpp code which can generate bitcoin WIF and address from sha256 on: December 03, 2017, 01:54:39 PM

Here is my version of the python code:
https://pastebin.com/19y9pUg5
It works for me. My Python version is 2.7.13

It generates 10 Addresses every time it is run. For the first address it also displays the 256 bit random number and public key

In the end there is some commented code, to make an uncompressed address,  and where you can manually add your own random number and it makes address form that


Thanks, i ll give it a go.,

i have created another paste, which wont get removed after 1 year., i hope you dont mind. so that ppl can benefit from this even after a year.

https://pastebin.com/6yw2BtDM
90  Bitcoin / Development & Technical Discussion / Re: Is there minimal cpp code which can generate bitcoin WIF and address from sha256 on: December 03, 2017, 12:15:54 PM
I just re-read my comment and realized that it can be understood that I have made my own c++ implementation. BUT I meant I have just edited the python code, not converted it to c++.

Here is a link with some c++ code: https://stackoverflow.com/questions/17672696/generating-bitcoin-address-from-ecdsa-public-key

Edit: Also tried to post my version of the python code, but the forum prevented me from posting it. Quite surprising. But doesnt matter, because you were not looking for python code anyway.
Code:
This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

i have already seen that code.,
but can't make it to work.,

you can always upload your code snippets to pastebin.com
91  Bitcoin / Development & Technical Discussion / Re: Is there minimal cpp code which can generate bitcoin WIF and address from sha256 on: December 03, 2017, 11:31:25 AM

I do not have a cpp code, but here is a python code that can do what you want.
https://davanum.wordpress.com/2014/03/17/generating-a-bitcoin-private-key-and-address/

It is quite readable even if you are not familiar with python. You could try to convert it to C.  Smiley

I have also edited that and made my own version, that can do addresses with compressed public keys. I can post it here if you are interested.

please do , i am really interested.,

thanks

i am specifically looking for c,cpp because of performance issue.,

 i have php code and it takes around 34 seconds to generate 128 pairs of private key and btc address.,
and if i add compressed address generaton too, then it takes 67 seconds.,
its very slow., so i am looking for fastest method out there.,

i am even looking at how can i use secp256k1 for the same.,
92  Bitcoin / Development & Technical Discussion / Is there minimal cpp code which can generate bitcoin WIF and address from sha256 on: December 03, 2017, 10:19:10 AM
Is there minimal cpp code which can generate bitcoin WIF and address from sha256 private key?

I am trying to generate Bitcoin WIF key Bitcoin Addresses from sha256 HEX private key.

but all i see there are bulky libraries and software packages.

I am looking for lightweight small, fast, cpp code which can generate

I need this
Code:
WIF KEY : 5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip4nEB3kEsreAnchuDf
Bitcoin Address : 1EHNa6Q4Jz2uvNExL497mE43ikXhwF6kZm
Bitcoin Address Compressed : 1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH

i have this
Code:
sha256 HEX key : 0000000000000000000000000000000000000000000000000000000000000001


Thanks for your time.

93  Bitcoin / Development & Technical Discussion / Re: Thoughts on this private key stealing mystery on: December 03, 2017, 05:18:14 AM
first3 methods are nothing new, i saw the same methods in some video , posted here .

using merkle roto and tx id as a private key and generate bitcoin address.,

but its like shooting in dark.

94  Bitcoin / Development & Technical Discussion / Re: can each miner define the high of the transaction fees? on: December 03, 2017, 03:57:29 AM
miners cant decide the fees, as fees are set by tx creator, i.e. person sending btc.

but miners can choose which tx they want to mine, and this can be automated.,

ie.. only select those tx whoose fees is higher than 250 sat/Byte, something like this/.

95  Bitcoin / Development & Technical Discussion / Re: what number is the transaction ID # on: December 03, 2017, 03:55:18 AM
check this example tx.

ref: https://blockchain.info/tx/b55df4431402e0c8d9fe04b8c07fb05ed1ed8727dceb46d6008da3de6510f73a

Code:
{
   "ver":1,
   "inputs":[
      {
         "sequence":4294967295,
         "witness":"",
         "prev_out":{
            "spent":true,
            "tx_index":307466351,
            "type":0,
            "addr":"19jie2wwRQWNe3Kc15wZkkhhJE7g1rkUJg",
            "value":1480000,
            "n":85,
            "script":"76a9145fd53c181e243a897aaba51288afe9da36fc580188ac"
         },
         "script":"47304402200b2bbbc2a5bbaee1c03649a40d2c0b54c53f961cc0adc0ff7eb2d1634db31cdb022011992f790277c16c05db7f15e7e5dc48583ae9fac3269552056320a5bf05d7b2012103fbed3027d72772cb7c9e5aadefdbeed6ae921fe0f7133dc84751ce916d498f5b"
      }
   ],
   "weight":900,
   "relayed_by":"0.0.0.0",
   "out":[
      {
         "spent":false,
         "tx_index":307481925,
         "type":0,
         "addr":"1E3TqdB5c5xAtY2MrmJNoHDEVMQneo7qUK",
         "value":1369003,
         "n":0,
         "script":"76a9148f10dee19ed951667706198e34caa999798c28c988ac"
      },
      {
         "spent":false,
         "tx_index":307481925,
         "type":0,
         "addr":"1EHFkijaKSHpwYtqmRiXcVfQoJaLdWgQKv",
         "value":75438,
         "n":1,
         "script":"76a91491ac9b3e2e57b3de3efce69c45c3d212a395d77e88ac"
      }
   ],
   "lock_time":0,
   "size":225,
   "double_spend":false,
   "time":1512273200,
   "tx_index":307481925,
   "vin_sz":1,
   "hash":"b55df4431402e0c8d9fe04b8c07fb05ed1ed8727dceb46d6008da3de6510f73a",
   "vout_sz":2
}

above b55df4431402e0c8d9fe04b8c07fb05ed1ed8727dceb46d6008da3de6510f73a is the tx id.

you can check your tx on

https://blockchain.info/tx/<tx id>
96  Bitcoin / Bitcoin Discussion / Re: Simple Question for bitcoin traders on: December 02, 2017, 05:10:30 AM
from what i understand , in trading btc.

buy low and sell high.

but i have a question, i have account at poloniex.,

and when i want to sell,

sell against what ?

i mean what should i get/buy when selling btc.
as polo doesnt deal with fiat currency.

so what is out there which is not as jumpy bitcoin, i.e. stable.

imho, usually people sell bitcoin and get USD.

or should i open account at some other exchange which offers exchange with fiat currency., i.e. real life money

what am i missing here ?

what i dont want is, lets say, i sold btc and got ripple or any other crypto then if its value goes down, my investement goes down too., i hope you are getting what iam trying to say.,

sorry for my bad english.,

thanks for your time.
You should dig more on how to trade well, buy low and sell high is the basic of trading but the question is what to buy?
And now you are struggling, its very complicated in your side if you will jump to the advance one so take your time in understanding the basic and gather the necessary tools to use.

will do, thanks


~
i don't recall where i read it, but tether value also fluctuates . but not as much as bitcoin.

USDT value doesn't really fluctuate, check the price history of it versus USD and you will see. what happens is that this is a centralized coin which only depends on the company that issues it. if there is some issue with them then the price of it can tank hard. for example last year when bitfinex was hacked (the company is also behind bitfinex) the price of tether fell hard.
additionally when using tether you should remember than you are trusting a third party (that company) and if they scam and run away you will be left holding a worthless token. and these days some people are speculating about this could actually happen.


so i guess, i should not store funds in usdt for longer time.,

~
i don't recall where i read it, but tether value also fluctuates . but not as much as bitcoin.

USDT value doesn't really fluctuate, check the price history of it versus USD and you will see. what happens is that this is a centralized coin which only depends on the company that issues it. if there is some issue with them then the price of it can tank hard. for example last year when bitfinex was hacked (the company is also behind bitfinex) the price of tether fell hard.
additionally when using tether you should remember than you are trusting a third party (that company) and if they scam and run away you will be left holding a worthless token. and these days some people are speculating about this could actually happen.

this happened just recently as well, you may notice tether warnings on other major exchanges like hitbtc. the major tether wallet got hacked; dont know if they are going to fork or what (i think they can blacklist those coins at least, via their protocol. but to stay on topic, actually the price of tether can get pretty volatile on a regular basis. you see this on the smaller exchanges, where the liquidity isnt so great. im waiting for tether to release the ERC20 token they were talking about, an ETH tether, but I hold Nubits and NuShares as a USd peg, as well as vaultoro gold (relatively stable, all of these).

never heard of Nubits and NuShares, will look in to it.,

thanks

from what i understand , in trading btc.

buy low and sell high.

but i have a question, i have account at poloniex.,

and when i want to sell,

sell against what ?

i mean what should i get/buy when selling btc.
as polo doesnt deal with fiat currency.

so what is out there which is not as jumpy bitcoin, i.e. stable.

imho, usually people sell bitcoin and get USD.

or should i open account at some other exchange which offers exchange with fiat currency., i.e. real life money

what am i missing here ?

what i dont want is, lets say, i sold btc and got ripple or any other crypto then if its value goes down, my investement goes down too., i hope you are getting what iam trying to say.,

sorry for my bad english.,

thanks for your time.

I do trade my Bitcoin vs. USDT, it's best if you are a trader to sell if it is in its high and buy in its low.

i think for short term, like 1-2 days, it doesnt matter much., but cant say for sure.,
thanks
97  Bitcoin / Bitcoin Discussion / Re: Simple Question for bitcoin traders on: December 02, 2017, 03:42:11 AM
Yes, you are allow to use other exchanger that accepts fiat. You can send your btc in your btc wallet that accepts fiat so you can easily converted your bitcoin and use it if you need it. Sell high buy low is always recommended. Ofcourse because that is when we can earn more.

majorty exchanges does not operate in my country .i.e. India

so i have very few options., i guess.,

i tried registering at gemini and it said , they are not operational in my country., so ill try coinbase.

thanks

edit:
tried coinbase too.
Coinbase does not currently support buys in your country. Subscribe to our blog to be notified when we add support for your country!

98  Bitcoin / Bitcoin Discussion / Re: Simple Question for bitcoin traders on: December 02, 2017, 03:39:07 AM
Polo has Tether (USDT) which is basically equal to a dollar (it's a lot more complicated than that, but in principle you can redeem 1 tether for $1).

Otherwise on Polo you trade BTC for dozens of other cryptocurrencies. Other exchanges like Coinbase and Gemini allow you to trade Bitcoins into fiat like Dollars.

i don't recall where i read it, but tether value also fluctuates . but not as much as bitcoin.

also tether terms and condition says they are not liable for anything , so in short 1 thether can become 10 cents too.


99  Bitcoin / Bitcoin Discussion / Simple Question for bitcoin traders on: December 02, 2017, 02:39:55 AM
from what i understand , in trading btc.

buy low and sell high.

but i have a question, i have account at poloniex.,

and when i want to sell,

sell against what ?

i mean what should i get/buy when selling btc.
as polo doesnt deal with fiat currency.

so what is out there which is not as jumpy bitcoin, i.e. stable.

imho, usually people sell bitcoin and get USD.

or should i open account at some other exchange which offers exchange with fiat currency., i.e. real life money

what am i missing here ?

what i dont want is, lets say, i sold btc and got ripple or any other crypto then if its value goes down, my investement goes down too., i hope you are getting what iam trying to say.,

sorry for my bad english.,

thanks for your time.
100  Bitcoin / Development & Technical Discussion / Re: I've been challenged with a prize of 10BTC to speculate with on: December 01, 2017, 05:01:16 AM
create offline paper wallet, make its copies., store in bank locker, send to yourself using your own email address as an attachment as photo of paper wallet, enable 2 factor authentication on that email account.

never store funds in online wallet, unless you are day trader, you will never know whicch site when will get hacked.



Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!