13:45:39 hello 13:48:27 I have a question about using the monero gui with monerd. I have a synced a pruned node using monerod. How do i use my node data to facilitate monero-gui ? Do i have to have the monerod running before i run monero-gui? Can i just point monero-gui to the diretory containing my blockchain data? Or any other config... 13:56:08 yes 13:57:19 you need to enter the blockchain db directory in monero gui. , or select externel node and add localhost:18089 13:59:06 you need to enter the blockchain db directory in monero gui , if in advanced mode or select externel node and add localhost:18089 14:02:34 thank you 14:03:13 Is running a pruned node for personal use secure enough? 14:05:07 yes , it gives same privacy benefits as a full node. It doesn't compromise on privacy 14:06:49 additionally you can use `tx-proxy=tor,127.0.0.1:9050` in bitmonero.conf file which will route your transactions through tor but will allow syncing node through clearnet. 14:10:46 i have to put the bitmonero.conf file inside of the directory with my lmdb, bitmonero.log and other files? OR in the directory of my monerod? 14:11:37 Overall i have not been able to find good info on monerod, its usage and the usage of monero-gui? There should be docs that i can read right ? 14:13:46 Rossay: You can go to #monero-support for help on this 14:16:52 thanks for the help 17:55:49 Be cautious when using any remote node or block explorer. 17:55:50 Malicious service providers may log and associate your IP address, TXIDs, and more. If you must use Untrusted Nodes, use them over Onion or I2P. 17:55:52 What things can be done here ? 17:57:32 Example: You sent TXID 397349874. You then go lookup TXID 397349874 on a block explorer without a VPN. Now there is a log of your residence perusing details of TXID 397349874. 17:58:19 Yeah, ideally one would run his own explorer to mitigate that. 17:58:24 But I also can look other transactions .. so where is the risk 17:58:55 Wait does monero has block explorer I thought it’s anonymous !! 17:59:51 There are block explorers but they don't tell you the true spend, where it went or the amount. 18:00:24 You're more likely to look at transaction you're involved with. The practical effect might turn out to be nothing, but the risk is that you are associated with that transaction. What that means depends on your thread model, jurisdiction, the contents on that transaction, and what someone thinks they know about that transaction 18:01:28 So what’s the purpose of the block explorer in monero, if all private 18:02:09 In my experience, mainly to see how many confirmations a transaction of yours has 18:02:16 Many use 18:02:16 You can look at your transaction 18:02:18 You can verify transactions (assuming you have the key images and all that stuff) 18:02:48 Can also look at what's wrong like if the network is slow, (can see how full is the mempool and what kind of transactions it contain) 18:03:10 I see. Which remote block explorer for Xmr I can take a look at 18:04:44 That’s good education to learn to run your own node. Is better. Does it require more than basic skills, I am using Linux 18:04:56 You can use p2pool explorer, I think there trusted ok. 18:04:56 if looking at your tranction, maybe use tor or something 18:04:58 https://p2pool.io/explorer/ 18:06:18 ) 18:07:49 Here's some instructions on building a monero blockchain explorer: https://github.com/moneroexamples/onion-monero-blockchain-explorer?tab=readme-ov-file#compilation-on-ubuntu-18042004 18:08:00 This is the one used on xmrchain.net 18:10:10 You want to use the "devel" branch agains the master branch of monero. 18:10:10 At least that's what I needed to do, was not able to compile the normal release agains the latest monero release (0.18.3.4 when I tested) 18:26:58 https://p2pool.io/explorer/ also has an .onion address, and it doesn't log (source: I run it) 18:59:58 You can compile release tag (v0.18.4.0) now 19:00:21 https://docs.getmonero.org/infrastructure/networks/#block-explorers-self-hosted 19:01:21 `Moneroblock` is easier to get up and running, but i'm not sure what onion explorer has that moneroblock doesnt 19:39:19 Life sucks 19:46:39 * uncle_rae hugs fibonacci12358 20:53:05 <3​21bob321:monero.social> Such is life 21:44:47 hi, im starting to sync my own personal pruned monero node, just for my own local usage. While syncing im using static blocklist from the github page Boog900/monero-ban-list. Additionally im wondering about the enable-dns-blocklist flag on monerod. Suppossedly it uses a dynamic blocklist kept by the community. Ive read that it was as a response to DOS attacks some time ago; would it still be 21:44:49 applicabble now? Does it still keep track of some of the known malicious nodes? 21:52:52 Enabling `--enable-dns-blocklist` does not hurt but most of the nodes on this list are old and it's unclear if they are still active. They are from DoS attacks from many years ago. `Boog900/monero-ban-list` are all active nodes from a couple months ago. 21:59:24 selsta: Thank you. A follow up - im using the prune-blockchain flag, of course, but what about sync-pruned-blocks? Does it mean downloading already pruned blocks from other pruned nodes? And am i right i guessing that the vulnerability there is that other pruned nodes might maybe possibly be able to poison those blocks, since it would be safer for my daemon to calculate them? So its a 21:59:26 speed/bandwidth and security tradeoff... 22:08:19 By default, the daemon contains checkpoints so there is no risk in using `--sync-pruned-blocks`. 22:08:39 You can disable checkpoints with `--fast-sync 0`, but then you can't use `--sync-pruned-blocks`. 22:44:38 `--fast-block-sync 0` * 22:45:56 -=enable-dns-blocklist is incompatible with --ban-list. Must choose one or the other 22:47:51 it's not incompatible 22:48:29 (from what i remember) 22:53:14 it's not, I use both 22:53:26 when i ran enable-dns-blocklist + ban-list it seemed to work 22:53:39 at least, the logs suggest that they both load. I guess the latter *might* overwrite the former, but that would be dumb 23:01:23 tf? 23:01:43 👀👀 23:04:49 Looks like this is the case 23:05:53 `echo "127.0.0.1" > ban.txt && ./monerod --ban-list ban.txt --enable-dns-blocklist` and the dns blocklist doesnt load (or at least, it didnt for me on first run) 23:08:09 .. trying in isolation... maybe DNS blocklist just isnt loading at all for me. Synced 40k blocks (and counting) w/o it loading 23:12:07 Probably what i'm remembering is `--ban-list ban.txt --ban-list ban2.txt` 23:13:06 If dns-blocklist and banlist can be combined, shouldnt you (technically) be able to use ban-list multiple times as well (?) 🤔 23:28:42 probably 23:29:13 the DNS blocklist takes a bit to load for me, dunno about while syncing. might also be a DNS issue if ur provider does any filtering or whatever 23:55:13 <1​23bob123:matrix.org> -- ban-list plowsof