An open API service indexing awesome lists of open source software.

https://github.com/austintgriffith/parse-wallet-pdf-and-sweep

Tool to parse a paper wallet PDF and sweep funds from all accounts.
https://github.com/austintgriffith/parse-wallet-pdf-and-sweep

Last synced: about 1 year ago
JSON representation

Tool to parse a paper wallet PDF and sweep funds from all accounts.

Awesome Lists containing this project

README

          

If you generate a pdf full of private key paper wallets and you need to recover all the funds from them without manually scanning and sending from each. [tweet](https://twitter.com/austingriffith/status/1170012651415453696?s=20) & [context](https://twitter.com/TrustlessState/status/1169650643948015616?s=20) & [reply](https://twitter.com/austingriffith/status/1170013235484880896?s=20)

install packages
```
npm install
```

edit `index.js` to set the name of your `PDFFILE`

run PDF parser to extract private keys:
```
node index.js
```

edit `transfer.js` to set your `RPC`, `SENDTOADDRESS`, and `PKFILE` (generated in previous step)

sweep funds:
```
node transfer.js
```

---------------------------------------------------------------------------------------------------

parsing pdf to private keys:
![image](https://user-images.githubusercontent.com/2653167/64444058-8a8ee780-d090-11e9-9dc4-3e620bcdc31f.png)

sweeping from all private keys to a single burner wallet:
![image](https://user-images.githubusercontent.com/2653167/64444017-70eda000-d090-11e9-81dd-444b69e9f88c.png)