-
qoopbot
Title: About supply auditability
-
qoopbot
-
asymptotically
is getmonero.org down for anyone else? i just get the message "error code: 1010"
-
asymptotically
ah, apex domain is borked but www. is ok
-
Guest85959
Asymptotically: The website just got updated. Could be a temporary issue related to that
-
asymptotically
ErCiccione[m]: yep looks like it, working fine for just getmonero.org now :)
-
raivavae83
hello
-
asymptotically
hi raivavae83
-
mapuche
hi
-
gingeropolous
mapuche, hello
-
agnfab[m]
Hi
-
mapuche
hello
-
lza_menace[m]
hello
-
rottensox
wazzuppp.
-
Quotes
biicoonneeeeeee
-
rottensox
lol.
-
stargatesg5
is there a way to prune xmr address to fit into 80 bytes? maybe remove checksums?
-
stargatesg5
afaik it's 95 bytes but I'm working on an alias scheme. so far would need 2 btc transactions to fit xmr address into op_return or could put address onto ipfs
-
stargatesg5
oh maybe it's less bytes in base58 nvm
-
asymptotically
stargatesg5: you can fit it in 64 bytes. 32 for the public spend key, and 32 for the public view key
-
asymptotically
-
stargatesg5
yeah, I facepalmed when I realized I don't need to use the entire utf8 space ><
-
stargatesg5
I'm getting 70 bytes with basic address. Looks like I'll have to read the link :)
-
stargatesg5
69 bytes for address, 1 byte (network) prunable, 32 bytes spendkey keep, 32 bytes viewkey keep, 4 bytes checksum prunable. I guess have to figure out how to do checksum myself or now that it fits into op_return 80 bytes don't really need to. neat
-
stargatesg5
I wonder why I get 70 bytes with this node code: const bs58 = require('bs58');
-
asymptotically
hmmm i would have thought that you'd get 69 bytes
-
asymptotically
can you compare against the output on the website above?
-
stargatesg5
yeah it's weird, extra byte and different hex... not good lol
-
stargatesg5
-
stargatesg5
is base58 encoding same as bitcoin?
-
asymptotically
nope. the monero base58 encoding happens in blocks
-
stargatesg5
oh. interesting. same characters though?
-
stargatesg5
as long as I can recover the real xmr address again from byte data, no big deal
-
asymptotically
view-source on that page and have a look at base58.js :D
-
asymptotically
and yes i think that the alphabet is the same
-
asymptotically
don't use the bitcoin one, bad things might happen
-
stargatesg5
ok, i'll check out the base58 library just to be safe
-
stargatesg5
oh you meant js file on xmr site. i wonder if I can use that directly
-
stargatesg5
I don't really understand licensing in software and If i'm allowed to copy/paste that js file if I cite where it's from
-
asymptotically
if software has no license at all, you can't do anything (all rights reserved). the license is what gives you permission to do things
-
stargatesg5
nvm found a library, gonna skip the source and should be good then. thanks again.
npmjs.com/package/@xmr-core/xmr-b58
-
stargatesg5
ah haha. never knew that
-
asymptotically
was just about to link that. i think it's the same, that they both come from mymonero
-
stargatesg5
thanks again, might've helped me avoid a gotcha moment there, didn't see anything wrong with 10 addresses I tried with bitcoin encoding but you never know.
-
stargatesg5
working on name system on bitcoin, very early stages, just fake satoshi alias at the moment on testnet to show
ildarmgt.github.io/BitcoinNameSystem/#/id/satoshi
-
stargatesg5
xmr addresses compatibility would be nice way to give aliases that don't reveal your spending patterns publicly
-
asymptotically
you can do stealth addresses with btc too
-
stargatesg5
yeah bip47
-
stargatesg5
already know those fit
-
asymptotically
ah i was thinking of something else called sx (i think)
-
asymptotically
-
stargatesg5
ah interesting. I know samourai has the paynym thing that uses bip47 payment codes. the padding of 0's at end helps fit them for now. I'll look into sx
-
asymptotically
it's dead, so don't look into it too hard :(
-
stargatesg5
it looks very similar with a secret and notification requirement of 47, but it's a bit complex hence only 1 wallet support atm