package main import ( "context" "fmt" "log" "net/http" "os" "time" "github.com/cretz/bine/tor" "github.com/ipsn/go-libtor" ) func main() { ReadConfig(".", "config") // Start tor with some defaults + elevated verbosity fmt.Println("Starting and registering onion service, please wait a bit...") t, err := tor.Start(nil, &tor.StartConf{ProcessCreator: libtor.Creator, DebugWriter: os.Stderr}) if err != nil { log.Panicf("Failed to start tor: %v", err) } defer t.Close() // Wait at most a few minutes to publish the service ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) defer cancel() // Create an onion service to listen on any port but show as 80 onion, err := t.Listen(ctx, &tor.ListenConf{RemotePorts: []int{80}}) if err != nil { log.Panicf("Failed to create onion service: %v", err) } defer onion.Close() fmt.Printf("Please open a Tor capable browser and navigate to http://%v.onion\n", onion.ID) // connect to eth // Ethereum err = Web3Open() if err != nil { log.Fatal(err) } // Run a Hello-World HTTP service until terminated http.Handle("/", http.FileServer(http.Dir("./www"))) http.HandleFunc("/api/purchase", handlePurchase) http.HandleFunc("/api/txid", handleTxId) http.Serve(onion, nil) }