Regrouping accounts belonging to same user

0

I am analysing some BTC transactions for academic purposes.

As part of that work, I would like to identify users with several accounts and regroup them under a single identifier.

I have assumed that when a transaction has several accounts paying in, it is likely that it is the same person using several accounts.

Is this assumption correct or could there be other reasons for having several accounts paying into the same transaction.

ulrich

Posted 2016-07-07T11:37:29.430

Reputation: 103

Answers

1

First off, you should really start thinking in terms of addresses rather than accounts, especially when doing block chain analysis. See here: What is the difference between accounts and adresses?

You should also start thinking about transaction inputs not in terms of addresses, but rather unspent transaction outputs (UTXOs). Each UTXO will generally have an address associated with it, but in the case of multisig, may have several addresses in a single UTXO. So in this case, even a single input to a transaction has more than one person associated.

There are also the cases of coin mixers, web wallets, and exchanges, which often create single transactions that include many inputs and many outputs, all coming from and going to different people.

So to answer the question, no, you cannot assume that all addresses used as inputs to a transaction come from the same person.

Jestin

Posted 2016-07-07T11:37:29.430

Reputation: 8 339

1A UTXO really has just one address, but that could be a multisig address that requires signatures from multiple keys.Pieter Wuille 2016-07-07T14:58:03.623