Bitcoin Forum
May 13, 2024, 05:05:02 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 26 27 »
41  Economy / Speculation / Re: is it time to start seriously talking about a $5000 BTC on: October 21, 2017, 04:13:27 AM
TOLD YOU.

Quote
we're at $770... $1000 coming soon.

Is it time to start seriously talking about $5000 BTC in the next 3 years?

You prediction was late by over 2 years  Shocked
42  Bitcoin / Project Development / Re: [coinb.in] Open Source, Multi Signature, HD Wallet and more! on: October 12, 2017, 07:10:25 AM
Quote
for newbies to coinb.in it must be online to send a transaction

@Pente i did find the testnet setting @ coinb.in/#broadcast the small blue gear symbol.


1)I changed settings to bitcoin(testnet), Broadcast: coinb.in (Bitcoin mainnet), Unspent outputs: coinb.in (Bitcoin mainnet)
2)created new send and recieve addresses
3)clicked Transaction to create a new transaction
   Address, WIF key or Redeem Script: area is greyed out so no inputs are possible
4)enter two recieve addresses with amounts into outputs tab
   Outputs (2.3000000) total is added for both recieve addresses
5)clicked Inputs tab
      Address, WIF key or Redeem Script: area is greyed out so no inputs are possible
6)enter input address into Transaction ID: field and fill in amount = Outputs (2.3000) + Transaction Fee
   Transacton fee: section is automatically filled in
ERROR: One or more input or output is invalid
7)enter input Public key (Share) into Transaction ID: field and fill in amount = Outputs (2.3000) + Transaction Fee
   Transacton fee: section is automatically filled in
submit
ERROR: One or more input or output is invalid
I will not post redundant steps but all combinations of Address (Share), Public key (Share), Private key (WIF key) generate
submit
ERROR: One or more input or output is invalid

can someone clarify (provide example or steps) to create a BCC BitcoinCash TEST transaction.  The systems apparently works for live transactions but i wish to use testnet with fake transactions for testing.  thank you much for help figuring this out if it can be done.

Ok, it looks like coinb.in doesn't actually get inputs (or even broadcast) from testnet. That section of code is incomplete. Also no testnet for BCC. Transactions are cheap enough on BCC, that you don't really need testnet. Just use a few pennies worth of BCC to test.
43  Bitcoin / Project Development / Re: [coinb.in] Open Source, Multi Signature, HD Wallet and more! on: October 07, 2017, 04:55:55 PM
I'm trying to do something like: unspent A1 + unspent A2 + unspent B ~> output C
can someone tell me how to sign raw tx made of 3 inputs from 2 different address?
I can create the unsigned raw transaction but when signing only one address works at a time
I cannot make all inputs signed properly, is it possible to do that with coinb.in?
or what is the correct procedure to create signed raw tx from 2 different address?

If I understand the code correctly, you will have to do one address at a time.

 unspent A1 + unspent A2 ~> output C

then

 unspent B ~> output C
44  Bitcoin / Project Development / Re: [coinb.in] Open Source, Multi Signature, HD Wallet and more! on: October 06, 2017, 08:42:31 PM
just wondering since coinb.in is for developers for testing - can it be used to test without btc or dodge in the address?  i would like to do some testing but rather not use real btc for general testing - this reddit seems to imply testing may infact be possible
https://www.reddit.com/r/dogeducation/comments/6eowvb/can_anyone_tell_me_how_to_use_coinbin/?ref=share&ref_source=link
but both the local javascript page and the live https://coinb.in/#txinputs return errors for addresses that have no coins.

also - am i incorrect in understanding that coinb.in can be used locally in an airgap situation to create transactions or must it be able to connect to generate transactions as i remember OutCast3 mentioned in a discussion on a bounty site....tho that may have been regarding an old pull requesst....

If you use the version at coinb.in, just go the the broadcast page, on the right side is a little icon that you can click, you can select the bitcoin test network there.
45  Bitcoin / Project Development / Re: [coinb.in] Open Source, Multi Signature, HD Wallet and more! on: October 02, 2017, 08:06:04 PM
I have set up clone that works with Bitcoin Cash P2SH at http://www.motelmaya.com/BCC/BCC.html

I have used it to redeem several small Bitcoin Cash HODL txs:

https://blockchair.com/bitcoin-cash/transaction/8410ec11c603a02748b0257273b48e7005cc6cb20b8b7efa742d0606f711244c
https://blockchair.com/bitcoin-cash/transaction/4563ecec650d1779f0181fa9dc5cbb721dff11727f1886ba6adf3155a33c8c5d
https://blockchair.com/bitcoin-cash/transaction/29c80487fbc886ff4678743da5994c5b4f829cba1538dd583e23af62b21edf31


I moved some code around to try and make stuff more user friendly.

46  Bitcoin / Project Development / Re: [coinb.in] Open Source, Multi Signature, HD Wallet and more! on: October 01, 2017, 07:32:02 PM
So, does that mean that we can't recover our BCH from time-locked addresses funded before the fork? I got one that will be available next saturday and I woudn't mind a few extra Bitcoins. Is there is any ETA?

We can recover BCH, but apparently we will have to sign the transaction while online, so not 100% secure.

It would be possible to rewrite the code to allow offline signing, but I don't think anyone will be motivated enough to do that.
47  Bitcoin / Project Development / Re: [coinb.in] Open Source, Multi Signature, HD Wallet and more! on: October 01, 2017, 08:32:57 AM
Ok, I finally got HODL txs to work using your link to https://github.com/globaltoken/coinbin/commit/88f5eee6ad9114feb70c523ca7c834d99c106476

I had to change one line of code in coin.js though (line 1024 in my notebook editor after running https://dirtymarkup.com on it):

Code:
} else if (utxo_script['type'] == 'multisig') {

to this

Code:
} else if ( (utxo_script['type'] == 'multisig') || (utxo_script['type'] == 'hodl')) {

I also had to push the tx elsewhere as the broadcast function failed for me.

These are minor bugs compared to the next one though.

I decided to create a tx for a large amount of BCC. I set everything up. Then I went offline to get my private key to sign it and discovered I can't sign offline. So I canceled the tx, and did some experiments.

It seems that if I try to sign while offline, I get an error message due to our javascript trying to reload the inputs during the signing. Specifically in r.getinputvalues routine. It will sign fine if I then go back online though (changing nothing else).

I don't remember this being a problem when signing a Hodl tx with Bitcoin offline when I originally tested it.

This seems like a major security breach to me. I have gone over the code as much as I can and while I don't see the private key being stolen, I am not a professional programmer either (I panhandle for a living) so something could be hidden in an obscure area from me.

Unfortunately, I don't think this can be easily fixed without rewriting a lot of code. I know it would take me months. I will probably just sign the large transaction and immediately broadcast it. My coins are still locked up for another 3 years though. Plenty of time to think about it though.

I just hope they don't use replay protection again during the Seg1X|Seg2X fork. What a f*cking mess.

48  Bitcoin / Project Development / Re: [coinb.in] Open Source, Multi Signature, HD Wallet and more! on: September 21, 2017, 01:31:46 AM
I locked a bunch of Bitcoins before the fork to BTC and BCC. So was wondering if the coins would be recoverable on the BCC fork. So decided to experiment.

Created a time locked address using address: 12Cp73Mbb4PEXmDjYitGcfgPDpRRvPPxpS,
Public Key: 04882490aac1fb4de17bcd7c70c72672d291d3cbce869834dee98452a98874766ef996adec88b74 98dfb3fd3141fb3af5fa020746ceb8f11d5ee4e35d26284f7e4
Time: 09/13/2017 01:00

Resulting Address: 3BQyYQS3vSdjYHNJK8ogyo5Z3NkmzxWrr3
Resulting Redeem Script:
04b00fb959b1754104882490aac1fb4de17bcd7c70c72672d291d3cbce869834dee98452a988747 66ef996adec88b7498dfb3fd3141fb3af5fa020746ceb8f11d5ee4e35d26284f7e4ac

Sent 0.001 BCC to that address, TX=
76f21028ebdeff0c2347ae00ada70d3c32cfdf8a38178b2a032f2a030ce420e4

To create a tx, I had to manually input everything, resulting in the following script:
0100000001e420e40c032a2f032a8b17388adfcf323c0da7ad00ae47230cffdeeb2810f27600000 0004a04b00fb959b1754104882490aac1fb4de17bcd7c70c72672d291d3cbce869834dee98452a9 8874766ef996adec88b7498dfb3fd3141fb3af5fa020746ceb8f11d5ee4e35d26284f7e4ac00000 00001905f0100000000001976a9140b0f1dc4fce32f2d38bdbf822c2222d1870b999a88acb00fb9 59

Signed with private key to 12Cp73Mbb4PEXmDjYitGcfgPDpRRvPPxpS:

0100000001e420e40c032a2f032a8b17388adfcf323c0da7ad00ae47230cffdeeb2810f27600000 00094483045022100fa78e56b7ec881f8bb2eb97ea9825856ecd06941dea3ac74092d663b721379 8b02207824e621b4ee21df7591a1e8f45a45b162e5ea39cd073b70bcabc6501f7683e3014a04b00 fb959b1754104882490aac1fb4de17bcd7c70c72672d291d3cbce869834dee98452a98874766ef9 96adec88b7498dfb3fd3141fb3af5fa020746ceb8f11d5ee4e35d26284f7e4ac0000000001905f0 100000000001976a9140b0f1dc4fce32f2d38bdbf822c2222d1870b999a88acb00fb959

Tried to push at http://blockdozer.com/insight/tx/send

Resulting in the following:

An error occured:
64: non-mandatory-script-verify-flag (Signature must use SIGHASH_FORKID). Code:-26
49  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMY] Myriad 0.11.3.1 | Upgrade | 1st Multi-Algo | New algo (yescrypt) on: July 13, 2017, 11:12:51 PM
This coin is great Smiley go back to 112 sat Smiley

I sold a bunch at 175, then bought them back at 125. Now it is 79.

Probably will drop down to 40 or so before it goes back up. Regardless, I am just going to hold for now. I find it very stressful to try and time the market.
50  Economy / Speculation / Re: Is it a good time to sell ETH and buy BTC? on: July 13, 2017, 10:33:26 PM
I disagree about ETH.

I believe that ETH will eventually get back into the double or even single digits before it's all over, so if I were the OP I would get out of ETH asap.

Run for the hills and buy some bitcoin!

Totally agree. Litecoin went up to $50 each, then dropped to $1 each. I expect the Ethereum crash to be very violent...as in SINGLE DIGITS.
51  Economy / Speculation / Re: True or false: Ethereum is a bubble, bitcoin is not on: July 13, 2017, 10:29:05 PM
I am going to make a prediction here, so I can reference it later:

Ethereum will drop to below $10/each before the end of 2018

I also think there is a 50/50 chance that Ethereum will drop below $5/each.

 Grin Grin Grin Grin Grin Grin Grin Grin Grin Grin Grin


From a peak of about $400 down to just over $200. Can we say 50% drop so far? At this rate, it will reach my goal of $10 before the end of the year. I will buy one Ethereum at $10 for good luck and an additional Ethereum at every 20% drop from there.
52  Alternate cryptocurrencies / Altcoin Discussion / Re: How to protect my altcoins? Please help. on: July 13, 2017, 10:18:29 PM
I use Coinomi for multiple coins and it works pretty good.  But as I don't own most of the coins you listed, I can't say for sure if Coinomi offers wallets for all of them.  Otherd have suggested paper wallets,  and that's a damn good idea...IF you're holding for the long term.   IMO a lot of those coins aren't worth holding longer than a few weeks at most.
Why not?

Maybe they are garbage?
53  Bitcoin / Development & Technical Discussion / Re: NOOB QUESTION: Generating brain wallet offline on: July 10, 2017, 10:35:54 AM
If you use a brainwallet, be sure to use some non-standard characters:

http://www.motelmaya.com/_BrainWallet.html
54  Economy / Speculation / Re: Bitcoin prices may hit $1 billion - Fox Business Speculates on: July 07, 2017, 06:22:57 AM
While I hope for a $million in my lifetime, I see a $billion as being fully possible by the year 2100. By then we will probably see at least one hyperinflation event.

its an interesting news and i really like it and it could be happen but i wonder if we are still alive in that year or not? if we can live until that year, then we can see that our grand children will enjoy the profit and they can buy anything they want with that money.

I don't have a lot of bitcoins, but I still plan to set one aside for each of my five grandkids. Best would be if it could be a surprise for their 35th birthday. Young enough to still enjoy it, but old enough that hopefully they won't just waste it.
55  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: How many hacked polo accounts does it take for them to make 2fa mandatory? on: July 07, 2017, 06:18:23 AM
Coinbase just disabled 2FA SMS due to lack of security in phones.

They are allowing you to use 2FA Apps though if you have the money to get an Android, iPhone, or Windows phone.

Personally, I think people should just strong passwords.
56  Economy / Speculation / Re: Bitcoin prices may hit $1 billion - Fox Business Speculates on: July 07, 2017, 05:31:04 AM
While I hope for a $million in my lifetime, I see a $billion as being fully possible by the year 2100. By then we will probably see at least one hyperinflation event.
57  Alternate cryptocurrencies / Altcoin Discussion / Re: How to recover dogecoin lost private key?? on: July 06, 2017, 09:23:30 AM
There are really only three ways to recover funds in a paper wallet

1) Sweep coins to another address using private key.

2) Import key into another wallet.

3) Create a tx by hand using the private key.
58  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: How many hacked polo accounts does it take for them to make 2fa mandatory? on: July 02, 2017, 07:40:02 PM
Over the last 3 month there are many newbie users who don't even know the dangers about 2fa, there may be more hacked accounts.

FTFY - 2FA is very hackable and a security weakness

59  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: How many hacked polo accounts does it take for them to make 2fa mandatory? on: July 02, 2017, 08:37:45 AM
2FA is actually less secure than a strong password. Phone accounts can be easily hacked via various methods. In fact, I am suspecting that OP is really a hacker that is trying to make Polo accounts less secure by getting them to require 2FA.

Accounts with 2FA allow a password reset using your phone, that is how Coinbase accounts get hacked all the time. If you don't use 2FA on your Coinbase account, you can't be hacked with a strong password.

2FA = hacker's wet dream

2FA is like requiring home owners to put multiple locks on their guns so that they can't quickly arm themselves if they get robbed.

I just used my Keepass to generate this 24 digit password: Ã:äPrQÕ¾+N=í©Sÿ3ƽ§«7Ùà2

I checked the generator and there are a potential of over a hundred different characters, so 100^24 = over 10^48 possible combinations.

There is no way OP can hack 10^48 possible combinations, so he wants to degrade security by using the 2FA back door method.

This is how you know OP is a hacker.
60  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: How many hacked polo accounts does it take for them to make 2fa mandatory? on: July 01, 2017, 06:34:06 AM
Polo continually is getting hacked. User accounts without 2fa are the target. Value in said accounts is traded out to the attackers benefit.

Polo is complacent in this. They know and do nothing. They are enabling this to happen. Most likely they are insolvent and or are in on it. Very shaddy!

Its time for a class action lawsuit.



I found your polo password: https://www.youtube.com/watch?v=QcyeYFXdHNQ#t=1m17
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 26 27 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!