-
m-relay
<anonimauzanto:matrix.org> Does anyone have a chart of average and median outputs (not transactions) per block per day?
-
Mochi101
moneroj.net doesn't have it, but you might be able to ask them to add it.
-
aaabbb
syntheticbird: when is it likely to be released?
-
m-relay
<321bob321:monero.social> 1 yr or less i think
-
aaabbb
what statistical attacks are not protected against currently?
-
aaabbb
and how realistic are theY?
-
nioCat
we are talking about what is currently hidden by ring signatures which is who sent the tx
-
aaabbb
so the anonymity set currently is only 16?
-
nioCat
which is plenty except that in certain situations that 16 can become significantly less
-
aaabbb
what are those certain situations?
-
aaabbb
remote nodes? or is that no longer a problem?
-
nioCat
an example, you get monero from an exchange and send to a merchant and the exchange and merchant exchange the info they have
-
nioCat
the more times that you do that the more certain they can be that it was your tx
-
nioCat
how realistic is this?
-
aaabbb
i thought that's exactly what monero was supposed to protect from. how can that be mitigated? by transferring between a few light wallets first?
-
nioCat
you can send to yourself but nobody knows the best way to do that and doing it wrong may nake it worse
-
aaabbb
what would be "wrong"? wouldn't it be enough to create a new wallet and transfer it over, making sure that there's a delay?
-
aaabbb
and i mean a real new wallet, not a new subaddress in the same wallet
-
nioCat
new wallet doesn't mean anything, you can just send it to the same wallet that it came from
-
nioCat
addresses are not on the blockchain
-
nioCat
it's the outputs that are traced
-
nioCat
the point is that it is a weakness, how much.............
-
aaabbb
so if i buy something from a kyc exchange, and i'm going to send to a merchant who might cooperate with the exchange, what should i do to mitigate this issue?
-
nioCat
depends lol
-
nioCat
last line was a continuation to what I was writing, not an answer to the above question
-
aaabbb
i figured, unless you're a hyper speed reader ;)
-
aaabbb
or if it went kyc exchange -> me -> different kyc exchange
-
nioCat
again not sure if this is valid advice but you can do a couple of self sends at different times
-
aaabbb
in theory monero would totally anonymize and the only threat would be traditional opsec (like timing)
-
nioCat
AIUI exchanges do share some info
-
aaabbb
exactly
-
aaabbb
could even go so far as saying kyc exchange -> me -> same kyc exchange (but at a later time, and not the exact same amount)
-
nioCat
not many of those kyc exchanges left, what were the enforcers thinking? lol
-
aaabbb
i thought virtually all exchanges are kyc now
-
nioCat
how many trade monero?
-
aaabbb
ah
-
aaabbb
well some do, as long as the number is >= 1
-
nioCat
kraken, bitfinex and poloniex with the last one doing very little business
-
aaabbb
i guess also with the possiblity of atomic swapping in the future too then btc -> xmr -> btc is viable
-
aaabbb
then btc at a kyc exchange
-
nioCat
no idea if you get "clean" btc from a swap
-
nioCat
exchange has a score for all btc that it receives
-
nioCat
we are talking mostly exchanges with fiat
-
aaabbb
that's dumb. so they'd blacklist btc that comes from a swap?
-
nioCat
they can
-
nioCat
some exchanges will tell you the score of the btc you sent them :D
-
aaabbb
mostly american and western only i assume?
-
aaabbb
and eu?
-
nioCat
I am USA
-
aaabbb
ok
-
aaabbb
so in the current climate using monero to "clean" money is still viable, just takes extra steps?
-
nioCat
it was not designed to do that, difficult to do it well
-
nioCat
need to go, ttyl
-
aaabbb
ttyl
-
aaabbb
it doesn't seem too difficult, as long as basic opsec is maintained
-
aaabbb
not with huge amounts of money i'm sure
-
aaabbb
no one's gonna clean a million but a couple hundred not too hard right?
-
m-relay
<chiefprivacy:matrix.org> I would like to download an entire copy of the blockchain but in the MoneroGUI app, every time I chose a storage location it tells me I have 0GB of free space. I have over 3TB of free space, what is going on?
-
m-relay
<recanman:agoradesk.com> Do you have multiple storage devices?
-
m-relay
<321bob321:monero.social> Folder owner?
-
m-relay
<f:monero.social> In RPC's `transfer_split` it says *"Same as transfer, but can split into more than one tx if necessary."*
-
m-relay
<f:monero.social> What's a necessity in this context?
-
plowsof
if you want to transfer more than 16? recipients, lets say 30. you make 1 rpc call to transfer_split and it will automagically create 2 separate transactions to handle your request (if you're trying to construct a huuge transaction it may fail)
-
m-relay
<nope:matrix.teamsds.net> Hello
-
m-relay
<pcre:monero.social> Hi
-
m-relay
<nope:matrix.teamsds.net> Whats going on? Just got here
-
m-relay
<4l4s70r:monero.social> 👋
-
m-relay
<f:monero.social> plowsof: Thanks. It's the only case where a split occurs?
-
plowsof
Im not sure if anything else would require a split. Sweep_all does it for us if the number of inputs exceed 146~ in a send to self consolidation
-
m-relay
<basses:matrix.org> would you turst a CEX on darknet tho?
-
m-relay
<xmrfamily:matrix.org> Depends what you mean cex. LM was more centralized than a dex and they had an onion
-
m-relay
<basses:matrix.org> But was a legitimate company and would face legal issues if "exit scammed"
-
m-relay
<karano:poddery.com> how are transactions prioritised in the mempool ,by the fees they borne or by fifo ?
-
m-relay
<karano:poddery.com> and how can i know how much kbs of transactions each block holds
-
m-relay
<karano:poddery.com> and how can i know how much kbs of transactions does each block holds
-
m-relay
<rucknium:monero.social> kevino: First, txs are prioritized by fee per byte. (Really, it is fee per "weight", but two-output txs, which are the most common, have the same weight as size). If multiple txs have the same fee per byte, then most mining pools use the standard `monerod` behavior to confirm in first-in-first-out order. P2Pool does random order when multiple txs have the same fee/byte.
-
m-relay
<rucknium:monero.social> Usually, each block holds about 300 KB of txs. That can increase slowly if the txpool is full. Look at xmrchain.net
-
m-relay
<karano:poddery.com> makes sense ! 👍
-
m-relay
<rucknium:monero.social> kevino: Section 1 (page 2), Section 7 (page 14), and Section 8 (page 16) of my draft report about the suspected black marble flooding has more details:
github.com/Rucknium/misc-research/b…d/pdf/monero-black-marble-flood.pdf
-
m-relay
<karano:poddery.com> i believe transaction size is calculated based on transaction amount and/or inputs and outputs involved in the transaction?
-
m-relay
<rucknium:monero.social> kevino: It is not based on the amount of XMR that is being sent. That info is hidden by cryptography, anyway. The number of inputs and outputs of a tx will set the tx size, mostly. Users and wallets can put more data in the tx_extra space, but mostly the number of inputs and outputs will predict the tx size. Look at the different txs on xmrchain.net . It shows the number of ins/ou<clipped message>
-
m-relay
<rucknium:monero.social> ts and tx size for different txs.
-
m-relay
-
m-relay
<baldeagle2:monero.social> I have made a CCS Proposal for a peer-to-peer trading room on Matrix.
-
m-relay
-
m-relay
<baldeagle2:monero.social> - No trade fees
-
m-relay
<baldeagle2:monero.social> - No listing fees
-
m-relay
<baldeagle2:monero.social> - Accessible from web, mobile and desktop
-
m-relay
<baldeagle2:monero.social> - Accessible over Tor and clear-net
-
m-relay
<baldeagle2:monero.social> - Supports all currencies
-
m-relay
<baldeagle2:monero.social> In summary it will be an easy way for people to buy and sell Monero for fiat peer-to-peer with no KYC and no fees.
-
m-relay
<jazod:matrix.org> Hey guys,
-
m-relay
<jazod:matrix.org> I try to execute this command: printf <wallet password> | ./monero-wallet-cli --wallet-file <wallet path> --password <wallet password> --daemon-address <daemon> --trusted-daemon --command transfer <target address> <amount>
-
m-relay
<jazod:matrix.org> But it returns "Warning: Some input keys being spent are from blocks that are temporally very close, which can break the anonymity of ring signatures. Make sure this is intentional!
-
m-relay
<jazod:matrix.org> Is this okay? (Y/Yes/N/No):"
-
m-relay
<jazod:matrix.org> the problem is the command has to be executed with no human intervention!!
-
m-relay
<jazod:matrix.org> and it seems to be impossible to create a Monero wallet without password
-
m-relay
<jazod:matrix.org> and the problem is that if the password is not in my printf statement, it will prompt to put it, even with the --password statement within the command
-
m-relay
<jazod:matrix.org> 12:24
-
m-relay
<jazod:matrix.org> J
-
m-relay
<jazod:matrix.org> Hey guys,
-
m-relay
<jazod:matrix.org> I try to execute this command: printf \<wallet password> | ./monero-wallet-cli --wallet-file \<wallet path> --password \<wallet password> --daemon-address \<daemon> --trusted-daemon --command transfer \<target address> \<amount>
-
m-relay
<jazod:matrix.org> But it returns "Warning: Some input keys being spent are from blocks that are temporally very close, which can break the anonymity of ring signatures. Make sure this is intentional!
-
m-relay
<jazod:matrix.org> Is this okay? (Y/Yes/N/No):"
-
m-relay
<jazod:matrix.org> the problem is the command has to be executed with no human intervention!!
-
m-relay
<jazod:matrix.org> and it seems to be impossible to create a Monero wallet without password
-
m-relay
<jazod:matrix.org> and the problem is that if the password is not in my printf statement, it will prompt to put it, even with the --password statement within the command
-
m-relay
<pcre:monero.social> try »set ask-password 0«
-
m-relay
<pcre:monero.social> and »help set«
-
m-relay
<jeffro256:monero.social> DM me if you want 2 free Monerokon tickets
-
m-relay
<jeffro256:monero.social> If you're doing automated wallet tasks, I would recommend using monero-wallet-rpc
-
m-relay
<edge7:matrix.org> Not sure if I got your point, but in Linux there is a yes command you can use to answer yes automatically
-
m-relay
<0x1zxq7896lp2zero:matrix.org> yet people are using those sites with their own risk lol
-
m-relay
<0x1zxq7896lp2zero:matrix.org> yep
-
m-relay
<0x1zxq7896lp2zero:matrix.org> funny is even binance was like "not your keys not your coins" and everyone one was memes and shit but then again "nah, cex are cool lol"
-
m-relay
<0x1zxq7896lp2zero:matrix.org> funny is even binance was like "not your keys not your coins" and everyone was memes and shit but then again "nah, cex are cool lol"
-
m-relay
<axmasta:matrix.org> Social proof is a helluva drug
-
m-relay
<basses:matrix.org> heard of infinity or some shit
-
m-relay
<0x1zxq7896lp2zero:matrix.org> lol
-
m-relay
<basses:matrix.org> like who tf uses that shit
-
m-relay
<0x1zxq7896lp2zero:matrix.org> lol
-
m-relay
<xmrfamily:matrix.org> I think ive used infinity
-
m-relay
<0x1zxq7896lp2zero:matrix.org> 😂
-
m-relay
<axmasta:matrix.org> Marketing works a bit too well tbh
-
m-relay
<axmasta:matrix.org> "I'll call my ~~market~~ rugpull Incognito!"
-
m-relay
<axmasta:matrix.org> Fuckin so stupid its brilliant
-
m-relay
<axmasta:matrix.org> Fiction ain't got shit
-
m-relay
<axmasta:matrix.org> I said shit, fuck all, on reality
-
m-relay
<0x1zxq7896lp2zero:matrix.org> lol
-
m-relay
<xmrfamily:matrix.org> what happened with infinity?
-
m-relay
<nihilist:m.datura.network> if anyone's interested in trying out Haveno DEX (for fiat -> XMR transactions) feel free to check out my tutorial on it
blog.nihilism.network/servers/haveno-client-f2f/index.html i tried to make it as noob friendly as i could
-
m-relay
<moralpriest:matrix.org> does anyone know a printing service for t-shirts that accept XMR?
-
m-relay
<rottenwheel:kernal.eu> Do you see my PM? 👀
-
m-relay
<jeffro256:monero.social> DM'ed u back
-
DeanGuss
nihilist: Why does your guide use somebody's fork of haveno?
-
DeanGuss
oh sorry, I see. Sometimes I can't read good
-
m-relay
<cowboy_coffee:matrix.org> Is there a need for more dedicated Monero nodes at this point?
-
DeanGuss
nihilist: can you help me understand what these servers are? I presume "reto" hosts them.. Does reto have a good reputation or anybody know this entity? What software is it? Another haveno node or what?
-
DeanGuss
-
DeanGuss
Or wait... I guess those are just random onion xmr nodes they run. So what are the pubkeys for?