Bitcoin Forum
October 10, 2024, 03:23:15 AM *
News: Latest Bitcoin Core release: 28.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] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 »
  Print  
Author Topic: Unmoderated XC thread  (Read 57225 times)
synechist
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000


To commodify ethicality is to ethicise the market


View Profile WWW
June 06, 2014, 01:04:56 PM
 #561

doesn't the network have to agree on what was the initial transaction? Therefore knowing that a bad xnode didn't do what was supposed to do?

xnode owner can change mind.
xnode can suffer Windows crash.
xnode can suffer power failure.
xnode can suffer network interruption.

if any one of this happen, coins are gone, belongs to xnode.


Truth or FUD?

Say.

Chaeplin, thanks for your ongoing work on XC. However you appear to not be aware of some crucial details of how xnodes will work.

I posted the following on the official thread:

Quote
ATCsecure shall we discuss how Gmaxwell's post might apply to XC? I imagine it'd be a matter of whether the multi-path paradigm can be implemented without a dynamic trust system, while still preserving XC's ability to avoid blockchain bloat.

Multi-path has incredible possibilities; how about removing/reducing the need for trust with the following (which in all likelihood you've thought of already):

- your specification includes that each xnode only passes on fragments of transactions; this means each fragment will be a small (non-risky) amount.

- what if xnodes have to compete to relay a given fragment? This builds in redundancy, so that if one node attempts to steal the fragment, the others will pass it on. The fastest node gets the transaction fee.

- what if xnodes also can only pass on a single fragment at a time? This way a node would only ever have one fragment, and therefore could never amass enough money for it to be worth stealing.

- Xnodes would then compete for transaction fees by processing transactions faster than other nodes. This way the network would organically improve its capacity.

- At some cost to network speed, the protocol could also set a maximum fragment size to ensure the incentive to become a bad actor is always low regardless of the size of a given payment.


The effect of the above is that xnodes have two options:
- steal a fragment and (a) derive minimal reward, and (b) get booted off the network via the trust system
- or pass on (a) as many fragments as possible in the shortest time and (b) get multiple tiny rewards.
The second of these is prima facie preferable.


However this idea would still be vulnerable to the following attack:
- set up thousands of xnodes
- find a way to steal fragments (I understand this is only a speculative possibility and that there'll be a way of making this exceedingly difficult... however I can't think further about this without more information)
- steal thousands of fragments, delete nodes, create new ones, build up trust, steal more fragments.

I'm unsure whether this attack will be more profitable than just being an honest node; its feasibility will come down to the details. And, fortunately, you decide what the details are.

The security of the network could well depend on this balance of incentives, which is ok I suppose, but its precariousness is analogous to that of mining competition in bitcoin. A systemic solution to the problem would be preferable.

Any suggestions?


I'd like your opinion on this. Can you think of a way to make XC completely secure?

ATCsecure said current design is single-path.
What is the meaning of single-path ? One xnode recipient address ?
If multiple recipient address is used(one xnode or multiple xnode), I can find who is sender, who is receiver.

And possibility of bad actor still exist.

I am waiting white paper.




Quote
Yes, the current design is single-path. But I'm discussing the design as it will be when fully implemented.

Yes, single-path passes through only one xnode, if I'm not mistaken.

If a wallet sends fragments of a payment to multiple xnodes, which are all sending fragments to thousands of wallets, I do not think you will be able to find the receiver. But you are welcome to prove that you can.

Useless, thousands multiplied tx fee. Have to limit.
Tx is written to blockchain.
Have you heard dust threshold ?


You said  thousands of wallets, payment to payee should be consolidated.
Payee will not tolerate with that.


Quote
My scenario above implies that a bad actor will have insufficient incentive. This is arguably ok.

I am also awaiting the white paper.

Transaction fees will remain the same if they are a percentage of the amount transferred.

However the fees would need to be sufficient to justify the expense of running a node, therefore the code would have to be very fast.

Yes, transactions will be written to the blockchain. Bigger transactions will probably be split into more fragments; therefore more blockchain bloat for bigger payments. But the blockchain will still be prunable, and transaction size is much smaller than zerocoin. So XC is still a promising design.

I meant thousands of wallets other than the recipient's wallet.

Yes I know about the dust threshold. It's important to prevent blockchain bloat. I imagine XC will have a dust threshold.

Co-Founder, the Blocknet
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 06, 2014, 01:07:55 PM
Last edit: June 06, 2014, 01:20:01 PM by chaeplin
 #562



Transaction fees will remain the same if they are a percentage of the amount transferred.

However the fees would need to be sufficient to justify the expense of running a node, therefore the code would have to be very fast.

Yes, transactions will be written to the blockchain. Bigger transactions will probably be split into more fragments; therefore more blockchain bloat for bigger payments. But the blockchain will still be prunable, and transaction size is much smaller than zerocoin. So XC is still a promising design.

I meant thousands of wallets other than the recipient's wallet.

Yes I know about the dust threshold. It's important to prevent blockchain bloat. I imagine XC will have a dust threshold.






Nope. It doesn't work like that. Each tx should pay tx fee.

tx fee is not related to xnode fee.
There are two type of fees.
1) Transaction fees
2) Xnode fee


https://github.com/atcsecure/X11COIN/blob/master/src/main.h#L32-L41
Code:
static const unsigned int MAX_BLOCK_SIZE = 1000000;
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
static const unsigned int MAX_INV_SZ = 30000;
static const int64 MIN_TX_FEE = .00001 * COIN;
static const int64 MIN_RELAY_TX_FEE = .00001 * COIN;
static const int64 MAX_MONEY = 60000000 * COIN;
static const int64 MAX_MONEY2 = 60000000 * COIN; // 60 mil
static const int64 MAX_MINT_PROOF_OF_STAKE = 0.0333 * COIN; // 3.33% annual interest
synechist
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000


To commodify ethicality is to ethicise the market


View Profile WWW
June 06, 2014, 01:10:54 PM
 #563

doesn't the network have to agree on what was the initial transaction? Therefore knowing that a bad xnode didn't do what was supposed to do?

xnode owner can change mind.
xnode can suffer Windows crash.
xnode can suffer power failure.
xnode can suffer network interruption.

if any one of this happen, coins are gone, belongs to xnode.


Truth or FUD?

Say.

Chaeplin, thanks for your ongoing work on XC. However you appear to not be aware of some crucial details of how xnodes will work.

I posted the following on the official thread:

Quote
ATCsecure shall we discuss how Gmaxwell's post might apply to XC? I imagine it'd be a matter of whether the multi-path paradigm can be implemented without a dynamic trust system, while still preserving XC's ability to avoid blockchain bloat.

Multi-path has incredible possibilities; how about removing/reducing the need for trust with the following (which in all likelihood you've thought of already):

- your specification includes that each xnode only passes on fragments of transactions; this means each fragment will be a small (non-risky) amount.

- what if xnodes have to compete to relay a given fragment? This builds in redundancy, so that if one node attempts to steal the fragment, the others will pass it on. The fastest node gets the transaction fee.

- what if xnodes also can only pass on a single fragment at a time? This way a node would only ever have one fragment, and therefore could never amass enough money for it to be worth stealing.

- Xnodes would then compete for transaction fees by processing transactions faster than other nodes. This way the network would organically improve its capacity.

- At some cost to network speed, the protocol could also set a maximum fragment size to ensure the incentive to become a bad actor is always low regardless of the size of a given payment.


The effect of the above is that xnodes have two options:
- steal a fragment and (a) derive minimal reward, and (b) get booted off the network via the trust system
- or pass on (a) as many fragments as possible in the shortest time and (b) get multiple tiny rewards.
The second of these is prima facie preferable.


However this idea would still be vulnerable to the following attack:
- set up thousands of xnodes
- find a way to steal fragments (I understand this is only a speculative possibility and that there'll be a way of making this exceedingly difficult... however I can't think further about this without more information)
- steal thousands of fragments, delete nodes, create new ones, build up trust, steal more fragments.

I'm unsure whether this attack will be more profitable than just being an honest node; its feasibility will come down to the details. And, fortunately, you decide what the details are.

The security of the network could well depend on this balance of incentives, which is ok I suppose, but its precariousness is analogous to that of mining competition in bitcoin. A systemic solution to the problem would be preferable.

Any suggestions?


I'd like your opinion on this. Can you think of a way to make XC completely secure?

ATCsecure said current design is single-path.
What is the meaning of single-path ? One xnode recipient address ?
If multiple recipient address is used(one xnode or multiple xnode), I can find who is sender, who is receiver.

And possibility of bad actor still exist.

I am waiting white paper.




Quote
Yes, the current design is single-path. But I'm discussing the design as it will be when fully implemented.

Yes, single-path passes through only one xnode, if I'm not mistaken.

If a wallet sends fragments of a payment to multiple xnodes, which are all sending fragments to thousands of wallets, I do not think you will be able to find the receiver. But you are welcome to prove that you can.

Useless, thousands multiplied tx fee. Have to limit.
Tx is written to blockchain.
Have you heard dust threshold ?


You said  thousands of wallets, payment to payee should be consolidated.
Payee will not tolerate with that.


Quote
My scenario above implies that a bad actor will have insufficient incentive. This is arguably ok.

I am also awaiting the white paper.

Transaction fees will remain the same if they are a percentage of the amount transferred.

However the fees would need to be sufficient to justify the expense of running a node, therefore the code would have to be very fast.

Yes, transactions will be written to the blockchain. Bigger transactions will probably be split into more fragments; therefore more blockchain bloat for bigger payments. But the blockchain will still be prunable, and transaction size is much smaller than zerocoin. So XC is still a promising design.

I meant thousands of wallets other than the recipient's wallet.

Yes I know about the dust threshold. It's important to prevent blockchain bloat. I imagine XC will have a dust threshold.






Nope. It don't work like that. Each tx should pay tx fee.

tx fee is not related to xnode fee.
There are two type of fees.
1) Transaction fees
2) Xnode fee


https://github.com/atcsecure/X11COIN/blob/master/src/main.h#L32-L41
Code:
static const unsigned int MAX_BLOCK_SIZE = 1000000;
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
static const unsigned int MAX_INV_SZ = 30000;
static const int64 MIN_TX_FEE = .00001 * COIN;
static const int64 MIN_RELAY_TX_FEE = .00001 * COIN;
static const int64 MAX_MONEY = 60000000 * COIN;
static const int64 MAX_MONEY2 = 60000000 * COIN; // 60 mil
static const int64 MAX_MINT_PROOF_OF_STAKE = 0.0333 * COIN; // 3.33% annual interest


Yes you are correct about this. But I am not talking about the current code. I'm talking about the final implementation. There will be changes.

To get back to where I started, I asked you if you can think of ways to make XC work perfectly. Can you think of a way to resolve XC's challenges here?

Co-Founder, the Blocknet
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 06, 2014, 01:13:36 PM
 #564



Yes you are correct about this. But I am not talking about the current code. I'm talking about the final implementation. There will be changes.

To get back to where I started, I asked you if you can think of ways to make XC work perfectly. Can you think of a way to resolve XC's challenges here?

Conceal sender : can
Xnode : can't


Please read this : https://en.bitcoin.it/wiki/Transaction_fees

Just numbers are different.
Code:
A transaction may be safely sent without fees if these conditions are met:

It is smaller than 1,000 bytes.
All outputs are 0.01 BTC or larger.
Its priority is large enough (see the Technical Info section below)
Otherwise, the reference implementation will round up the transaction size to the next thousand bytes and add a fee of 0.1 mBTC (0.0001 BTC) per thousand bytes[1]. As an example, a fee of 0.1 mBTC (0.0001 BTC) would be added to a 746 byte transaction, and a fee of 0.2 mBTC (0.0002 BTC) would be added to a 1001 byte transaction. Users may increase the default 0.0001 BTC/kB fee setting, but cannot control transaction fees for each transaction. Bitcoin-Qt does prompt the user to accept the fee before the transaction is sent (they may cancel the transaction if they are not willing to pay the fee).

Note that a typical transaction is 500 bytes, so the typical transaction fee for low-priority transactions is 0.1 mBTC (0.0001 BTC), regardless of the number of bitcoins sent.

synechist
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000


To commodify ethicality is to ethicise the market


View Profile WWW
June 06, 2014, 01:24:07 PM
 #565



Yes you are correct about this. But I am not talking about the current code. I'm talking about the final implementation. There will be changes.

To get back to where I started, I asked you if you can think of ways to make XC work perfectly. Can you think of a way to resolve XC's challenges here?

Conceal sender : can
Xnode : can't


Please read this : https://en.bitcoin.it/wiki/Transaction_fees

Just numbers are different.
Code:
A transaction may be safely sent without fees if these conditions are met:

It is smaller than 1,000 bytes.
All outputs are 0.01 BTC or larger.
Its priority is large enough (see the Technical Info section below)
Otherwise, the reference implementation will round up the transaction size to the next thousand bytes and add a fee of 0.1 mBTC (0.0001 BTC) per thousand bytes[1]. As an example, a fee of 0.1 mBTC (0.0001 BTC) would be added to a 746 byte transaction, and a fee of 0.2 mBTC (0.0002 BTC) would be added to a 1001 byte transaction. Users may increase the default 0.0001 BTC/kB fee setting, but cannot control transaction fees for each transaction. Bitcoin-Qt does prompt the user to accept the fee before the transaction is sent (they may cancel the transaction if they are not willing to pay the fee).

Note that a typical transaction is 500 bytes, so the typical transaction fee for low-priority transactions is 0.1 mBTC (0.0001 BTC), regardless of the number of bitcoins sent.



Thanks. Interesting. How would you conceal the sender?

Co-Founder, the Blocknet
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 07, 2014, 02:43:30 AM
Last edit: June 07, 2014, 02:59:36 AM by chaeplin
 #566

https://bitcointalk.org/index.php?topic=618377.0

http://cryptco.org/Cryptcoin-CryptCast-Anonymous-Whitepaper.pdf


Crypt.


Here is catch.

1) Is encrypted msg written to blockchain ?
    probably not.
    ==> need to be online both.

2) Mixer without real payee.
    Xnode announce itself to network, Crypt do reversal.
    Crypt payer announce to payee, where coins to go ?


O ho...

Hello.

I was invited to check the implementation of XC compared to FedoraCoin's codebase in order to find possible similarities between them.
First of all, I visited FedoraCoin's repository and checked the specific file mentioned (mixerann.cpp and the header file).
Then, I was invited to Developer's station with a Teamviewer session and saw the code that implements the specific feature.

The code is in no way similar between the two coins.
But, I believe that one must trusts his own eyes (and compiler). Just download the source code from FedoraCoin and create a working wallet that has all the features of XC enabled. That would prove whether the claim is correct or false.

Now, I do not know who claimed that Fedora and XC share the same codebase. If someone claims that some principles are the same, then I'm afraid that someone hasn't heard of Bitcoin and the blockchain concept (or the transaction concept, or the pubkey->wallet address concept, or... the list goes on forever).

Hi everyone.

This is my first post in here (actually I should never really have to post Smiley ) but I feel obligated to do so, in order to make some clarifications

First of all, excuse my English, as it is not my native.

The pdf document that has been published, is just a rough draft to describe the process in a very simple manner so everyone can understand.
It was not originally meant to be a "Whitepaper".
It is not a protocol description, nor the logic flaw of the application fully detailed.
As it has already been mentioned, it is work in progress.

For those who are familiar with developing cycles, when a product is designed and hits the development department, the final product from the original design many times have lots of differences. And that's to overcome original design flaws, dead ends in the logic or other problems that are part of the development process and needs to be addressed, so that final product meets original specifications.

Saying that, I welcome the comments made to that draft and most of them are valid points and have already been acknowledged and has being or will be addressed.
Remember, it's still work in progress.

If I may comment regarding the best way to do things (for example hard-to-trace transactions), I do not believe that there is an objective "best" way to do it. If there are more than one ways, there will be preference according to specific needs. Every solution will have pros and cons. Some are affected more and others less. It all depends and it's a matter of which solutions works best for each individual.

I respect everyone's work and I am not afraid to admit that I am trying to learn from other ideas and extend them. Isn't that the purpose of open source projects?
I do not believe into "I know it all" people and I never said I am one. Nor any of the team members, from my interaction with them.
Mistakes will be made and be corrected as fast as they are spotted. So it's good to have more eyes to spot them for me and let me know of any error or flaw in my implementation. It speeds things up and also helps me learn more.
So, I always believed that a mixture of ideas can get the best possible result, as long as there's cooperation and good will. That's how this team works and I really believe that we will give the best possible results on each development cycle and on each version release.




From my reading of the whitepaper, it appears the recipient wallet must be online (i.e. running the wallet software) in order to receive coins anonymously. If so, this isn't a workable anonymity solution. Can the dev please clarify?
In order for the transaction to take place, in this initial draft, the wallet has to come online and give "directions" to the sender regarding the destination addresses. The "trigger message" will be valid for some time before it times out. I am testing various scenarios on how to make it work with the best possible (to my knowledge) way.
Now, whether it's workable or not, I guess one must weight the pros and cons. As another developer said (and he's right all the way): there are no true passwords, nor true encryption. Everything can be broken with enough computational power.
So I make myself this question: who do I trust to deliver my coins?

As I said previously, it's a matter of preference. Also, I'm sure that more ideas will come from this, as there's always room for improvement to every design




chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 07, 2014, 03:34:05 AM
 #567


Update - I just ran a TX through the mixer

http://cryptexplorer.com/address/XDNHMSD2Feex8bDHz9yiLtadHz4LGABQWE




the only thing I'm looking for now is proof of direct link from the source wallet address to the destination wallet on block chain


Since this is single path at this time (not multi-path) that is the only concern with this release, is there a DIRECT LINK..

thanks,

ATCSECURE



Didn't we already prove that?  Nobody was able to provide a direct link last time either.


I was told that there was a lot confusion around this, so I did another test with a minor update to the code. but as REV2 is a priority w/ multi-path, I can't spend time on an issue that isn't an issue..  




!_=XMHmvtXiJKG9aa7WcxBLQMcD3pYQ4wK6Ye=_!


cinnamon_carter
Legendary
*
Offline Offline

Activity: 1148
Merit: 1018


It's about time -- All merrit accepted !!!


View Profile WWW
June 07, 2014, 03:37:24 AM
 #568

somewhat related, a short pdf on why it is not so easy to hide or mix transactions as some would lead you to believe http://www.scribd.com/doc/227369807/Bitcoin-Coinjoin-Not-Anonymous-v01

Check out my coin Photon
Merge Mine 5 other Blake 256 coins - 6x your hash power  https://www.blakecoin.org/

The obvious choice is not always the best choice.

LOOK DEEPER - Look into the Blake 256 Family -- CC
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 07, 2014, 03:52:00 AM
 #569

~~~

Random FUD

The problems addressed in this were handled hundreds of pages ago. Darksend isn't finished yet and was never promised to be 100% anonymous unless you use great care. Plus RC4 will have great improvements to the anonymity offered.
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 09, 2014, 04:47:06 AM
 #570

i have more than 10 other wallets and none require me to add .conf file.
XC is the first ever coin to require this and it will never work to the mass. it used to work before, no need .conf

Seriously? This is so trivial. This coin is breaking restraint from DRK FUD and moving forward with something great and you are complaining about a fucking .conf file?

Instead, you need bat.



chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 09, 2014, 01:11:09 PM
Last edit: June 09, 2014, 01:59:10 PM by chaeplin
 #571

Here is my wallet showing the xnode transactions that came through over night and the fees I collected from the transactions Smiley



in my config I just added the east and west nodes and ran the xnode-mainnet.bat


Just out of interest, how fees did you collect?

The fees I collected overnight are as follows:
0.037423
0.028602
0.00996
0.024015


That's not fee.

Your xnode steal coins.



http://chainz.cryptoid.info/xc/address.dws?XM9Bt9j46JUZ9JMGNVfg7R6mvMePJhMpNs.htm

http://chainz.cryptoid.info/xc/block.dws?27429.htm
ballzdeep
Full Member
***
Offline Offline

Activity: 193
Merit: 100


View Profile
June 09, 2014, 04:14:46 PM
 #572

Guess this turned into DRK people bashing XC uncensored, haha such a bunch of sad jokers...

Go play in your coinjoin thread and f*** urself !

Join the revolution - XC - Decentralized Trustless Multi-Node Private Transactions
phosphorush
Hero Member
*****
Offline Offline

Activity: 503
Merit: 500


View Profile
June 09, 2014, 05:28:55 PM
 #573

If XC was dead there would be no need for these DRK FUDers to be always here... You wouldn't need to kill what is already dead. So the conclusion I must take is that they see XC as strong competition Wink

Your account locked, please contact support.
JakeThePanda
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500



View Profile
June 09, 2014, 06:24:12 PM
 #574

Here is my wallet showing the xnode transactions that came through over night and the fees I collected from the transactions Smiley



in my config I just added the east and west nodes and ran the xnode-mainnet.bat


Just out of interest, how fees did you collect?

The fees I collected overnight are as follows:
0.037423
0.028602
0.00996
0.024015


That's not fee.

Your xnode steal coins.



http://chainz.cryptoid.info/xc/address.dws?XM9Bt9j46JUZ9JMGNVfg7R6mvMePJhMpNs.htm

http://chainz.cryptoid.info/xc/block.dws?27429.htm


You're making yourself and DRK look pathetic at this point.
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 10, 2014, 12:23:01 AM
 #575

Here is my wallet showing the xnode transactions that came through over night and the fees I collected from the transactions Smiley



in my config I just added the east and west nodes and ran the xnode-mainnet.bat


Just out of interest, how fees did you collect?

The fees I collected overnight are as follows:
0.037423
0.028602
0.00996
0.024015


That's not fee.

Your xnode steal coins.



http://chainz.cryptoid.info/xc/address.dws?XM9Bt9j46JUZ9JMGNVfg7R6mvMePJhMpNs.htm

http://chainz.cryptoid.info/xc/block.dws?27429.htm


You're making yourself and DRK look pathetic at this point.

Well, txs to XM9Bt9j46JUZ9JMGNVfg7R6mvMePJhMpNs should send to real payee.
You can't read block explorer.
If this txs was fee, I will stop to posting here.
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 10, 2014, 01:22:07 PM
Last edit: June 10, 2014, 02:30:17 PM by chaeplin
 #576

ref.

Send 0.1 XC to XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da anonymously, who can reveal the sender address?

http://chainz.cryptoid.info/xc/block.dws?28131.htm

http://chainz.cryptoid.info/xc/address.dws?XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da.htm

XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da == XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC


http://chainz.cryptoid.info/xc/tx.dws?94741.htm
--> http://chainz.cryptoid.info/xc/tx.dws?94689.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93458.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93457.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93456.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93455.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82065.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82064.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82063.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82033.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81727.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81696.htm

Code:
Details for Transaction
Hash 37b60318b9bfff0838cfe2608f22077f7e7e7fc33555592d53e2e16cffa20588
Blockheight 24402 (3750 confirmations)
Date/Time 2014-06-03 11:37:17
Total Output 2,804.591522 XC
Fee 1,E-5.0 XC

 
Inputs / Outputs
Raw Transaction
Inputs
Index Previous output Address Amount
0 114309d0c6ec...:0 XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da 2,804.591532 XC

did Mixer forgot to change address ?

520Bit
Sr. Member
****
Offline Offline

Activity: 602
Merit: 252



View Profile
June 10, 2014, 02:54:18 PM
 #577

ref.

Send 0.1 XC to XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da anonymously, who can reveal the sender address?

http://chainz.cryptoid.info/xc/block.dws?28131.htm

http://chainz.cryptoid.info/xc/address.dws?XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da.htm

XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da == XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC


http://chainz.cryptoid.info/xc/tx.dws?94741.htm
--> http://chainz.cryptoid.info/xc/tx.dws?94689.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93458.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93457.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93456.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93455.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82065.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82064.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82063.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82033.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81727.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81696.htm

Code:
Details for Transaction
Hash 37b60318b9bfff0838cfe2608f22077f7e7e7fc33555592d53e2e16cffa20588
Blockheight 24402 (3750 confirmations)
Date/Time 2014-06-03 11:37:17
Total Output 2,804.591522 XC
Fee 1,E-5.0 XC

 
Inputs / Outputs
Raw Transaction
Inputs
Index Previous output Address Amount
0 114309d0c6ec...:0 XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da 2,804.591532 XC

did Mixer forgot to change address ?



No, the sender address is not correct.
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
June 10, 2014, 02:56:51 PM
 #578

ref.

Send 0.1 XC to XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da anonymously, who can reveal the sender address?

http://chainz.cryptoid.info/xc/block.dws?28131.htm

http://chainz.cryptoid.info/xc/address.dws?XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da.htm

XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da == XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC


http://chainz.cryptoid.info/xc/tx.dws?94741.htm
--> http://chainz.cryptoid.info/xc/tx.dws?94689.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93458.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93457.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93456.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93455.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82065.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82064.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82063.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82033.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81727.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81696.htm

Code:
Details for Transaction
Hash 37b60318b9bfff0838cfe2608f22077f7e7e7fc33555592d53e2e16cffa20588
Blockheight 24402 (3750 confirmations)
Date/Time 2014-06-03 11:37:17
Total Output 2,804.591522 XC
Fee 1,E-5.0 XC

 
Inputs / Outputs
Raw Transaction
Inputs
Index Previous output Address Amount
0 114309d0c6ec...:0 XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da 2,804.591532 XC

did Mixer forgot to change address ?



No, the sender address is not correct.

Well follow link.
XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da == XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC == XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da

You sent 0.1 to yourself, isn't ?

do validateaddress XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC
dadon
Legendary
*
Offline Offline

Activity: 1190
Merit: 1002


Pecvniate obedivnt omnia.


View Profile WWW
June 10, 2014, 02:57:16 PM
 #579

ref.

Send 0.1 XC to XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da anonymously, who can reveal the sender address?

http://chainz.cryptoid.info/xc/block.dws?28131.htm

http://chainz.cryptoid.info/xc/address.dws?XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da.htm

XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da == XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC


http://chainz.cryptoid.info/xc/tx.dws?94741.htm
--> http://chainz.cryptoid.info/xc/tx.dws?94689.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93458.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93457.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93456.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93455.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82065.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82064.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82063.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82033.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81727.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81696.htm

Code:
Details for Transaction
Hash 37b60318b9bfff0838cfe2608f22077f7e7e7fc33555592d53e2e16cffa20588
Blockheight 24402 (3750 confirmations)
Date/Time 2014-06-03 11:37:17
Total Output 2,804.591522 XC
Fee 1,E-5.0 XC

 
Inputs / Outputs
Raw Transaction
Inputs
Index Previous output Address Amount
0 114309d0c6ec...:0 XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da 2,804.591532 XC

did Mixer forgot to change address ?



No, the sender address is not correct.
lol...bet all u drk boys are shaking in your boots now, well even more then u already were, pretty obvious, you feel very threatened by XC..don't blame you really, if i held drk still, i would  too...
520Bit
Sr. Member
****
Offline Offline

Activity: 602
Merit: 252



View Profile
June 10, 2014, 03:00:39 PM
 #580

ref.

Send 0.1 XC to XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da anonymously, who can reveal the sender address?

http://chainz.cryptoid.info/xc/block.dws?28131.htm

http://chainz.cryptoid.info/xc/address.dws?XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da.htm

XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da == XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC


http://chainz.cryptoid.info/xc/tx.dws?94741.htm
--> http://chainz.cryptoid.info/xc/tx.dws?94689.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93458.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93457.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93456.htm
--> http://chainz.cryptoid.info/xc/tx.dws?93455.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82065.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82064.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82063.htm
--> http://chainz.cryptoid.info/xc/tx.dws?82033.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81727.htm
--> http://chainz.cryptoid.info/xc/tx.dws?81696.htm

Code:
Details for Transaction
Hash 37b60318b9bfff0838cfe2608f22077f7e7e7fc33555592d53e2e16cffa20588
Blockheight 24402 (3750 confirmations)
Date/Time 2014-06-03 11:37:17
Total Output 2,804.591522 XC
Fee 1,E-5.0 XC

 
Inputs / Outputs
Raw Transaction
Inputs
Index Previous output Address Amount
0 114309d0c6ec...:0 XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da 2,804.591532 XC

did Mixer forgot to change address ?



No, the sender address is not correct.

Well follow link.
XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da == XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC == XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da

You sent 0.1 to yourself, isn't ?

do validateaddress XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC

No, none of them (XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da == XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC == XBPMEncv8HzCqvjxdF6SbbfpvB4pTC24Da) are the sender address.

I can provide the transaction ID to prove if necessary.

BTW, XQK2mnjgVxjhcBc5TocS23srVZ3TzddDeC is NOT my address.
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] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 »
  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!