Author

Topic: BtcCollider questions (Read 173 times)

legendary
Activity: 2170
Merit: 1789
January 28, 2023, 10:36:17 AM
#7
what this
How did you run the project? I searched the error message and it seems related to a Linker error in VS Code. For example, this link discusses changing the Linker settings to solve the error[1]. CMIIW.

You can probably open an issue if the error persists and you can't run the app, although it seems unlikely as long as you follow the guide. I assume you use Windows, have you made sure to do what the developer suggests before running it on VS Code?
Quote
Install CUDA SDK and open BTCCollider.sln in Visual C++ 2017.
You may need to reset your Windows SDK version in project properties.
In Build->Configuration Manager, select the Release configuration.

Build and enjoy.

Note: The current release has been compiled with CUDA SDK 10.0, if you have a different release of the CUDA SDK, you may need to update CUDA SDK paths in BTCCollider.vcxproj using a text editor. The current nvcc option are set up to architecture starting at 3.0 capability, for older hardware, add the desired compute capabilities to the list in GPUEngine.cu properties, CUDA C/C++, Device, Code Generation.
Source: https://github.com/JeanLucPons/BTCCollider

[1] https://stackoverflow.com/questions/33400777/error-lnk2019-unresolved-external-symbol-main-referenced-in-function-int-cde
member
Activity: 202
Merit: 16
January 27, 2023, 09:53:45 AM
#6
Severity   Code   Description   Project   File   Line   Suppression State   Tool
Error   LNK2001   unresolved external symbol "private: void __cdecl BTCCollider::Rand(class Int *,union hash160_s *,union hash160_s *)" (?Rand@BTCCollider@@AEAAXPEAVInt@@PEAThash160_s@@1@Z)   BTCCollider   C:\Users\xxxx\Desktop\BTCCollider-1.1\BTCCollider.obj   1      Link

what this Huh
member
Activity: 352
Merit: 10
January 25, 2023, 03:16:44 AM
#5
Hello would it be possible to modify this code: https://github.com/JeanLucPons/BTCCollider
to not make the generation random ?
thanks

Yes, it is possible to modify the code from the GitHub repository you provided. The code is open source, which means that it is free to use, modify, and distribute. However, it is important to note that if you make any changes to the code and distribute it, you must include the original open-source license and attribute the original authors. Additionally, you may want to consider contributing your changes back to the project by submitting a pull request, if you think others would benefit from your modifications.
member
Activity: 202
Merit: 16
January 24, 2023, 10:19:36 AM
#4
is it possible that :

H1=0D28280EA0CBC41BAA6FE16409E6C1B3809BC313
H2=0D28280EA0CBC41BEC699B8E90A40EA5D18E2281
H2=0D28280EA0CBC41B......................................
Priv (WIF): p2pkh:L2SDUYWCQ7wUQPgxcGvkCXViL7meTwHkKuaSX8prP584GBSSSrHJ
Priv (WIF): p2pkh:L2SDUYWCQ7wUQPgxcGvkCXViL7meTwHkKuRAjgknRpCYrsm5TVsU
Priv (WIF): p2pkh:L2SDUYWCQ7wUQPgxcGvkCXViL7meTwHkKu...........................
Add1: 12CZtce55cCyNEseqbLQfKy4EdhsMus7Tz
Add2: 12CZtce55cCyWPPwk3QbekL5MnMvk22YD3
Add3: 12CZtce55cCy.....................................

is it possible that : for private key = 0000000000000000000000000000000000000000000000000000000000000001

H1=751e76e8199196d454941c45d1b3a323f1433bd6
H2=751e76e8199196d4.....................................
Priv (WIF): p2pkh:KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qYjgd9M7rFU73sVHnoWn
Priv (WIF): p2pkh:KwDiBf89QgGbjEhKnhXJuH7LrciVrZi3qYjgd9M.......................
Add1: 1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH
Add2: 1BgGZ9tcN4rm....................................
member
Activity: 202
Merit: 16
January 24, 2023, 10:12:31 AM
#3
Hello would it be possible to modify this code: https://github.com/JeanLucPons/BTCCollider
to not make the generation random ?
thanks

Should be possible, have you tried modify the source code to use fixed seed rather than random seed?

You might find more help if you post this on the Development & Technical discussion board.

This thread was moved from that board, according to https://ninjastic.space/post/61635669.

Btw, I've seen your previous thread about BTC Collider[1]. Do you want to find two similar addresses or do you want to find a single address with some prefix? Is vanitygen or something similar not suitable for your purpose?

[1] https://bitcointalksearch.org/topic/--5316208

This tool perform faster since it exploit birthday paradox. For example, i managed to generate this with my GPU within ~4 minutes.

it is precisely this paradox that I do not understand, is it a private key generated in the base or a hash160....?

Code:
H1=0D28280EA0CBC41BAA6FE16409E6C1B3809BC313
H2=0D28280EA0CBC41BEC699B8E90A40EA5D18E2281
Priv (WIF): p2pkh:L2SDUYWCQ7wUQPgxcGvkCXViL7meTwHkKuaSX8prP584GBSSSrHJ
Priv (WIF): p2pkh:L2SDUYWCQ7wUQPgxcGvkCXViL7meTwHkKuRAjgknRpCYrsm5TVsU
Add1: 12CZtce55cCyNEseqbLQfKy4EdhsMus7Tz
Add2: 12CZtce55cCyWPPwk3QbekL5MnMvk22YD3

yes but for the seed when I put "1" it gives me a private key without knowing why I got it
legendary
Activity: 2170
Merit: 1789
January 24, 2023, 06:47:53 AM
#2
You might find more help if you post this on the Development & Technical discussion board. Btw, I've seen your previous thread about BTC Collider[1]. Do you want to find two similar addresses or do you want to find a single address with some prefix? Is vanitygen or something similar not suitable for your purpose?

[1] https://bitcointalksearch.org/topic/--5316208
member
Activity: 202
Merit: 16
January 22, 2023, 09:07:57 AM
#1
Hello would it be possible to modify this code: https://github.com/JeanLucPons/BTCCollider
to not make the generation random ?
thanks
Jump to: