this post was submitted on 26 May 2024
26 points (96.4% liked)

Monero

1522 readers
30 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
top 9 comments
sorted by: hot top controversial new old
[–] reto@monero.town 7 points 2 months ago (3 children)

Now without the need for a github account!

[–] nihilist@monero.town 4 points 2 months ago

based, next step set up your own apt repository for easier upgrades for linux users and it's going to be top notch ;)

[–] blake@monero.town 1 points 2 months ago

real handy this one

now we just need more users

[–] Krugtron9000@monero.town 1 points 2 months ago (1 children)

when/why was one ever required?

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

Initially we used github actions to build the installers and have people download them from their, which requires a github account.

[–] Krugtron9000@monero.town 2 points 2 months ago (2 children)

Not objecting or disagreeing, but could we get more than a one-line explanation for breaking protocol changes? maker selects arbitrator (breaking change) does not inspire a whole lot of confidence. Is there a discussion somewhere I can read that spells out the options and why this one was selected?

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

because this could've allow an arbitrator to exit scam whole network, now they can only scam the trades that are assigned by the maker or all arbitrators have to agree.

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

It's a change to how trades are done in the background.

Before, the taker client would select the arbitrator, now this is done by the maker. Before this change, a rouge arbitrator with a modified client could have taken all open trades, assign themself to them and pay them out to themself.

After this change, the maker-side selects the arbitrator, and a rouge one would lose a bunch of bond in the trades they weren't assigned to. The more arbitrators there are, the less likely it gets that one of them could go rouge and make a profit. For example: at 20 arbitrators, a rouge arbitrator would be expected to lose the 15% bond for 19 out of 20 trades. That is on average nearly 3 times higher than the expected return of the 1 trade they can actually drain.

This is why we will ask many trusted community members to become arbitrators once the software has become more stable and there aren't multiple updates per month anymore.

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

If anybodys on Arch, if you place this PKGBUILD into the haveno extracted directory and run "makepkg -si" will convert the rpm to arch and install it.

pkgname=haveno-reto
pkgver=1.0.6
pkgrel=1
pkgdesc="Monero DEX"
arch=('x86_64')

depends=("bash" "java-runtime>=21")
optdepends=()

source=('haveno-1.0.6-1.x86_64.rpm')

sha256sums=('SKIP')

package() {
  find $srcdir/ -mindepth 1 -maxdepth 1 -type d | xargs cp -r -t "$pkgdir"
}