02:42:48 MoneroKon needs some love and piconeros, changing organisation type and more transparent financials also 02:42:48 using a cold + hot wallet setup as CCS, but the hot one will be a RINO multisig (read till the end) 02:42:48 https://funding.monerokon.com/ 03:06:21 <1​23bob123:matrix.org> Hmm 04:27:01 working now thanks 04:28:03 Ty plow 04:33:08 passing the thanks forward to ofrnxmr from the last person who did it to me 05:46:47 <1​23bob123:matrix.org> Pay it forward 05:56:55 Is using torsocks with monerod better than using the --proxy switch? 06:04:55 Torsocks IIRC uses ld_preload, so it might leak if it doesn't use libc 06:05:03 I would assume that it does but I'm not sure 06:30:17 someone 06:30:28 please help me find a monero nostr client i saw a couple days ago 06:30:36 it had a monochrome color scheme 06:30:39 like full black and white 10:38:44 Hello, I was transferred money to the address, but they came to me, who would help me so that I could figure out what the problem is? 11:35:52 @timklsfr I think you might need some translation help - it is unclear what your issue is. 14:12:44 Guys whats your setup for running monerod node via tor? 14:12:44 I've been using torsocks command infron of rest. But wanted to know what you guys have best experience with 14:45:30 https://github.com/monero-project/monero/blob/master/docs/ANONYMITY_NETWORKS.md 14:47:54 Yes ive read that. So general would be better to seperately run a tor proxy and just use --tx-proxy? 14:52:57 tx-proxy only sends transactions over Tor, blocks get sent over clearnet 14:53:18 you can use --proxy as an alternative for torsocks 14:54:34 Why not whonix approach? You could run monerod in an environment where all traffic is torified. Like a vm in Xen host or docker container. 14:54:55 Im using local raspi 14:55:38 And i want it to be available on local wifi yk 14:55:45 I mean probably would somehow be possible with a whonix vm on my raspi but ig it would also take too much ram 14:56:43 Custom docker setup could solve that. There are solutions plus you may always foward a port from it. 14:57:19 And it will protect from any IP leaks. 14:58:23 Yeah i tried with monerosuite, but I didnt find a good docker image for tor proxy that supports amdv7 14:58:27 Yeah i tried with monerosuite, but I didnt find a good docker image for tor proxy that supports amd64 14:58:32 Yeah i tried with monerosuite, but I didnt find a good docker image for tor proxy that supports arm64 15:07:56 Guess you would have to build custom docker images for it and then routing traffic with iptables. 15:08:43 https://blog.jessfraz.com/post/routing-traffic-through-tor-docker-container/ there is an example, of course jess/tor image would not work for amd64. 15:09:35 Yes, thank you tho. Maybe (tho less secure) I could also use my local mashines tor proxy 15:09:44 using this in the docker-compose: 15:09:44 environment: 15:09:45 - http_proxy=socks5://127.0.0.1:9150 15:09:45 - https_proxy=socks5://127.0.0.1:9150 15:10:26 It may not work as Socks5 aren't meant to use as HTTPS proxy. 15:11:54 HTTPTunnelPort [address:]port|auto [isolation flags] 15:11:54 Open this port to listen for proxy connections using the "HTTP CONNECT" protocol instead of SOCKS. Set this to 0 if you don’t want to allow "HTTP CONNECT" connections. Set the port to "auto" to have Tor pick a port for you. This directive can be specified multiple times to bind to multiple addresses/ports. See SOCKSPort for an explanation of isolation flags. (Default: 0) 15:12:07 in torrc 15:17:06 I have some complex problem with sending transfers over RPC that I have been struggling for months to solve without success. I see some solutions however each one has its drawbacks. Anyone would want to help and think about this together? 15:24:38 That is on topic here. Just explain your issue and wait, maybe someone will have something to say about it. 15:26:03 I have developed a custom payment processing system for an service. In past it was running on some decommissioned Bitcoin wallet software which allowed better control of coins. In particular, system was able to: 15:26:03 1. Generate unique address for every payment. 15:26:03 2. Handle coins of each address separately. 15:26:04 3. Send funds to recipient and a change as a service fee to cold wallet, which from network fee was also subtracted. 15:26:04 Third point was the most important, as this feature (subtract fee parameter set to true for a chosen destination besides address and amount) allowed to avoid dust change left on each deposit address. 15:26:31 Today, system works only on Monero with official wallet software: 15:26:31 1. Generates unique subaddress for every payment. 15:26:31 2. Sends funds to recipient (from whole wallet) and then saves information about service fee earned. 15:26:32 3. Once each day it sends accumulated service fee (from whole wallet) to cold address. 15:26:32 This works most of the time. Unfortunately, for larger amounts (+30 XMR, sometimes +20XMR) it fails to send as created transaction is too large. Error message suggests using transfer_split, however this is not the perfect solution in my opinion. Recipient may receive funds in many smaller amounts and to better describe the issue, imagine sending 1000 XMR in 100 transfers, 10 XMR e 15:26:33 ach. It should work like in Bitcoin, except there is no subtract fee parameter in transfer RPC call. 15:26:46 So there are a few concepts I came up with: 15:26:46 0. This is point 0 since it was already tested without much success. I simply consolidated funds (grouped in less, bigger amounts) when moving them to new wallet. It helped for some time, transfer sizes were smaller and it doesn't cost me any code changes. Cons: change coins made wallet big again and solution stopped working... 15:26:46 1. Calculate best (with lowest numer of txs) combination of transfer_split if transfer fails and resend. Cons: one transaction split to many transfers... 15:26:47 2. Consolidate funds on separate wallet account for "bigger" transactions. Cons: how much is bigger? Transfer size limit may be reached anyway... 15:26:47 3. Rewrite system to work similar to previous one. Cons: will sweep_all work to consolidate service fees from subaddresses of finished transactions? Will it not lock itself? A lot of coding is required... 15:27:33 Tl;DR current system works but it is not perfect. It should be more scalable... 15:28:38 and... there is no much control over change in Monero wallet software or I could not find it in RPC docs. 15:32:52 would this open PR give you more control over change? https://github.com/monero-project/monero/pull/8861 15:34:53 Yes, exactly. I have been thinking with bypass like using sweep_all in some clever ways. It would however, at best, make transfers stand out (just one destination without change for sweep_all etc) 15:35:49 wallet2 will automatically include a dummy output if there would otherwise be only one. 15:36:04 And FYI, this feature (subtract_fee flag) is available in Wasabi Wallet (for Bitcoin) 15:40:54 Thanks, I have not studied source code that much. This PR would allow to set subtract from subaddress, however it would be best to set it to destinations instead. 15:43:07 Or both, the more control the better as there might be other cases. 15:46:49 So what you need, in addition to the patch above, is a way to set the change address to something else than the default, right ? 15:46:50 In my case it would be sending net value to recipient and sending any rest minus network fee to cold wallet in single transfer. Another case would be refunds, where all funds minus network fee are sent to recipient. 15:48:38 I have an old patch that does this, can't recall if it's working though. I can post it if someone else wants to check it and fix it if it needs to be. 15:48:45 I guess it wouldn't be needed to set change address in my case. If I set destinations to recipient_address (without subtract_fee flag) and coldwallet_address (with subtract_fee flag) for total of subaddress balance, then wallet shouldn't create change address. 15:49:07 Ah, yes. I believe this is correct. 15:50:03 I know subaddress balance, I just don't know network fee yet (and wouldn't set any arbitrary fee value to not stand out). 15:51:27 You could try the patch linked above then. It shouldn't require a fork nor make txes look different so is usable now. 15:56:32 I will test that, thank you. 16:41:15 Is there any ETA on this PR? It would be best to use this feature in official release. 16:44:44 Looks like there are unaddressed comments, so the author may have decided the changes aren't worth doing, or simply did not notice. There's an at least two week delay before a patch can be merged (absent urgent needs), but this lapsed long ago on this one. 16:45:19 After a patch is merged though, a release happens at irregular intervals, and a new feature would only be included in a major release (ie, not a bugfix release). 16:45:29 So... not in the near future. 17:06:48 Jeffro256 ^ 17:23:18 I have asked jeffro256 via PM. 17:49:27 a moment of silence for jeffros inbox x