Cryptocurrency mining is worthless wasting of computing power and electricity now. Also, 84% (17,5 of 21 million) of BTC total supply are mined already and many coins are lost, because it was unfair distribution at the beginning and the owners didn't appreciate it. So people are spending more and more power and get less and less reward instead of mining for lost wallet private keys to get long lost coins, or using mining computing power for useful calculations in scientific, commercial and any other useful purposes. This project is an idea of creating a new cryptocurrency, which mining allows to use calculating power for searching lost wallets private keys, provided by capitalization of lost coins. Later, anyone will get an ability to rent a whole network for useful calculations or any useful purposes, so a new coin will be also provided by work and profit.
1.
GeneratingThe Scanner
https://secretscan.org/programs is generating private keys, public keys and calculating cryptocurrencies addresses of each key. Try our Generator
https://secretscan.org/generator to understand how it works.
2.
CheckingThen we are checking computed addresses against our database. It consist 17 cryptocurrencies and millions addresses. Most of them you will find there: Addresses
https://secretscan.org/wallets .
3.
WaitingIf an address is in database then we know a private key and we can use it. The owner of coins is just whoever has its private key, however, we will make transaction to another address and will wait for a month if this address lost, dormant or has an owner to return coins to the owner.
4.
SendingIf no owner of the coins in a month and more then they are lost or dormant and participants can use it in proportion to the number of keys generated and verified.
Since 01.01.2020 participants gets 1,000 SSC tokens in proportion to the number of verified private keys last day, which is equivalent to about 1 SSC per minute (for comparison 2 BTC, 12 ETH, 60 GRIN per minute are generated, 5 BTC/min, 18 ETH/min before). The first charge will be in the amount of 450 000 SSC in proportion to the number of keys for the entire previous period. Initially, the records will be kept on SecretScan, later on the contract will be transferred to ERC-20 on the basis of the broadcast. Later, the launch of the decentralized blockchain SSC is planned as the number of developers and investments in the project increases. Participants and investors will be able to buy and sell their SSC by exchanging them on the market. In case of successful finding of abandoned addresses, the found will go to the SSC redemption from the participants and investors, thereby removing them from circulation and increasing the market value.
How to get address from private key. Step by step.
Private key is a random 64 bit hex number. Most cryptocurrencies uses same elliptic curve secp256k1 (y2=x3+7) to get the public key from private.
Public key = ECDSA (private key)
By applying the ECDSA to the private key, we get a 64-byte integer, which is two 32-byte integers that represent X and Y of the point on the elliptic curve, concatenated together.
Creating a public key, secp256k1 standart
Public key = private key * generator point
The elliptic curve domain parameters over Fp associated with a Koblitz curve secp256k1 are specified by the sextuple T = (p,a,b,G,n,h) where the finite field Fp is defined by:
p is prime
p = FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE FFFFFC2F
= 2**256 - 2**32 - 2**9 - 2**8 - 2**7 - 2**6 - 2**4 - 1
The curve E: y2 = x3+ax+b over Fp is defined by:
a = 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
b = 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000007
The base point G in compressed form is:
G is generator point
G = 02 79BE667E F9DCBBAC 55A06295 CE870B07 029BFCDB 2DCE28D9 59F2815B 16F81798
and in uncompressed form is:
G = 04 79BE667E F9DCBBAC 55A06295 CE870B07 029BFCDB 2DCE28D9 59F2815B 16F81798 483ADA77 26A3C465 5DA4FBFC 0E1108A8 FD17B448 A6855419 9C47D08F FB10D4B8
Finally the order n of G and the cofactor are:
n = FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE BAAEDCE6 AF48A03B BFD25E8C D0364141
n is number of the points in the field
h = 01
h is cofactor
Once we’ve gotten the public key, we can calculate the address.
Bitcoin
Address = Base58 encoding (Network bytes "00" & RIPEMD-160(SHA-256(Public key)) & first 4 bytes of SHA-256(SHA-256(RIPEMD-160(SHA-256(Public key))))
Altcoins
The difference is network bytes.
Ethereum
Address = "0x" + last 20 bytes of Keccak-256(Public key)
To make an address from the public key, we need to apply Keccak-256 to the key and then take the last 20 bytes of the result.
How to delete your address from SecretScan's searching datababe?
Just join our telegram channel or send us your wallet address by e-mail. You will get an info how to confirm that it is your address.
Why is it harder to generate addresses starting with 1s?
An address has 1 + 20 + 4 bytes, which has a total of 200 bits. Each of the Base58 characters contain log_2 58 bits of information, which is approximately 5.858. If one created an address that has the public key hash 0000...00, the result would be a 5-6 character address, due to the checksum. To prevent this, Satoshi decided to add "1"s for each 0x00 byte in front of the address. Those "1"s each contain 8 bits of information instead of 5.85... As they carry more information, it's harder to find an address starting with those 1s
How to use BTC private key?
Download the Electrum Bitcoin wallet program. Run the program, create a wallet using the private key. Set a password to enter. For Segwit P2SH and Bech32 addresses, open a console, enter importprivkey ('p2wpkh-p2sh: Private Key') and / or importprivkey ('p2wpkh: Private Key').
"The owner of a coin is just whoever has its private key." Satoshi Nakamoto 12 Feb 2009 14:18:02
Nvidia Private keys Scanner
The program for 64-bit Windows and Nvidia GPU since 2011
Release Version:2.04SecretScan2.04.zip (4.10 MB)
Notes:The program for Nvidia GPU since 2011
Operating system(s):Windows (64Bit)
Last Recommended or Critical Revision:10-6-2020
SHA-256 Checksum: 803601a1053da68747eba7b68e4a1bcca52c87b4f803c6902e7448ca2dc2e2dc
Download link SecretScan v2.04 Windows (64Bit) https://secretscan.org/program/SecretScan2.04.zipInstallation: Version 2.01. Install
CUDA 10.2 or higher.
2. Download and unpack SecretScan2.02.zip
3. Edit file START.bat:
Specify your login in -user flag. Example: -user Satoshi. Rig name can be added: -user Satoshi.Rig001 You can specify GPU(s) to use, -d flag. Example: -d 0,1,2,3. The flag can be omitted for using all cards.
4. Run the bat file, wait 2-3 minutes and check the results on the website. Your login will appear in the Pool list. At the first run, the program do synchronization, next launches are much faster.
NEW Release announcement:
1. This version uses the new engine, which is faster.
2. Simultaneous search for over 100 coins and over 40 millions addresses in real time.
Configuration recommendations::
1. Make sure that CUDA and Driver are same 10.2 version. If not match then change the CUDA driver by removing the current driver using
Display Driver Uninstaller and install CUDA 10.2 again.
2. In case of failure, you will need to reinstall CUDA 10.2. The drivers are included in the CUDA package and do not need to be installed separately.
3.
MSI Afterburner is a program to overclocking graphics cards. Core and memory are involved in calculating address. Overclocking 70-100 PL, 50-200 Core, Memory 400-700. Try to get maximum efficiency - Mk/Watt.
4. Instructions how to set reset in case of errors or failures. Downloaded version of the bat file, the program restart is default. If mining rig restart is required, then remove the word "rem" before "shutdown /r /t 20 /f" and the computer will restart if it fails.
5. Instructions how to do autorun when you turn on the farm/computer. Right-click on the 1_SecretScanGPU file.bat in the program folder, create a shortcut. In the lower left corner, click the search, write and select "Run", in the command line type: shell:startup, then move the shortcut you created to the opened startup folder.
6. It is recommended to run the scanner after a new Windows boot (restart the computer/farm after mining, games, etc.).
7. If the program does not work, then you need to return Windows to factory settings with saving files (in the control panel in the recovery section).
8. Windows defender firewall can block the program, they must be configured or disabled in some cases.
9. You have to install
Visual C++ 2013 and
Visual C++ 2017 on your computer.
10. Increase swap file: control Panel -> System -> Advanced system settings -> Performance -> Options -> Advanced -> Edit
The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.
Address and paper Wallet Generator
Generate a random Private key and Paper Wallet Address online
Hex Private key -> Address Calculator
Universal generators and calculators step by step
Dashboard of your Scanning GPUs and Rigs
Rent a GPU Scanning Rig
Choose the Equipment you want to Rent for Scanning keys
Calculators
Addresses Database
Many Cryptocurrencies, Millions Addresses, Billions Dollars
Market of cryptocurrencies
The place, where you can get your reward
Copyright © 2020 SecretScan.org All rights reserved. The project is under development for beta-testers.