Bitcoin Forum

Bitcoin => Bitcoin Discussion => Topic started by: xuzerBTC on April 18, 2023, 01:30:10 PM



Title: A service to find the relation between two addresses
Post by: xuzerBTC on April 18, 2023, 01:30:10 PM
Hello everyone,

I am looking for a service that can help me map out the relationship between two addresses. Essentially, a tool that can inform me if there is any connection or correlation between the two addresses that I provide. Does anyone know of any services that offer this functionality or something similar?

I am planing to build something like this if already not available! So, knowing what you think about such service would be helpful too.


Thank you!


Title: Re: A service to find the relation between two addresses
Post by: mocacinno on April 18, 2023, 01:33:37 PM
walletexplorer.com offers some of this functionality... Not exactly like you described, but it does try to group addresses together into wallets...


Title: Re: A service to find the relation between two addresses
Post by: OmegaStarScream on April 18, 2023, 01:37:05 PM
There's Reactor[1] from ChainAlysis but that's not available to the public, and it's way too complicated. Is it what you're trying to build? Would one be able to find the connection even if the funds moved through exchanges, services, mixers, etc. as is the case with this tool?

[1] https://www.chainalysis.com/chainalysis-reactor/


Title: Re: A service to find the relation between two addresses
Post by: Stalker22 on April 18, 2023, 02:09:40 PM
Hello everyone,

I am looking for a service that can help me map out the relationship between two addresses. Essentially, a tool that can inform me if there is any connection or correlation between the two addresses that I provide. Does anyone know of any services that offer this functionality or something similar?

You can try Blockpath's Graphical Explorer:

https://blockpathstatic.website/images/BlockpathHeroVideo1Poster.jpg
https://blockpath.com/


It displays transactions between Bitcoin addresses much like Ethtective.com does for ETH addresses.
Did you mean something like that?


Title: Re: A service to find the relation between two addresses
Post by: xuzerBTC on April 18, 2023, 02:18:16 PM
There's Reactor[1] from ChainAlysis but that's not available to the public, and it's way too complicated. Is it what you're trying to build? Would one be able to find the connection even if the funds moved through exchanges, services, mixers, etc. as is the case with this tool?

[1] https://www.chainalysis.com/chainalysis-reactor/

Once coins are sent to exchanges, they become disconnected from each other unless there is access to the exchange log. I don't see a solution to this problem ATM.

However, this service(which we already has coded part of it) aims to identify the relationship between two addresses or transaction IDs, and is going to target coins moved through mixers and similar services.


Title: Re: A service to find the relation between two addresses
Post by: Yaunfitda on April 18, 2023, 02:33:34 PM
There's Reactor[1] from ChainAlysis but that's not available to the public, and it's way too complicated. Is it what you're trying to build? Would one be able to find the connection even if the funds moved through exchanges, services, mixers, etc. as is the case with this tool?

[1] https://www.chainalysis.com/chainalysis-reactor/

Once coins are sent to exchanges, they become disconnected from each other unless there is access to the exchange log. I don't see a solution to this problem ATM.

However, this service(which we already has coded part of it) aims to identify the relationship between two addresses or transaction IDs, and is going to target coins moved through mixers and similar services.
Again, it's the question on how you can find the relationships between two addresses?

If someone uses a mixer then everything is obfuscated, that's how mixer is design, so it will be interesting, if you have coded a way to find the connection between input and output addresses.


Title: Re: A service to find the relation between two addresses
Post by: xuzerBTC on April 18, 2023, 02:57:48 PM
There's Reactor[1] from ChainAlysis but that's not available to the public, and it's way too complicated. Is it what you're trying to build? Would one be able to find the connection even if the funds moved through exchanges, services, mixers, etc. as is the case with this tool?

[1] https://www.chainalysis.com/chainalysis-reactor/

Once coins are sent to exchanges, they become disconnected from each other unless there is access to the exchange log. I don't see a solution to this problem ATM.

However, this service(which we already has coded part of it) aims to identify the relationship between two addresses or transaction IDs, and is going to target coins moved through mixers and similar services.
Again, it's the question on how you can find the relationships between two addresses?

If someone uses a mixer then everything is obfuscated, that's how mixer is design, so it will be interesting, if you have coded a way to find the connection between input and output addresses.

Probably I couldn't explain what I meant by "covering mixers". We can't follow the exact sats for sure! And we don't have such solution. What I meant was we can connect addresses through UTXOs shown in transactions, for example address A is connected to address B through one[tx1,tx2,tx3,txn] or many paths

in other words, address A was found in tx1, and later down the road the address B was found in txn. I hope this explains what exactly what we have in mind.


Title: Re: A service to find the relation between two addresses
Post by: Kryptowerk on April 18, 2023, 03:11:18 PM
There's Reactor[1] from ChainAlysis but that's not available to the public, and it's way too complicated. Is it what you're trying to build? Would one be able to find the connection even if the funds moved through exchanges, services, mixers, etc. as is the case with this tool?

[1] https://www.chainalysis.com/chainalysis-reactor/

Once coins are sent to exchanges, they become disconnected from each other unless there is access to the exchange log. I don't see a solution to this problem ATM.

However, this service(which we already has coded part of it) aims to identify the relationship between two addresses or transaction IDs, and is going to target coins moved through mixers and similar services.
Maybe slightly OT but I am curious as if there is any info on exchanges leaking AND/OR providing these sensitive information (either to randomparties or ofc governments and instituations)?

I see what OP wants, actually sounds like a relatively simple tool, input two addresses, see if and with how many steps (transactions) inbetween there is a connection to be found. Actually sounds pretty basic, also curious to see if there are any (open source) tools for this purpose.


Title: Re: A service to find the relation between two addresses
Post by: SquirrelJulietGarden on April 18, 2023, 03:45:40 PM
Wallet explorer: https://www.walletexplorer.com/
I don't remember names of other explorers but you can find some from List of useful Bitcoin block explorers (https://bitcointalk.org/index.php?topic=5197909.0)

Wallet explorer can only link addresses which have transactions. If you try to link an used address (with past transactions) and a new address (without any transaction), it won't be able to link those two addresses for you, even they are in a same wallet.


Title: Re: A service to find the relation between two addresses
Post by: xuzerBTC on April 18, 2023, 04:10:55 PM
There's Reactor[1] from ChainAlysis but that's not available to the public, and it's way too complicated. Is it what you're trying to build? Would one be able to find the connection even if the funds moved through exchanges, services, mixers, etc. as is the case with this tool?

[1] https://www.chainalysis.com/chainalysis-reactor/

Once coins are sent to exchanges, they become disconnected from each other unless there is access to the exchange log. I don't see a solution to this problem ATM.

However, this service(which we already has coded part of it) aims to identify the relationship between two addresses or transaction IDs, and is going to target coins moved through mixers and similar services.
Maybe slightly OT but I am curious as if there is any info on exchanges leaking AND/OR providing these sensitive information (either to randomparties or ofc governments and instituations)?

I see what OP wants, actually sounds like a relatively simple tool, input two addresses, see if and with how many steps (transactions) inbetween there is a connection to be found. Actually sounds pretty basic, also curious to see if there are any (open source) tools for this purpose.

Yes! we can say it is a basic tool and nothing magical. Just storing the data, finding the relations, and providing them through a relatively efficient and fast API or service by using the required technologies and databases.


Title: Re: A service to find the relation between two addresses
Post by: mendace on April 18, 2023, 05:49:33 PM
There are chainanalysis services but I can't tell you exactly if they are paid or if they allow free use.  they usually work under commission for private individuals or even for governments.


Title: Re: A service to find the relation between two addresses
Post by: odolvlobo on April 19, 2023, 06:18:20 AM
Probably I couldn't explain what I meant by "covering mixers". We can't follow the exact sats for sure! And we don't have such solution. What I meant was we can connect addresses through UTXOs shown in transactions, for example address A is connected to address B through one[tx1,tx2,tx3,txn] or many paths
in other words, address A was found in tx1, and later down the road the address B was found in txn. I hope this explains what exactly what we have in mind.

It seems simple in concept -- create a graph of transactions and find the path (or paths) from address A to address B. However, that won't work through a mixer because a mixer breaks the link between address A and address B.


Title: Re: A service to find the relation between two addresses
Post by: SFR10 on April 20, 2023, 06:42:37 AM
I am looking for a service that can help me map out the relationship between two addresses. Essentially, a tool that can inform me if there is any connection or correlation between the two addresses that I provide. Does anyone know of any services that offer this functionality or something similar?
Crystal has a visualization feature that's similar to what you're trying to build: Here's an imperfect example (https://explorer.crystalblockchain.com/visualization/RtzXfTZJz4CD7WAk?x=-1461.4024658203125&y=-427.3641357421875&k=1.587401032447815) [none of the addresses are mine (I took them from one of the recently mined blocks)]
- It has nice features (e.g. moving the pieces around), but if you try to go too deep (e.g. adding many input/output addresses), their server will return an error!


Title: Re: A service to find the relation between two addresses
Post by: Kryptowerk on April 21, 2023, 06:50:40 AM
I am looking for a service that can help me map out the relationship between two addresses. Essentially, a tool that can inform me if there is any connection or correlation between the two addresses that I provide. Does anyone know of any services that offer this functionality or something similar?
Crystal has a visualization feature that's similar to what you're trying to build: Here's an imperfect example (https://explorer.crystalblockchain.com/visualization/RtzXfTZJz4CD7WAk?x=-1461.4024658203125&y=-427.3641357421875&k=1.587401032447815) [none of the addresses are mine (I took them from one of the recently mined blocks)]
- It has nice features (e.g. moving the pieces around), but if you try to go too deep (e.g. adding many input/output addresses), their server will return an error!
Another amazing resource. Been playing around with it a little bit, working fine so far, even though I sometimes it quickly goes to the "oops something went wrong" page.
Hope they keep improving it. - In general that's exactly how I would imagine a tx-graph with some hand-picked transactions should look like.


Title: Re: A service to find the relation between two addresses
Post by: BVeyron on June 15, 2023, 09:21:39 PM
Hello everyone,

I am looking for a service that can help me map out the relationship between two addresses. Essentially, a tool that can inform me if there is any connection or correlation between the two addresses that I provide. Does anyone know of any services that offer this functionality or something similar?

I am planing to build something like this if already not available! So, knowing what you think about such service would be helpful too.


Thank you!

I haven't heard about soft that can find the connection between wallets. I suppose that's impossible due to decentralisation of data storage in cryptocurrency... Actually it would be an interesting tool, but I doubt that it's possible to create one...


Title: Re: A service to find the relation between two addresses
Post by: Stalker22 on June 15, 2023, 09:45:42 PM
I haven't heard about soft that can find the connection between wallets. I suppose that's impossible due to decentralisation of data storage in cryptocurrency... Actually it would be an interesting tool, but I doubt that it's possible to create one...

What does the decentralization of data storage have to do with the OP's question? Basically, any blockchain explorer has the capability to display specific connections between addresses, and there have been several tools mentioned that can do this task exactly as described by the OP.

So how about you at least fucking read the thread before replying with your generic nonsense?