Skip to content

Instantly share code, notes, and snippets.

@xanoni
Created September 5, 2021 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xanoni/555bdb9b479c08a886cf5cd2b6bb120e to your computer and use it in GitHub Desktop.
Save xanoni/555bdb9b479c08a886cf5cd2b6bb120e to your computer and use it in GitHub Desktop.
Running MyMonero over Tor (MacOS)
#! /usr/bin/env bash -ex
## Please note that MyMonero sucks, avoid it unless you have no better alternative
SCRIPT_DIR="$(dirname $(realpath $0))"
WRAPPER_CMD="/usr/local/bin/torsocks"
export HTTP_PROXY="127.0.0.1:8118"
export HTTPS_PROXY="${HTTP_PROXY}"
${WRAPPER_CMD} ${SCRIPT_DIR}/_files/MyMonero.app/Contents/MacOS/MyMonero --proxy-server="${HTTPS_PROXY}" &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment