Bitcoin Forum
April 23, 2024, 11:25:55 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 [28] 29 »
  Print  
Author Topic: CoinWallet.eu Stress Test Cancelled + Bitcoin Giveaway  (Read 98815 times)
johoe
Full Member
***
Offline Offline

Activity: 217
Merit: 238


View Profile
September 18, 2015, 06:13:39 PM
Last edit: September 18, 2015, 06:31:00 PM by johoe
 #541

28 BTC from inputs or outputs? I mean, 28 BTC including fees?

28 BTC is what was sent to the published addresses and what was subsequently sweeped from them.  So it includes the fees that the sweeping transactions payed.  It doesn't include the fee that coinwallet.eu payed to produce the dust output.  This fee could be another 20-40 BTC; I'm too lazy to write a program to count it.   What people trying to collect the dust received was probably in the range of 5-7 BTC, but that is a wild guess.  I guess amaclin is the only one who made more than a bitcoin.  Okay, there is also the 3J9AGq2aHeqjW13jj1LkaK5kCgZ8EyAjXZ address.  When I have time I write a script that counts the fees and sweeped amount for every major reused address.

Donations to 1CF62UFWXiKqFUmgQMUby9DpEW5LXjypU3
1713914755
Hero Member
*
Offline Offline

Posts: 1713914755

View Profile Personal Message (Offline)

Ignore
1713914755
Reply with quote  #2

1713914755
Report to moderator
1713914755
Hero Member
*
Offline Offline

Posts: 1713914755

View Profile Personal Message (Offline)

Ignore
1713914755
Reply with quote  #2

1713914755
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713914755
Hero Member
*
Offline Offline

Posts: 1713914755

View Profile Personal Message (Offline)

Ignore
1713914755
Reply with quote  #2

1713914755
Report to moderator
1713914755
Hero Member
*
Offline Offline

Posts: 1713914755

View Profile Personal Message (Offline)

Ignore
1713914755
Reply with quote  #2

1713914755
Report to moderator
wladston
Full Member
***
Offline Offline

Activity: 157
Merit: 102


Always remember to be awesome.


View Profile WWW
September 18, 2015, 07:15:41 PM
 #542

I got less than half a bitcoin, but I spent a lot of time writing scripts and babysitting bitcoin nodes, and adjusting size/fee ratios. It was fun however.

Love programming? Checkout my book at http://code.energy/book
basil00
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
September 19, 2015, 02:57:45 AM
 #543

I guess the reason is that large transactions are more likely to conflict with something in the mempool and are therefore much harder to push to the miners, correct?

Yes.  Smaller txs have more overhead, but this is still more efficient than most of the sweeper spam that creates utxos and uses big sigs.  Ideally the miners would OP_RETURN it themselves in big txs but it seems they were too lazy.

Quote
Does this mean that the keys for the remaining 172 BTC will be published later?

My guess is that coinwallet overestimated the impact of the "giveaway", so gave up.  The problem is, of course, that one can only construct low-fee txs with dust inputs, which has no real impact on the network (apart from artificially inflating the average blocksize).  Normal-fee traffic was unaffected.

I guess coinwallet will consolidate the remaining dust outputs themselves at some point since there is no real point in giving it away.  But if they publish more keys then our bots are ready...
wroniewicz
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
September 19, 2015, 02:17:37 PM
 #544

how i use this keys? Smiley
7788bitcoin
Legendary
*
Offline Offline

Activity: 2282
Merit: 1023


View Profile
September 22, 2015, 07:02:33 AM
 #545

how i use this keys? Smiley

Just import them into your blockchain wallet or bitcoin core. BTW, they are all empty now.
rav3n_pl
Legendary
*
Offline Offline

Activity: 1361
Merit: 1003


Don`t panic! Organize!


View Profile WWW
September 22, 2015, 04:26:21 PM
 #546

Yes, importing to Core is a good idea!
Just be patient... ALOT! Tongue

1Rav3nkMayCijuhzcYemMiPYsvcaiwHni  Bitcoin stuff on my OneDrive
My RPC CoinControl for any coin https://bitcointalk.org/index.php?topic=929954
Some stuff on https://github.com/Rav3nPL/
wroniewicz
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
September 22, 2015, 07:19:52 PM
 #547

this is not over yet Smiley
wroniewicz
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
September 24, 2015, 04:31:58 PM
 #548

so wen nev keys will be posted Huh
CohibAA
Full Member
***
Offline Offline

Activity: 223
Merit: 130



View Profile WWW
September 24, 2015, 04:33:06 PM
 #549

so wen nev keys will be posted Huh

Maybe you're not looking in the right place.

wroniewicz
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
September 24, 2015, 05:03:14 PM
 #550

wat you mean Smiley
amaclin
Legendary
*
Offline Offline

Activity: 1260
Merit: 1019


View Profile
September 24, 2015, 05:03:26 PM
 #551

But if they publish more keys then our bots are ready...
I have one more suggestion for your bot.
You should not just replace output to OP_RETURN and re-sign the inputs.
The bot should combine inputs to a set of 10-20-30 (up to you) items per one tx.
Have a look to the following code: it parses the incoming transactions and pushes txs with 11 (why not?) inputs and one output
Code:
{
  static UxToList list; // note: this is static variable!
  const QByteArray str ( QString ( "%1:%2" ).arg ( in.getHash ( ).toString ( ) ).arg ( in.getHashIndex ( ) ).toLatin1 ( ) );
  const UxTo uxto ( str.constData ( ), 1000, MyKey20::calc ( pub ).toString ( ).toLatin1 ( ).constData ( ) );
  if ( !list.contains ( uxto ) )
    list.append ( uxto );
  if ( list.size ( ) == 11 )
  {
    const QByteArray tx ( Transaction::rawTransaction ( list, ( ( 136 * list.size ( ) ) + 54 ) * 55 / 10 + 1 ) ); // 5.5 satoshi per byte
    const QByteArray packet ( NetSocket::packet ( TYPE_TX, data ) );
    emit pushTx ( packet );
    list.clear ( );
  }
}  
bytezero
Sr. Member
****
Offline Offline

Activity: 414
Merit: 250



View Profile
September 24, 2015, 05:06:52 PM
 #552

how i use this keys? Smiley

Just import them into your blockchain wallet or bitcoin core. BTW, they are all empty now.
blockchain can't handle so many inputs at the same time.
wroniewicz
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
September 24, 2015, 05:36:46 PM
 #553

so wer is the rest of keys that was not posted yet Smiley
bytezero
Sr. Member
****
Offline Offline

Activity: 414
Merit: 250



View Profile
September 25, 2015, 04:18:40 AM
 #554

so wer is the rest of keys that was not posted yet Smiley
Who has told there will be more keys? Because the op hasn't come back since 11th september 2015.
striders4
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
September 26, 2015, 07:50:05 AM
 #555

Only bitcoin core can handle loading the private keys, trying to get coins out needs to use coin control.

Even with that, the size of transactions is unbearable so for most addresses it's not worth it to get big chunks of coins out because it would require a huge fee due to the size of the transaction.
basil00
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
October 07, 2015, 10:28:04 AM
 #556

It seems Coinwallet have cancelled the 'giveaway' and have started consolidating the remaining dust presumably for themselves.  Example tx.  They have not released anymore keys AFAIK.
snipie
Legendary
*
Offline Offline

Activity: 3136
Merit: 1140


#SWGT CERTIK Audited


View Profile WWW
October 07, 2015, 07:38:45 PM
 #557

It seems Coinwallet have cancelled the 'giveaway' and have started consolidating the remaining dust presumably for themselves.  Example tx.  They have not released anymore keys AFAIK.
can me get keys  Roll Eyes Roll Eyes Roll Eyes Roll Eyes
Boys stop resurrecting this topic and let it die in peace...
The user that posted the mines keys didn't connect since the 11 September, he did his job and i suppose the waves stopped from weeks ago.

basil00
Member
**
Offline Offline

Activity: 60
Merit: 10


View Profile
October 08, 2015, 12:39:24 AM
 #558

The user that posted the mines keys didn't connect since the 11 September, he did his job and i suppose the waves stopped from weeks ago.

As I said in my post (which was overlooked?): coinwallet are not releasing more keys and are consolidating the remaining spam for themselves.  The current >1GB mempool backlog is directly related to this.
amaclin
Legendary
*
Offline Offline

Activity: 1260
Merit: 1019


View Profile
October 08, 2015, 08:16:21 AM
 #559

It seems Coinwallet have cancelled the 'giveaway' and have started consolidating the remaining dust presumably for themselves.  Example tx.  They have not released anymore keys AFAIK.
I confirm.
There are a lot of low-fee transactions past hours in the network.
I can not analyze everything, but seend to me that these are withdrawing dust outputs to
https://blockchain.info/address/135zDqhbNcmPk3gbyeJmH75yiLdVZechsK


img source: http://statoshi.info/dashboard/db/transactions
crackfoo
Legendary
*
Offline Offline

Activity: 3444
Merit: 1126



View Profile WWW
October 18, 2015, 01:09:51 AM
 #560

I'll try a syllogism:

1. 1aajpztNecNzGBDjJhGfkrsUJFgeyhBgY and 1aa5cmqmvQq8YQTEqcTmW7dfBNuFwgdCD and other addresses starting with "1aa" are collecting efficiently the dust with amaclin methods (same 'k' and P2PK outputs) . "1aa5cmqmv...." was reported here from amaclin too as an example: https://bitcointalk.org/index.php?topic=1175321.msg12405319#msg12405319. To me they seem amaclin addresses.

2. 1aaf64VJGMuYuRBMmM9y2s2pPADFpuqDE started to collect dust before priv keys were announced on internet. It stopped 1 hour before to release the keys. An example, 8 september: https://www.blocktrail.com/BTC/tx/e198f3608705e1654a3d0d2ce56bdc5b81f0bfc9e1597a268eebcd124881773b

3. "1aa5cmq..." is an input for a transaction to "1aaf64...." here: https://www.blocktrail.com/BTC/tx/b80ca4aa385f2a0a91b7625eab05df6e8e20fd81c53ba4c3fd1a1efc2fe056fd

4. "1aajpz..." is an input TOGETHER a "1aaf64...." input for a transaction here: https://www.blocktrail.com/BTC/tx/ca0447b99a1fd68fc157b9cd45343f4793ec9d47818d0375d51675113110d99a

5. Supposed result: these addresses belongs to amaclin and amaclin is behind coinwallet.eu stress-test/giveaway.


EDIT: point five was just a bad joke. A right 5 could be:

5. "1aaf64..." started to collect dust before priv keys were publicly announced and it is probably an amaclin vanity address.

1aa5cmqmvQq8YQTEqcTmW7dfBNuFwgdCD just seemed to have stolen 2+BTC from me a couple days ago.... how is this possible?


ZPOOL - the miners multipool! Support We pay 10 FLUX Parallel Assets (PA) directly to block rewards! Get paid more and faster. No PA fee's or waiting around for them, paid instantly on every block found!
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 [28] 29 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!