Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Rav3nPL committed Jan 29, 2015
1 parent fe0b302 commit fd41316
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,22 @@ I hit this problem, when I sent few hundred transactions to exchange and kill th
Because most of altcoins not have coin control form latest Bitcoin Core client, so I wrote .net app that use RPC calls to access wallet and create transactions as you like.

First, you need to enable RPC access to your coin. Edit *coin.conf file in data directory, it will need:

```
server=1
daemon=1
rpcuser=something
rpcpassword=anothersomething
```

If we not know default RPC port of coin just add:

```
rpcport=12000
```

If we have daemon not on local machine, we need allow remote RPC address to our machine

```
rpcallowip=x.x.x.x
```

If you have encrypted wallet, you need open it b4 you can sign transaction.

Expand All @@ -41,7 +44,10 @@ To make one big input, you need do few times a loop:
- choose one address
- send 10-20 inputs to it
- loop till you have one input


If we send full many inputs to one address, we not create new one in wallet every transaction (no change every time). So one backup is enough :)

Then just create new wallet and send this one tx to it, you will have much lighter wallet file :)

I hope it will help many users.

0 comments on commit fd41316

Please sign in to comment.