Bitcoin Forum
October 10, 2025, 09:48:24 PM *
News: Latest Bitcoin Core release: 29.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: I have a python script that can pull all the RSZ and pubkeys from an address  (Read 257 times)
mrnimbus (OP)
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
September 14, 2025, 04:17:56 PM
 #1

I have a python script that can pull all the RSZ and pubkeys from an addresses out going transactions. the only input is the address.



it took me a long time to get it perfected.

worth anything to anyone??








BattleDog
Jr. Member
*
Offline Offline

Activity: 48
Merit: 98


View Profile
September 18, 2025, 02:39:15 PM
 #2

This can be useful, if you're doing more than scraping explorers. Post a repo + example JSON for it.
NotFuzzyWarm
Legendary
*
Offline Offline

Activity: 4144
Merit: 3278


Evil beware: We have waffles!


View Profile
September 18, 2025, 04:03:54 PM
 #3

And I have a Unicorn that flies and spits diamonds...
Show proof/examples and a repo location.

- For bitcoin to succeed the community must police itself -    My info useful? Donations welcome!  3NtFuzyWREGoDHWeMczeJzxFZpiLAFJXYr
 -Sole remaining active Primary developer of cgminer, Kano's repo is here  Discord support invite at https://kano.is/
-Support Sidehacks miner development. Donations to:   1BURGERAXHH6Yi6LRybRJK7ybEm5m5HwTr
iceland2k14
Member
**
Offline Offline

Activity: 76
Merit: 89


View Profile
September 21, 2025, 04:53:13 AM
Merited by vapourminer (2)
 #4

Only (Argument input) to your script might be Address but still to fetch the RSZP, it has to scan all the Transaction Inputs to that address, as for each different Transaction input the RSZ is different too. Perhaps you need to relook your script.
BattleDog
Jr. Member
*
Offline Offline

Activity: 48
Merit: 98


View Profile
October 04, 2025, 01:33:33 PM
 #5

I somehow don't think he has that python script...
mjojo
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
October 04, 2025, 02:25:25 PM
 #6

Gpt give everything we want.. I request python script to pull txid and RSZ value and R duplicate from same address if any and derived to private key and it works
Xun hu
Jr. Member
*
Offline Offline

Activity: 37
Merit: 3


View Profile
October 04, 2025, 02:45:41 PM
 #7

I have a python script that can pull all the RSZ and pubkeys from an addresses out going transactions. the only input is the address.



it took me a long time to get it perfected.

worth anything to anyone??



Hey, for high-activity addresses, batching scans and parallelizing can save a lot of time, but watch out for RPC or API limits to avoid throttling memory management is keykeeping a cache for seen inputs and streaming results to disk prevents overload, especially on busy addresses. 
always validate your extracted RSZ and pubkeys against decoded TX hexes from a node or testnet. logging intermediate results helps catch mismatches and confirm accuracy. the collected data can also power research like transaction clustering, pattern detection, or analytics dashboards. timestamped logs make everything reproducible and easier to debug.
 
One last thing: mass collection of pubkeys has privacy implications. If testing on mainnet, include disclaimers and be mindful of sensitive patterns. Balancing speed, memory, and validation while staying responsible is the best way to handle complex addresses.
SPIDERMAN008
Jr. Member
*
Offline Offline

Activity: 70
Merit: 3


View Profile
October 09, 2025, 07:20:44 AM
 #8

For getting R,S,Z values and Pubkey you can go through the following link.
https://github.com/iceland2k14/rsz
you will get every details here . if you get further problem again let me know.  
arabspaceship123
Sr. Member
****
Offline Offline

Activity: 1190
Merit: 454


codetheforum.com


View Profile WWW
Today at 11:30:19 AM
 #9

Which part took a long time to get perfected. Did you write the code or use open source material like Python Library for Secp256k1. It will process 3.49 Million/s per CPU ECC calculations.

Code:
With 3500000 continuous keys in 1 group call, we get 3.5 Miilion Key/s Speed with 1 cpu:

timeit ice.point_sequential_increment(3500000, P)
817 ms ± 15.3 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

Why put it for sale if people can use it without buying. People should not pay if they can use open source code to pull R,S,Z,Pubkey for each input present in rawtx data.

I have a python script that can pull all the RSZ and pubkeys from an addresses out going transactions. the only input is the address.



it took me a long time to get it perfected.

worth anything to anyone??
Pages: [1]
  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!