Could you make it so I can host a .onion using just the wallet and my local machine as the server?
Yes that's no problem.
There are two setups;
#1 - Only Tor: You will only announce your address on Tor. Anoncoin will not broadcast outside of of Tor. So your ISP won't see you're running Anoncoin. NSA will however if they want because of the 1024RSA/DH key's Tor currently using.
#2 - Tor/Clearnet bridge: You're on both. You recive new blocks from the pools on clearnet and help broadcast them into the Tor network.
What you do is:
Setup #1 - Only TorApply this to your anoncoin.conf
onlynet=tor
externalip=XXXX
tor=127.0.0.1:9050
addnode=m6xwmit3jovw34r2.onion
addnode=aqmdzilaqayzjb6o.onion
addnode=sf2px26xdsqphkef.onion
addnode=wwniwxrykmk2wtcw.onion
And something like this to your torrc:
HiddenServiceDir /var/lib/tor/anoncoin_nodeXX/
HiddenServicePort 9377 127.0.0.1:9377
Then restart your Tor server.
Read the content of file and change it with the XXXX in the anoncoin.conf
I usualy just do "sudo cat /var/lib/tor/anoncoin_nodeXX/hostname" to get the tor hidden service address.
Setup #1 - Tor/Clearnet bridgeApply this to your anoncoin.conf
listen=1
discover=1
proxy=127.0.0.1:9050
externalip=XXXX
And something like this to your torrc:
HiddenServiceDir /var/lib/tor/anoncoin_nodeXX/
HiddenServicePort 9377 127.0.0.1:9377
Then restart your Tor server.
Read the content of file and change it with the XXXX in the anoncoin.conf
Note: If you're on windows, please locate the torrc and see the examples for "HiddenServiceDir" in the comments of the file for how to set it up with windows paths instead of unix paths
I hope this works for you! Feel free to ask quetions if something was unclear