this post was submitted on 14 May 2024
3 points (100.0% liked)

Monero

17 readers
2 users here now

This is the lemmy community of Monero (XMR), a secure, private, untraceable currency that is open-source and freely available to all.

GitHub

StackExchange

Twitter

Wallets

Desktop (CLI, GUI)

Desktop (Feather)

Mac & Linux (Cake Wallet)

Web (MyMonero)

Android (Monerujo)

Android (MyMonero)

Android (Cake Wallet) / (Monero.com)

Android (Stack Wallet)

iOS (MyMonero)

iOS (Cake Wallet) / (Monero.com)

iOS (Stack Wallet)

iOS (Edge Wallet)

Instance tags for discoverability:

Monero, XMR, crypto, cryptocurrency

founded 1 year ago
MODERATORS
3
Haveno Reto is LIVE (monero.town)
submitted 6 months ago* (last edited 6 months ago) by reto@monero.town to c/monero@monero.town
 

The easiest way to get going is with the pre-build installers found when on this page (click on the most recent workflow run and scroll down).

Alternatively you can clone the repo here.

Reto has a total trade fee of 0.6% (0.1% taker, 0.5% maker) which goes to arbitrators in it's entirety, there is no direct network fee.

Join the Reto SimpleX Group to stay up-to-date!

Note:

If you previously installed Haveno, first clear your Haveno app directory to reset things, located at:

-Linux: ~/.local/share/Haveno/

-macOS: ~/Library/Application Support/Haveno/

-Windows: ~\AppData\Roaming\Haveno\

top 8 comments
sorted by: hot top controversial new old
[–] shortwavesurfer@monero.town 2 points 6 months ago (1 children)

I just linked somebody to this post who is asking about trading and realized that the link for the binary is out of date, so I suggest maybe posting this link instead.

https://github.com/retoaccess1/haveno-reto/actions And simply telling people to download the most recent version.

[–] reto@monero.town 2 points 6 months ago

Will do so, thanks.

[–] rottenwheel@monero.town 1 points 6 months ago* (last edited 6 months ago) (1 children)
[–] reto@monero.town 1 points 6 months ago

There are currently not many hardcoded arbitrators and one of them is on top of that still offline. We are not entirely sure if simply retrying works or if you have to restart before your client picks an arbitrator that is online. It might also have resolved itself after the network has propagated a bit more.

[–] shortwavesurfer@monero.town 1 points 6 months ago* (last edited 6 months ago)

For posterity purposes, it should be noted that the very first chat message about it going live occurred at 11.27 a.m. Eastern time on Tuesday, May 14th, 2024.

This will be remembered in the future as the moment governments around the world lost forever.

[–] shortwavesurfer@monero.town 1 points 6 months ago

12 peers and growing.

[–] goatmeal@monero.town 1 points 6 months ago (1 children)

please consider making this available on tor/i2p in addition to clearnet github

[–] Anonymous@monero.town 2 points 6 months ago* (last edited 6 months ago)

You can configure git to use tor, and github currently works via tor.

https://stackoverflow.com/questions/27279359/how-to-make-git-work-to-push-commits-to-github-via-tor

git config http.proxy socks5://localhost:9150 # 9150 for TOR browser, 9050 for TOR service
git config https.proxy socks5://localhost:9150

^ affects the current repository. git config --global if you want it to apply to all repositories, including one you haven't yet cloned.

When cloning a large repository, such as haveno, you then run into the problem that git doesn't retry when the other end hangs up, which it often does over a slow tor connection.

until git clone https://github.com/retoaccess1/haveno-reto ; do true ; done

will retry until it finally succeeds.

You can create and log into a github account using Tor Browser, just be sure to never use that account without tor browser. If you actually want to contribute using that account, you will need to email github customer service and have them un-shadowban you first.