+- jaonoctus -- 38d --------------------------------------------------------[...]+ | | | What is the Age Verification NIP? 😁 | | | +-- reply ------------------------------------------------------------------- ---+What is the Age Verification NIP? 😁
npub170d8w0jjdcjuh70lq5ppr0pcy7cfuxj6hpr00tm4et3v53j8pvrqj0chu7
jaonoctus@primal.net
SWE at ZBD PGP: 0xD8F31505B581D617 / Tenho medo de falar que faço programa e as pessoas pensarem que entendo de computação.
+- jaonoctus -- 266d -------------------------------------------------------[...]+ | | | P2P or NGMI | | | | | | | | https://blossom.primal.net/36268b6b5bb3c84700d3287da8e035792170344ac59c2c2fef0 | | eab8582848db4.png | | | +-- reply ------------------------------------------------------------------- ---+P2P or NGMI https://blossom.primal.net/36268b6b5bb3c84700d3287da8e035792170344ac59c2c2fef0eab8582848db4.png
+- jaonoctus -- 275d -------------------------------------------------------[...]+ | | | https://blossom.primal.net/3b360482caec4fb1f47e278108e4bf8183f0c5e6df491630ec6 | | cae41702c2913.jpg | | | +-- reply ------------------------------------------------------------------- ---+https://blossom.primal.net/3b360482caec4fb1f47e278108e4bf8183f0c5e6df491630ec6cae41702c2913.jpg
+- jaonoctus -- 278d -------------------------------------------------------[...]+ | | | His nostr profile btw: | | | | npub1ur8m24ya8nmakn38xmuwr0yy7cjgdtm6gy54mpnudgcngkgyy55qxc58yl | | | +-- reply ------------------------------------------------------------------- ---+His nostr profile btw: npub1ur8m24ya8nmakn38xmuwr0yy7cjgdtm6gy54mpnudgcngkgyy55qxc58yl
+- jaonoctus -- 283d -------------------------------------------------------[...]+ | | | Add me please | | | +-- reply ------------------------------------------------------------------- ---+Add me please
+- jaonoctus -- 283d -------------------------------------------------------[...]+ | | | https://gist.github.com/jaonoctus/ec40e7b8ecdf77918281f07ef147ac28 | | | +-- reply ------------------------------------------------------------------- ---+https://gist.github.com/jaonoctus/ec40e7b8ecdf77918281f07ef147ac28
+- jaonoctus -- 283d -------------------------------------------------------[...]+ | | | Cashu is simple. Don't trust, verify: | | | | MATH TIME LFG | | | | Alice generate random values x, and r. | | | | She then calculate public keys from this secrets | | | | Y=h'(x) | | R=rG | | | | Now she do a aggregate public key, by adding the previous two public keys | | together. x is the secret and r is called private blinding factor. | | | | T = Y + R | | | | Then she sends T to Bob, the mint. He cannot tell how T was generated because | | he doesn't know the other values and multiplication in a elliptic curve is | | what we call "a random walk". This mathematical puzzle is known as Discrete | | Logarithm Problem (DLP). | | | | Bob has a special keyring, holding private and public key pairs, one for each | | amount power of 2. Let's say Alice is minting 1 sat so than Bob pick the | | 1-sat-key-pair. | | | | B=bG | | | | Now he mix his private key with the public key he just received. | | | | Q = bT | | | | And then he sends back to Alice this new point on the curve. | | | | But look! She knows T already, right? She can do a process that we call | | unbliding, by subtracting the mix of the little r and Bob's public key. | | | | Z = Q - rB | | | | Let's replace the variables here to know what the result of this means: | | | | Z = bT - rB | | Z = bT - rbG | | Z = b(Y + R) - rbG | | Z = bY + bR - rbG | | Z = bY + brG - rbG | | | | So, we actually have the same number here, brG equals rbG, cancelling each | | other. So then | | | | Z = bY | | | | Now Alice holds a value that means Y multiplied by Bob's private key. Alice | | have no idea what little b is and Bob have never seen Y!!! B.D.H.K.E. is | | really cool, huh? | | | | How Alice knows for sure that Y is mixed with bob's private key tho, because | | she can't see little b, remember, DLP? | | | | Bob will also send a fiat-shammir commitment for Alice, that is a schnorr | | signature. | | | | --- | | Pause to talk about schnorr signatures. | | | | signature = private nonce + commitment * private key. | | | | P = dG | | | | Where little d is the private key, P is the public key | | | | J = jG | | | | Where little j is the private nonce, J is the public nonce | | | | So we have | | | | s = j + ed | | | | Where little e is the hash of the stuff we want to "prove" against our private | | key | | | | e = h(J|P|m) | | | | Where m would be any message. | | | | How do we verify that is is a valid signature? We know that the public key is | | the little private key d times the generator point G. | | | | P = dG | | | | So, what if the verifier do the same math but with the public key instead? | | Let's multiply everything by G then. | | | | sG = jG + edG | | sG = J + eP | | | | If the left side of the equation is equal to the right side, everything is | | good. You just did the same math that the signer did, but with public | | information! | | --- | | | | Back to Bob now! | | | | He wants to prove to Alice that he actually did Q = bT, without showing to her | | his private key, little b. What if he do a signature? | | | | s = j + eb | | | | mmmmm 🤔 this proves shit, nothing. BUT WAIT. do you see that little b is in | | the formula? And we want bT. Right? What if we multiply everything by T then? | | | | sT = jT + ebT | | sT = jT - eQ | | | | Cool. Let's call J1 = jG and J2 = jT | | | | Could Alice recompute both values with public information? Yes! | | | | if J1 is j multiplied by G, then | | | | s = j + eb | | - j = -s + eb | | j = s - eb | | jG = sG - ebG | | J1 = sG - eB | | | | What about J2? Same as above, but multiplying everything for T. | | | | j = s - eb | | jT = sT - ebT | | J2 = sT - eQ | | | | Now, if | | | | sG = J1 + e(J1|J2|B|Q)Q | | | | Then she knows that Bob indeed used his private key little b. This is a zero | | knowledge proof, DLEQ (BIP374), because Bob was able to show to Alice he used | | the private key b without showing it to her. | | | | Now the final piece. If she wants to spend the token or sended to someone.. | | The person needs to show to Bob (x, Z) | | | | Bob will verify the following, does this value, used in the hash_to_curve | | function, combined with my private key, equals the proof Z? | | | | h'(x) * b = Z | | Yb = Z | | | | If so, I've mixed this value I've never seen with my private key?? Yes. Wuuut. | | | | So Bob will accept this as a valid token, marking it as spend (or, now seen). | | He has no idea that the T has any relation with this (x, Z) | | | | e-Cash solves privacy, not custody/trust. | | | | Math is beautiful and privacy is not a crime. | | | +-- reply ------------------------------------------------------------------- ---+Cashu is simple. Don't trust, verify: MATH TIME LFG Alice generate random values x, and r. She then calculate public keys from this secrets Y=h'(x) R=rG Now she do a aggregate public key, by adding the previous two public keys together. x is the secret and r is called private blinding factor. T = Y + R Then she sends T to Bob, the mint. He cannot tell how T was generated because he doesn't know the other values and multiplication in a elliptic curve is what we call "a random walk". This mathematical puzzle is known as Discrete Logarithm Problem (DLP). Bob has a special keyring, holding private and public key pairs, one for each amount power of 2. Let's say Alice is minting 1 sat so than Bob pick the 1-sat-key-pair. B=bG Now he mix his private key with the public key he just received. Q = bT And then he sends back to Alice this new point on the curve. But look! She knows T already, right? She can do a process that we call unbliding, by subtracting the mix of the little r and Bob's public key. Z = Q - rB Let's replace the variables here to know what the result of this means: Z = bT - rB Z = bT - rbG Z = b(Y + R) - rbG Z = bY + bR - rbG Z = bY + brG - rbG So, we actually have the same number here, brG equals rbG, cancelling each other. So then Z = bY Now Alice holds a value that means Y multiplied by Bob's private key. Alice have no idea what little b is and Bob have never seen Y!!! B.D.H.K.E. is really cool, huh? How Alice knows for sure that Y is mixed with bob's private key tho, because she can't see little b, remember, DLP? Bob will also send a fiat-shammir commitment for Alice, that is a schnorr signature. --- Pause to talk about schnorr signatures. signature = private nonce + commitment * private key. P = dG Where little d is the private key, P is the public key J = jG Where little j is the private nonce, J is the public nonce So we have s = j + ed Where little e is the hash of the stuff we want to "prove" against our private key e = h(J|P|m) Where m would be any message. How do we verify that is is a valid signature? We know that the public key is the little private key d times the generator point G. P = dG So, what if the verifier do the same math but with the public key instead? Let's multiply everything by G then. sG = jG + edG sG = J + eP If the left side of the equation is equal to the right side, everything is good. You just did the same math that the signer did, but with public information! --- Back to Bob now! He wants to prove to Alice that he actually did Q = bT, without showing to her his private key, little b. What if he do a signature? s = j + eb mmmmm 🤔 this proves shit, nothing. BUT WAIT. do you see that little b is in the formula? And we want bT. Right? What if we multiply everything by T then? sT = jT + ebT sT = jT - eQ Cool. Let's call J1 = jG and J2 = jT Could Alice recompute both values with public information? Yes! if J1 is j multiplied by G, then s = j + eb - j = -s + eb j = s - eb jG = sG - ebG J1 = sG - eB What about J2? Same as above, but multiplying everything for T. j = s - eb jT = sT - ebT J2 = sT - eQ Now, if sG = J1 + e(J1|J2|B|Q)Q Then she knows that Bob indeed used his private key little b. This is a zero knowledge proof, DLEQ (BIP374), because Bob was able to show to Alice he used the private key b without showing it to her. Now the final piece. If she wants to spend the token or sended to someone.. The person needs to show to Bob (x, Z) Bob will verify the following, does this value, used in the hash_to_curve function, combined with my private key, equals the proof Z? h'(x) * b = Z Yb = Z If so, I've mixed this value I've never seen with my private key?? Yes. Wuuut. So Bob will accept this as a valid token, marking it as spend (or, now seen). He has no idea that the T has any relation with this (x, Z) e-Cash solves privacy, not custody/trust. Math is beautiful and privacy is not a crime.
+- jaonoctus -- 283d -------------------------------------------------------[...]+ | | | How do I join | | | +-- reply ------------------------------------------------------------------- ---+How do I join
+- jaonoctus -- 299d -------------------------------------------------------[...]+ | | | cc | | nostr:nprofile1qqsgdp0taan9xwxadyc79nxl8svanu895yr8eyv0ytnss8p9tru047qpp4mhxue | | 69uhkummn9ekx7mqprpmhxue69uhkummnw3ezuumswfhhvmm0wd6zumnvzhv2s3 | | | +-- reply ------------------------------------------------------------------- ---+cc nostr:nprofile1qqsgdp0taan9xwxadyc79nxl8svanu895yr8eyv0ytnss8p9tru047qpp4mhxue69uhkummn9ekx7mqprpmhxue69uhkummnw3ezuumswfhhvmm0wd6zumnvzhv2s3
+- jaonoctus -- 299d -------------------------------------------------------[...]+ | | | Reworked https://bitcoin-snapshots.jaonoctus.dev into a torrent-based site. | | | | No direct downloads — just clean, decentralized distribution. | | | | Ideal if you're spinning up nodes fast, hacking on bitcoin core, or just sick | | of syncing from block 0. | | | | Seed if you can 🙏 | | | | #bitcoin #assumeutxo | | | | | | | | https://blossom.primal.net/f912813466eb26e9d4b183472a217ebbbee50a54283c3f330eb | | dfa3e0bba294b.jpg | | | +-- reply ------------------------------------------------------------------- ---+Reworked https://bitcoin-snapshots.jaonoctus.dev into a torrent-based site. No direct downloads — just clean, decentralized distribution. Ideal if you're spinning up nodes fast, hacking on bitcoin core, or just sick of syncing from block 0. Seed if you can 🙏 #bitcoin #assumeutxo https://blossom.primal.net/f912813466eb26e9d4b183472a217ebbbee50a54283c3f330ebdfa3e0bba294b.jpg
+- jaonoctus -- 308d -------------------------------------------------------[...]+ | | | GM | | | +-- reply ------------------------------------------------------------------- ---+GM
+- jaonoctus -- 349d -------------------------------------------------------[...]+ | | | -----BEGIN PGP SIGNED MESSAGE----- | | Hash: SHA512 | | | | Date: May 12, 2025 | | Chaintip: 000000000000000000020f4edda4f3360a96d80c49e2c8590dadd02f8808a432 | | | | For a number of reasons, I have recently set up a new OpenPGP key, | | and will be transitioning away from my old one. | | | | The old key will continue to be valid for some time, but I prefer all | | future correspondence to come to the new one. I would also like this | | new key to be re-integrated into the web of trust. This message is | | signed by both keys to certify the transition. | | | | The old key was: | | | | pub rsa4096/0x782C165A293D6E18 2022-04-05 | | Key fingerprint = 6B45 7D06 0ACE 363C 9D67 D8E6 782C 165A 293D 6E18 | | | | And the new key is: | | | | pub ed25519/0xD8F31505B581D617 2025-05-06 | | Key fingerprint = 7B69 6A61 6F73 1337 520B 8A19 D8F3 1505 B581 D617 | | | | To fetch the full keys, you can simply do: | | | | curl -fsSL https://github.com/jaonoctus.gpg | gpg --import | | | | If you already know my old key, you can verify that the new key is | | signed by the old one: | | | | gpg --check-sigs 0xD8F31505B581D617 | | | | If you don't already know my old key, or you just want to be double | | extra paranoid, you can check the fingerprint against the one above: | | | | gpg --fingerprint 0xD8F31505B581D617 | | | | If you are satisfied that you've got the right key, and the UIDs match | | what you expect, I'd appreciate it if you would sign my key: | | | | gpg --sign-key 0xD8F31505B581D617 | | | | Lastly, if you could upload these signatures, i would appreciate it. | | You can either send me an e-mail with the new signatures: (if you have | | a functional MTA on your system): | | | | gpg --armor --export 0xD8F31505B581D617 | mail -s 'OpenPGP Signatures' | | jaonoctus@protonmail.com | | | | Or you can just upload the signatures to a public keyserver directly: | | | | gpg --keyserver keyserver.ubuntu.com --send-key 0xD8F31505B581D617 | | | | Please let me know if there is any trouble, and sorry for the | | inconvenience. | | | | Best, | | jaonoctus | | | | -----BEGIN PGP SIGNATURE----- | | | | iQIzBAEBCgAdFiEEa0V9BgrONjydZ9jmeCwWWik9bhgFAmgiSbAACgkQeCwWWik9 | | bhiJzg/9G65gEpwKung9DYzY/dkTyHl6dplnDxx7PNvr1EkoElC/QdXZO/Kx6mMv | | rGHZYhEDzSL9vM1zkaBjDCBuSp9ameCHBorfCwabjsz4CHmxr/ubdC02B4idpli2 | | 7ONSGUuzbEHsDbpY20I7mH9WsUsbmO+wyjUUqUuKmWZsjndpZ2ZrqwLbCYnjOoxK | | qM+w8x+ShuiZ+awoNTDCXVJ4vD2JlOGrDRiFuDkysOxQ7SBMJDdXbCNOtDM6rMzF | | Y8JZYR+VawkGh0ra/hzeaoKUECUWVmDS4wiFBxOEdU/CApMfsdcdqlBAs2vQ0Uim | | HA90cFFNNWTqqJgOgo5+5rK19N1drnrNYkdiilsfJIkg/kiEp6AWzFCjP0td4URK | | jAb57TxdU6iQ9tMMTP4Y2WVfMx5TgKn8asIi4sQ+PG9IBtLqnlp48l0y/V+kCUbs | | L3+lZD3dA5MU3lclM1J6273co2oCedCTQH2JS6bnkRvVUf6JuKXCHYe1Gi/2uigg | | Pd9hhuxv73eKEBl9+k2upyR7ICzwrWKsRnDlG6TJ1922PyX7hzv4iGnNAAxP758V | | ynICmaBIlrC6ADpgfvTxkHUDpRMoIJOm+dWBi469LC6xac+15S0+PH5ue6BpjA1I | | QMf3foM3sc92QoE8asdlp1+9Zgyx3jY0s7Tu6pJ/+Kst+iEeZv2IdQQBFgoAHRYh | | BHtpamFvcxM3UguKGdjzFQW1gdYXBQJoIkm1AAoJENjzFQW1gdYX46wA/2Mul4NG | | /bvzXx6IC5PNX/tlBwBxGR6JvDn2bESKpgr4AQDH/LQx2RXec9To8kY/Hd/qfvig | | mTnXlsx2pv6LNwQ1Aw== | | =U4KC | | -----END PGP SIGNATURE----- | | | +-- reply ------------------------------------------------------------------- ---+-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Date: May 12, 2025 Chaintip: 000000000000000000020f4edda4f3360a96d80c49e2c8590dadd02f8808a432 For a number of reasons, I have recently set up a new OpenPGP key, and will be transitioning away from my old one. The old key will continue to be valid for some time, but I prefer all future correspondence to come to the new one. I would also like this new key to be re-integrated into the web of trust. This message is signed by both keys to certify the transition. The old key was: pub rsa4096/0x782C165A293D6E18 2022-04-05 Key fingerprint = 6B45 7D06 0ACE 363C 9D67 D8E6 782C 165A 293D 6E18 And the new key is: pub ed25519/0xD8F31505B581D617 2025-05-06 Key fingerprint = 7B69 6A61 6F73 1337 520B 8A19 D8F3 1505 B581 D617 To fetch the full keys, you can simply do: curl -fsSL https://github.com/jaonoctus.gpg | gpg --import If you already know my old key, you can verify that the new key is signed by the old one: gpg --check-sigs 0xD8F31505B581D617 If you don't already know my old key, or you just want to be double extra paranoid, you can check the fingerprint against the one above: gpg --fingerprint 0xD8F31505B581D617 If you are satisfied that you've got the right key, and the UIDs match what you expect, I'd appreciate it if you would sign my key: gpg --sign-key 0xD8F31505B581D617 Lastly, if you could upload these signatures, i would appreciate it. You can either send me an e-mail with the new signatures: (if you have a functional MTA on your system): gpg --armor --export 0xD8F31505B581D617 | mail -s 'OpenPGP Signatures' jaonoctus@protonmail.com Or you can just upload the signatures to a public keyserver directly: gpg --keyserver keyserver.ubuntu.com --send-key 0xD8F31505B581D617 Please let me know if there is any trouble, and sorry for the inconvenience. Best, jaonoctus -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEa0V9BgrONjydZ9jmeCwWWik9bhgFAmgiSbAACgkQeCwWWik9 bhiJzg/9G65gEpwKung9DYzY/dkTyHl6dplnDxx7PNvr1EkoElC/QdXZO/Kx6mMv rGHZYhEDzSL9vM1zkaBjDCBuSp9ameCHBorfCwabjsz4CHmxr/ubdC02B4idpli2 7ONSGUuzbEHsDbpY20I7mH9WsUsbmO+wyjUUqUuKmWZsjndpZ2ZrqwLbCYnjOoxK qM+w8x+ShuiZ+awoNTDCXVJ4vD2JlOGrDRiFuDkysOxQ7SBMJDdXbCNOtDM6rMzF Y8JZYR+VawkGh0ra/hzeaoKUECUWVmDS4wiFBxOEdU/CApMfsdcdqlBAs2vQ0Uim HA90cFFNNWTqqJgOgo5+5rK19N1drnrNYkdiilsfJIkg/kiEp6AWzFCjP0td4URK jAb57TxdU6iQ9tMMTP4Y2WVfMx5TgKn8asIi4sQ+PG9IBtLqnlp48l0y/V+kCUbs L3+lZD3dA5MU3lclM1J6273co2oCedCTQH2JS6bnkRvVUf6JuKXCHYe1Gi/2uigg Pd9hhuxv73eKEBl9+k2upyR7ICzwrWKsRnDlG6TJ1922PyX7hzv4iGnNAAxP758V ynICmaBIlrC6ADpgfvTxkHUDpRMoIJOm+dWBi469LC6xac+15S0+PH5ue6BpjA1I QMf3foM3sc92QoE8asdlp1+9Zgyx3jY0s7Tu6pJ/+Kst+iEeZv2IdQQBFgoAHRYh BHtpamFvcxM3UguKGdjzFQW1gdYXBQJoIkm1AAoJENjzFQW1gdYX46wA/2Mul4NG /bvzXx6IC5PNX/tlBwBxGR6JvDn2bESKpgr4AQDH/LQx2RXec9To8kY/Hd/qfvig mTnXlsx2pv6LNwQ1Aw== =U4KC -----END PGP SIGNATURE-----
+- jaonoctus -- 352d -------------------------------------------------------[...]+ | | | 🤘 | | | +-- reply ------------------------------------------------------------------- ---+🤘
+- jaonoctus -- 374d -------------------------------------------------------[...]+ | | | GM | | | +-- reply ------------------------------------------------------------------- ---+GM
+- jaonoctus -- 407d -------------------------------------------------------[...]+ | | | F1rst qualifying of the year LFG | | | +-- reply ------------------------------------------------------------------- ---+F1rst qualifying of the year LFG
+- jaonoctus -- 408d -------------------------------------------------------[...]+ | | | https://m.primal.net/PfzN.jpg | | https://m.primal.net/PfzO.jpg | | | +-- reply ------------------------------------------------------------------- ---+https://m.primal.net/PfzN.jpg https://m.primal.net/PfzO.jpg
+- jaonoctus -- 408d -------------------------------------------------------[...]+ | | | https://m.primal.net/PfzI.jpg | | https://m.primal.net/PfzJ.jpg | | | +-- reply ------------------------------------------------------------------- ---+https://m.primal.net/PfzI.jpg https://m.primal.net/PfzJ.jpg
+- jaonoctus -- 410d -------------------------------------------------------[...]+ | | | Buenas! | | | | Buying some coffee and chocolate at Beats Coffee with | | nostr:nprofile1qqsv73e7h6tndwngn3ccmc74auufpx722ldncw8rl8087hddljyw6mcpzfmhxue | | 69uhkummnw3ezu7nzvshxweccprsge⚡🤙 | | | | 📍 https://www.instagram.com/beatscoffeeshop | | | | https://m.primal.net/PdSG.mp4 | | https://m.primal.net/PdSJ.jpg | | https://m.primal.net/PdSK.jpg | | https://m.primal.net/PdSM.jpg | | | +-- reply ------------------------------------------------------------------- ---+Buenas! Buying some coffee and chocolate at Beats Coffee with nostr:nprofile1qqsv73e7h6tndwngn3ccmc74auufpx722ldncw8rl8087hddljyw6mcpzfmhxue69uhkummnw3ezu7nzvshxweccprsge⚡🤙 📍 https://www.instagram.com/beatscoffeeshop https://m.primal.net/PdSG.mp4 https://m.primal.net/PdSJ.jpg https://m.primal.net/PdSK.jpg https://m.primal.net/PdSM.jpg
+- jaonoctus -- 410d -------------------------------------------------------[...]+ | | | GM | | nostr:nprofile1qqsrhuxx8l9ex335q7he0f09aej04zpazpl0ne2cgukyawd24mayt8gprfmhxue | | 69uhkcmmrdd3x77pwve5kzar2v9nzucm0d5hszxnhwden5te0wpuhyctdd9jzuenfv96x5ctx9e3k7 | | mf0rr5cq2 | | | +-- reply ------------------------------------------------------------------- ---+GM nostr:nprofile1qqsrhuxx8l9ex335q7he0f09aej04zpazpl0ne2cgukyawd24mayt8gprfmhxue69uhkcmmrdd3x77pwve5kzar2v9nzucm0d5hszxnhwden5te0wpuhyctdd9jzuenfv96x5ctx9e3k7mf0rr5cq2
+- jaonoctus -- 410d -------------------------------------------------------[...]+ | | | Santa Ana, El Salvador | | | | https://m.primal.net/Pcmf.jpg | | https://m.primal.net/Pcmn.jpg | | https://m.primal.net/Pcmp.jpg | | https://m.primal.net/Pcmh.jpg | | https://m.primal.net/Pcmj.jpg | | | +-- reply ------------------------------------------------------------------- ---+Santa Ana, El Salvador https://m.primal.net/Pcmf.jpg https://m.primal.net/Pcmn.jpg https://m.primal.net/Pcmp.jpg https://m.primal.net/Pcmh.jpg https://m.primal.net/Pcmj.jpg
+- jaonoctus -- 421d -------------------------------------------------------[...]+ | | | 🫡 | | | +-- reply ------------------------------------------------------------------- ---+🫡
+- jaonoctus -- 424d -------------------------------------------------------[...]+ | | | Bitcoin Core Snapshots | | | | https://bitcoin-snapshots.jaonoctus.dev/ | | | | Fast-track your node setup with pre-synced blockchain data. These snapshots | | provide a verified copy of the Bitcoin blockchain at specific points in time, | | significantly reducing initial sync time. | | | | If you want to keep this project alive, zap me or send some sats to | | jaonoctus@zbd.gg | | | | https://image.nostr.build/aeaa86cb1c6d316c58f863c75b986decae67653587c3f62cd1c4 | | e5694195c8fc.png | | | +-- reply ------------------------------------------------------------------- ---+Bitcoin Core Snapshots https://bitcoin-snapshots.jaonoctus.dev/ Fast-track your node setup with pre-synced blockchain data. These snapshots provide a verified copy of the Bitcoin blockchain at specific points in time, significantly reducing initial sync time. If you want to keep this project alive, zap me or send some sats to jaonoctus@zbd.gg https://image.nostr.build/aeaa86cb1c6d316c58f863c75b986decae67653587c3f62cd1c4e5694195c8fc.png
+- jaonoctus -- 462d -------------------------------------------------------[...]+ | | | & Krux! | | | +-- reply ------------------------------------------------------------------- ---+& Krux!
+- jaonoctus -- 462d -------------------------------------------------------[...]+ | | | Nunchuk & Liana 🥕🥕🥕 | | | | nostr:note12ujtw524qft4ruxgu87d7mxnq4ju9qjgy66a42c04367pk3760pspaw8yn | | | +-- reply ------------------------------------------------------------------- ---+Nunchuk & Liana 🥕🥕🥕 nostr:note12ujtw524qft4ruxgu87d7mxnq4ju9qjgy66a42c04367pk3760pspaw8yn
+- jaonoctus -- 466d -------------------------------------------------------[...]+ | | | 🤘 | | | +-- reply ------------------------------------------------------------------- ---+🤘
+- jaonoctus -- 469d -------------------------------------------------------[...]+ | | | Bitcoin is ossified 🙏 (NOT) | | | | - Segwit | | - Lightning | | - Schnorr | | - Taproot | | - MuSig2 | | - Descriptors | | - Silent payments | | - Package Relay / TRUC | | - Pay to anchor | | - Ecash (Cashu/Fedimint) | | | | Soon/WEN: | | | | Ark, Strata, Valts, Drivechain, Payment pools, P2QRH.... | | | +-- reply ------------------------------------------------------------------- ---+Bitcoin is ossified 🙏 (NOT) - Segwit - Lightning - Schnorr - Taproot - MuSig2 - Descriptors - Silent payments - Package Relay / TRUC - Pay to anchor - Ecash (Cashu/Fedimint) Soon/WEN: Ark, Strata, Valts, Drivechain, Payment pools, P2QRH....
+- jaonoctus -- 473d -------------------------------------------------------[...]+ | | | "We cannot expect governments, corporations, or other large, faceless | | organizations to grant us privacy out of their beneficence. | | | | We must defend our own privacy if we expect to have any. We must come together | | and create systems which allow anonymous transactions to take place." | | | | A Cypherpunk's Manifesto | | HUGHES, Eric. 1993 | | | +-- reply ------------------------------------------------------------------- ---+"We cannot expect governments, corporations, or other large, faceless organizations to grant us privacy out of their beneficence. We must defend our own privacy if we expect to have any. We must come together and create systems which allow anonymous transactions to take place." A Cypherpunk's Manifesto HUGHES, Eric. 1993
+- jaonoctus -- 486d -------------------------------------------------------[...]+ | | | With great power comes great responsibility. | | | | Self-Custody is not easy. Normies can barely remember their bank account | | password or credit card PIN. | | | | BACKUP YOUR FUCKING KEYS | | | | at least 3 copies of it! And do proof of keys every once in a while | | | +-- reply ------------------------------------------------------------------- ---+With great power comes great responsibility. Self-Custody is not easy. Normies can barely remember their bank account password or credit card PIN. BACKUP YOUR FUCKING KEYS at least 3 copies of it! And do proof of keys every once in a while
+- jaonoctus -- 496d -------------------------------------------------------[...]+ | | | Something with https://labour.fiatjaf.com | | | +-- reply ------------------------------------------------------------------- ---+Something with https://labour.fiatjaf.com
+- jaonoctus -- 500d -------------------------------------------------------[...]+ | | | https://mempool.space/tx/ea38c62294fa9a5c6ccbfe4c307bd9133a8dc407181b69fa092a1 | | 781cbf870bb?mode=details | | | +-- reply ------------------------------------------------------------------- ---+https://mempool.space/tx/ea38c62294fa9a5c6ccbfe4c307bd9133a8dc407181b69fa092a1781cbf870bb?mode=details
No replies found in cached notes yet.
+- jaonoctus -- 266d -------------------------------------------------------[...]+ | | | P2P or NGMI | | | | | | | | https://blossom.primal.net/36268b6b5bb3c84700d3287da8e035792170344ac59c2c2fef0 | | eab8582848db4.png | | | +-- reply ------------------------------------------------------------------- ---+P2P or NGMI https://blossom.primal.net/36268b6b5bb3c84700d3287da8e035792170344ac59c2c2fef0eab8582848db4.png
+- jaonoctus -- 275d -------------------------------------------------------[...]+ | | | https://blossom.primal.net/3b360482caec4fb1f47e278108e4bf8183f0c5e6df491630ec6 | | cae41702c2913.jpg | | | +-- reply ------------------------------------------------------------------- ---+https://blossom.primal.net/3b360482caec4fb1f47e278108e4bf8183f0c5e6df491630ec6cae41702c2913.jpg
+- jaonoctus -- 299d -------------------------------------------------------[...]+ | | | Reworked https://bitcoin-snapshots.jaonoctus.dev into a torrent-based site. | | | | No direct downloads — just clean, decentralized distribution. | | | | Ideal if you're spinning up nodes fast, hacking on bitcoin core, or just sick | | of syncing from block 0. | | | | Seed if you can 🙏 | | | | #bitcoin #assumeutxo | | | | | | | | https://blossom.primal.net/f912813466eb26e9d4b183472a217ebbbee50a54283c3f330eb | | dfa3e0bba294b.jpg | | | +-- reply ------------------------------------------------------------------- ---+Reworked https://bitcoin-snapshots.jaonoctus.dev into a torrent-based site. No direct downloads — just clean, decentralized distribution. Ideal if you're spinning up nodes fast, hacking on bitcoin core, or just sick of syncing from block 0. Seed if you can 🙏 #bitcoin #assumeutxo https://blossom.primal.net/f912813466eb26e9d4b183472a217ebbbee50a54283c3f330ebdfa3e0bba294b.jpg
+- jaonoctus -- 408d -------------------------------------------------------[...]+ | | | https://m.primal.net/PfzN.jpg | | https://m.primal.net/PfzO.jpg | | | +-- reply ------------------------------------------------------------------- ---+https://m.primal.net/PfzN.jpg https://m.primal.net/PfzO.jpg
+- jaonoctus -- 408d -------------------------------------------------------[...]+ | | | https://m.primal.net/PfzI.jpg | | https://m.primal.net/PfzJ.jpg | | | +-- reply ------------------------------------------------------------------- ---+https://m.primal.net/PfzI.jpg https://m.primal.net/PfzJ.jpg
+- jaonoctus -- 410d -------------------------------------------------------[...]+ | | | Buenas! | | | | Buying some coffee and chocolate at Beats Coffee with | | nostr:nprofile1qqsv73e7h6tndwngn3ccmc74auufpx722ldncw8rl8087hddljyw6mcpzfmhxue | | 69uhkummnw3ezu7nzvshxweccprsge⚡🤙 | | | | 📍 https://www.instagram.com/beatscoffeeshop | | | | https://m.primal.net/PdSG.mp4 | | https://m.primal.net/PdSJ.jpg | | https://m.primal.net/PdSK.jpg | | https://m.primal.net/PdSM.jpg | | | +-- reply ------------------------------------------------------------------- ---+Buenas! Buying some coffee and chocolate at Beats Coffee with nostr:nprofile1qqsv73e7h6tndwngn3ccmc74auufpx722ldncw8rl8087hddljyw6mcpzfmhxue69uhkummnw3ezu7nzvshxweccprsge⚡🤙 📍 https://www.instagram.com/beatscoffeeshop https://m.primal.net/PdSG.mp4 https://m.primal.net/PdSJ.jpg https://m.primal.net/PdSK.jpg https://m.primal.net/PdSM.jpg
+- jaonoctus -- 410d -------------------------------------------------------[...]+ | | | Santa Ana, El Salvador | | | | https://m.primal.net/Pcmf.jpg | | https://m.primal.net/Pcmn.jpg | | https://m.primal.net/Pcmp.jpg | | https://m.primal.net/Pcmh.jpg | | https://m.primal.net/Pcmj.jpg | | | +-- reply ------------------------------------------------------------------- ---+Santa Ana, El Salvador https://m.primal.net/Pcmf.jpg https://m.primal.net/Pcmn.jpg https://m.primal.net/Pcmp.jpg https://m.primal.net/Pcmh.jpg https://m.primal.net/Pcmj.jpg
+- jaonoctus -- 424d -------------------------------------------------------[...]+ | | | Bitcoin Core Snapshots | | | | https://bitcoin-snapshots.jaonoctus.dev/ | | | | Fast-track your node setup with pre-synced blockchain data. These snapshots | | provide a verified copy of the Bitcoin blockchain at specific points in time, | | significantly reducing initial sync time. | | | | If you want to keep this project alive, zap me or send some sats to | | jaonoctus@zbd.gg | | | | https://image.nostr.build/aeaa86cb1c6d316c58f863c75b986decae67653587c3f62cd1c4 | | e5694195c8fc.png | | | +-- reply ------------------------------------------------------------------- ---+Bitcoin Core Snapshots https://bitcoin-snapshots.jaonoctus.dev/ Fast-track your node setup with pre-synced blockchain data. These snapshots provide a verified copy of the Bitcoin blockchain at specific points in time, significantly reducing initial sync time. If you want to keep this project alive, zap me or send some sats to jaonoctus@zbd.gg https://image.nostr.build/aeaa86cb1c6d316c58f863c75b986decae67653587c3f62cd1c4e5694195c8fc.png
Pubkeys from this user's latest cached kind 3 follow list.
- Lorena | Bitcoin 01cf24dd…857b
- OCEAN 02d9f567…0da2
- ODELL 04c915da…ecc9
- FarmDev 06074eae…3618
- Michael 🇵🇷 09222857…5012
- madu 097bc601…bbf7
- 0ab7f9329734 0ab7f932…984f
- Lucas Ferreira 🇧🇷⚡️ 0f36d20b…c18c
- 1027fd5bc3b5 1027fd5b…558e
- Diego Kolling 12aa13a2…c82d
- Satsconf 164b1e3f…ed39
- Pavlenex 175f568d…433a
- 180c517f64f5 180c517f…0db1
- andre 1b11ed41…5d6d
- danielabrozzoni 20d88bae…ead5
- Super Testnet 2183e947…b975
- 2325b61aea91 2325b61a…986a
- Alan Schramm 2931719c…1252
- Niko 📚 Konsensus Network 2be983d3…8e48
- jb55 32e18276…e245
- 363b0cdc8bb6 363b0cdc…f616
- 36c2f3b9de4d 36c2f3b9…c3d0
- Victor Stabile 3b3a42d3…e325
- fiatjaf 3bf0c63f…459d
- Hello! Seiiti Arata (English profile) 3fb07265…c546
- Saifedean Ammous 4379e76b…61ad
- 4977be255e91 4977be25…229f
- Alex Emidio 4ba8e86d…2de4
- 4d992bd1e12f 4d992bd1…7b5a
- calle 50d94fc2…1d63
- 51faaa771741 51faaa77…615b
- 529282351f23 52928235…b691
- 566c166f3ada 566c166f…46a8
- Julio Santos 56fff0a8…dca2
- Bruno Garcia 57757bdf…b10e
- Birinaite 🤙 5c2f3a66…4074
- 5df936e47d5d 5df936e4…7206
- lee 5f498ff8…cacc
- https://silent.link 60d53675…296b
- Oi! Seiiti Arata (em português) 63b04d4f…5788
- 645681b9d067 645681b9…5c84
- olive3 652e59ad…8073
- 66ef92e09bef 66ef92e0…7d5a
- 6a8c5c3f3443 6a8c5c3f…1229
- 6bbfd41d823c 6bbfd41d…7eeb
- Jesse Powell 6e1534f5…fca3
- 6f410acc24ea 6f410acc…4ee1
- 7658d0320f97 7658d032…86cf
- 7758171e07ea 7758171e…8016
- 77cd57032410 77cd5703…91a2
- Shadows Lewis 7911c88a…b0f6
- jack 82341f88…e6a2
- 82550cfaa6f8 82550cfa…19b1
- Edward Snowden 84dee6e6…7240
- Sjors Provoost (possibly compromised) 8685ebef…faf8
- 87c440614ea1 87c44061…83a4
- 8c1f61630652 8c1f6163…1ba2
- UNCLE ROCKSTAR 91c9a5e1…f832
- Blockstream 92294577…776d
- 93e6440abceb 93e6440a…2f24
- 93e644d2b36e 93e644d2…3b48
- 97731d71bf67 97731d71…6e0d
- 98590c0f4959 98590c0f…a2f2
- Narcélio 9f4787e7…9018
- a536ab1f7f3c a536ab1f…bca0
- a7cf04ee2fe3 a7cf04ee…5405
- a9e42a0ca6e4 a9e42a0c…3749
- Fran Finney aa6c9c18…bd5a
- acbcec475a1a acbcec47…5bec
- adf4bb907ce6 adf4bb90…2d7a
- b07142318e0d b0714231…ee07
- b1576eb99a47 b1576eb9…733a
- b43558b70e8d b43558b7…b7fe
- b4aa3cfa9b6c b4aa3cfa…d656
- b61350eb27b3 b61350eb…8585
- b992c5571aec b992c557…6f4e
- ba90d84e2d99 ba90d84e…6539
- bdb96ad31ac6 bdb96ad3…2575
- be7a5291b532 be7a5291…08e6
- c1fc7771f5fa c1fc7771…20b1
Cached pubkeys that follow this user, discovered from kind 3 events.
- rafaelando 0079dc34…b1bf
- Bodhi Silva 0111adcc…4c52
- Deleted Account 01643dff…59b2
- Lorena | Bitcoin 01cf24dd…857b
- a12c 0213f7df…bbcc
- Mohamed GigaChad 027309d0…4234
- thesimplekid 04918dfc…bbc5
- Alfa 0575bc05…8d12
- War Monitor 057fca62…a08c
- Luan Oliveira 05ca2c40…1a32
- FarmDev 06074eae…3618
- Dhay 🏴☠️ 0648d9fd…df02
- Rick Apollo 08288690…8eba
- madu 097bc601…bbf7
- Ryan Moeller 0a70ab78…d3c6
- Ranger Loki 0b39c8ee…f0d0
- Planeta do Futebol 🌎 0d6d9b9d…1c3b
- Lucas Ferreira 🇧🇷⚡️ 0f36d20b…c18c
- Private Law Society 0f8ad350…bce3
- Permanerd 🌱 💻 101a112c…b0df
- Ye 127d3bf5…416f
- Bitman 129f5189…1803
- The Rabbit Hole 12dab7cd…a91e
- felipe 147f6604…d26c
- Bruno 15a072d9…9fb8
- epsql 15f70ebd…282c
- Satsconf 164b1e3f…ed39
- Bobtobewilde 17b357b6…dc9c
- joyfultop77 1cc5685b…5bc2
- btcmaniak 1cd1a7d9…e250
- Sr. Capivara 1dd00957…ab6b
- Christo 🧡⚡️ 1eeee7bb…2714
- La Crypta 1f24d0d9…3806
- joandervieira 1f859426…1786
- LeLeo⚡️ 1fe903e3…e4f0
- danielabrozzoni 20d88bae…ead5
- TioSatoChico 217b1357…8c88
- HD 22ae4727…4c26
- Dusk 23b0e2f8…76fc
- Caramelo 2687da9e…094b
- Alan Schramm 2931719c…1252
- Niko 📚 Konsensus Network 2be983d3…8e48
- Bitcoin 2c8d81a4…407d
- 𝕿𝖗𝖊𝖎𝖓 ₿ 2cc6fe2f…8025
- @Li₿ertonho 32d54cd4…4281
- Ƒʉͫcͧкͭιͪηͣ 𝕵𝖔𝖍𝖓 ⚡️⚡️ 34651a93…d7e8
- Tuliorn 35cbaa68…3ed8
- Direita Internacional - ODI (IOR) 37a4f346…ab5d
- Frederik Kjøll Iversen 37aee4e5…bc5a
- islam 38cb9454…1ef0
- André ⚡ 38dac335…a153
- Guilherme Bandeira 3a0a276c…baf5
- Fierillo 3a10e025…3bb9
- Balduíno 3a7c3b14…5a22
- Victor Stabile 3b3a42d3…e325
- John 3cf7cfb6…6bdd
- lkraider 3e0f744d…3463
- Awakened slave 3f9bfe1d…f3c2
- Hello! Seiiti Arata (English profile) 3fb07265…c546
- kalle 4149bd2c…714d
- capybara 43debddd…0ca8
- Túrin Turambar 45d6be84…8b2b
- Alex Emidio 4ba8e86d…2de4
- O Naufrago_btc 4e955a8b…d993
- calle 50d94fc2…1d63
- CrossAder7 5300d995…d85b
- Davi Pinheiro 5391098c…3a0e
- Farejador de Brasileiros 552777ce…ee1e
- 👑 Mises Dev 55472e9c…5e27
- Julio Santos 56fff0a8…dca2
- Bruno Garcia 57757bdf…b10e
- Scrotus 5beb861a…e03a
- Birinaite 🤙 5c2f3a66…4074
- Luís Gama 5e1fe85b…04d6
- Oi! Seiiti Arata (em português) 63b04d4f…5788
- olive3 652e59ad…8073
- Obritzka 69eead65…3447
- joaogalton 6e577f64…70e0
- yaazer 6ece8bf3…3512
- Norbert 71a1ea98…74bb
- Thaeus01 7299ba1e…280d
- ⚡₿itcoinTeddy⚡ 749a6b90…031f
- greenart7c3 7579076d…cb19
- Shadows Lewis 7911c88a…b0f6
- The Tim 7b662a7c…5bc5
- Bitcão 7bbe9e6e…df44
- Bod741 7fb3d02e…3cd2
- Bernardo Braga 92e7c809…b987
- Castiel, o Cavaleiro das Plêiades 97da02b6…8747
- Alex Bit 9db334a4…8d91
- Tico 🇨🇷 a9f8b3f2…1647
- cosmicdust bbfc65f5…4694
- Renato "Trezoitão" Amoedo c123dd23…6cd7
- nunchuk_io c301f133…5b2a
- SunStar photography c6c1912a…e244
- Ratel caa297bb…14dd
- Nind cb33c1d6…454a
- VENATOR d49b9293…3279
- Carman e1ff3bfd…e1af
- EddieOz ⚡ eac63075…8b48
+------------------------------------------------------------------------------+
|
|
Identifiers
npub: npub170d8w0jjdcjuh70lq5ppr0pcy7cfuxj6hpr00tm4et3v53j8pvrqj0chu7
hex: f3da773e526e25cbf9ff050211bc3827b09e1a5ab846f7af75cae2ca46470b06
no cached metadata event yet
+------------------------------------------------------------------------------+
Suggested read/write relays from this user's latest kind 10002 event.
-
wss://premium.primal.net -
wss://labour.fiatjaf.com -
wss://nos.lol -
wss://nostr.bitcoiner.social -
wss://nostr.jaonoctus.dev -
wss://offchain.pub -
wss://relay.nostr.band