01:28:28 <3​21bob321:monero.social> rtfm bascially 08:28:19 Why does my MyMonero automatically lose the mnemonic phrase? 08:28:19 This is the mnemonic phrase with no amount that I just poured in. Half an hour ago I found that my wallet would prompt for transfer: 08:28:21 this wallet must first be imported。 08:28:30 https://matrix.monero.social/_matrix/media/v1/download/matrix.org/AeXnlwPoqTLsxDyorCvDZKsy 08:28:46 https://matrix.monero.social/_matrix/media/v1/download/matrix.org/BtDZnmSaagjZiOzGTbtGwLRb 08:48:53 teplink your screenshot shows the secret spend key, anyone can use it to spend your money! 08:54:57 teplink: your screenshot shows the secret spend key, anyone can use it to spend your money! 08:54:57 Do not use that wallet for anything! If you have funds on it, immediately create a new wallet and transformed all funds there. 08:54:59 Second: please use a better wallet, such as "cake wallet" or "monerujo". Both are more private then mymonero 09:10:07 lol 10:36:33 lol 11:30:16 at least monerujo doesn't let you take screenshots, something like this wouldn't be possible 13:12:06 This is just an empty address for demonstration 13:24:14 At first, I used the mnemonic phrase to restore a wallet with balance. Then when I tried to transfer money, it failed. It said this wallet must first be imported. Then I clicked on the interface and found that the mnemonic phrase disappeared. 13:29:52 The account restored using the mnemonic will lose the mnemonic. A wallet that is connected to the Internet and has saved the spend key cannot transfer money? ? And it will delete the mnemonic after the mnemonic is restored. It is a genius design. 13:30:09 Hi, I want to build a program that crawls the monero db and prints out a csv with every mixin and its associated tx hash. I'm considering building it in c++ vs just using the RPC (which I would assume would be easier). I want the code to be performant so I'd like to know if there'd be a big difference between the two. 13:31:47 I have a paper backup, I didn't lose any money, I just released this software to remind everyone to use it with caution 13:33:17 it sounds like a bug to me, in which case you can report it on github: https://github.com/mymonero/mymonero-mobile/issues 13:33:19 mymonero has been an inferior wallet for the last few years, so the recommendation is always cake/monerujo 13:37:15 I asked them by email and they didn't seem to think it was a bug. I'm using cake wallet now. 13:38:15 ndivi: I wrote an R script that does that and more. It takes about 16 hours to get all the post-RingCT data through RPC-json and process it. You can just increase the number of threads of your program/script until you hit monerod's RPC performance limit and your processes are waiting more than monerod is: https://github.com/Rucknium/misc-research/blob/main/Monero-Effective-Ring-Si 13:38:15 ze/xmr-ring-gathering.R 13:41:40 rucknium: TNXE6 13:45:32 ndivi: This also may be useful: https://github.com/pokkst/monero-decoy-scanner 14:51:01 hello 17:19:21 rucknium: Your script seems really cool. I've been looking at the code (though I'm mostly unfamiliar with R) and I've got it running but I had a few questions. Is there any way to see the current progress asides from changing the code to have a more verbose output? Secondly, do you remember how big the final output file was? I'd like to leave it to run idly but wouldn't want it to die due to no storage 17:21:53 I didn't expect you to run it haha. It keeps everything _in RAM_. It uses over 100 GB once it is done. It can be trimmed down by storing less info and by not creating the ring DB. 17:23:56 You can get a smaller in-RAM database by changing the start and end height at the top of the script. It won't properly create the ring database since you need the older outputs to know what the ring members are. 17:24:05 Thanks for trying the script :) 17:25:55 Ohh haha, yeah I misunderstood. My system doesn't have the memory to handle that. I guess I'll have to hack away at it so it can run on my system, thanks for the help. 17:27:51 ndivi It may be slow but making a 150GB Swap partition on an SSD might do the trick 17:29:49 Interesting idea, good plan B I suppose 17:33:06 Maybe it can be useful to see how to write your own parser. In theory I could ask my R script to write to storage, but we have a 256GB research computer, so it hasn't been necessary. Smoke em if you've got em. 17:33:47 256GB RAM. my dream 17:36:35 Really the only difficult part about a program like this is running efficiently with the monero database. Previously I was accomplishing this task using https://github.com/moneroexamples/transactions-export but it's so incredibly slow that I figured there had to be more efficient way to do it. 17:37:08 That program's original intention is definitely not to scrape the whole database