-
@ eac63075:b4988b48
2025-06-07 13:44:48Ever imagined sending a Bitcoin transaction without an internet connection? Or talking to your friends during a total blackout when the cell network just vanishes? It sounds like science fiction, but this technology is an accessible reality, built with low-cost hardware and open-source software. Welcome to the world of mesh networks, Meshtastic, and the BTC Mesh project.
This guide explores the universe of decentralized communication networks, showing how they work, why they are vital for our digital sovereignty, and how you can use them to strengthen your privacy and resilience—not just in communication, but in your Bitcoin transactions as well.
What Are Mesh Networks and Why Should You Care?
Our connected world runs on a fragile, centralized infrastructure. Cell towers, internet providers, data centers—if one of these points fails, communication stops. A mesh network turns this logic on its head.
Here, each participant (or "node") connects directly to other nodes within its reach, forming a web of P2P (peer-to-peer) connections. Instead of data passing through a central server, it hops from node to node until it reaches its destination. The true strength of this approach is decentralization and resilience. If a node goes down, the others simply find a new path for the information. The network reconfigures and heals itself.
Source: meshtastic.org
LoRa and Meshtastic: The Dynamic Duo
To create these networks in the real world, the enthusiast community has rallied around a powerful duo:
- LoRa (Long Range): Think of LoRa as the physical layer—the "radio waves" of our network. It's a technology that allows for long-range wireless communication with incredibly low power consumption. We're talking about cheap little radios that can send small data packets for miles, running for days on a single battery.
- Meshtastic: If LoRa is the physical medium, Meshtastic is the brain. It's open-source software that equips these radios to form a smart, easy-to-use mesh network. Meshtastic handles everything: discovering other nodes, managing routes, encrypting messages, and providing an interface on your phone, connected via Bluetooth.
Meshtastic was originally created as an off-grid communicator, but its usefulness goes far beyond that. Here, privacy is a fundamental pillar. To join a group channel, you need the encryption key. Direct messages are end-to-end encrypted. It's like having a "hardware wallet" for your communication: your private key is secure on your radio, ensuring that only you and the recipient can read the messages.
While Meshtastic is the most popular, alternatives like MeshCore exist, which aim to optimize packet routing. However, the network effect is powerful, and the vast majority of users today are on the Meshtastic platform.
Introducing BTC Mesh: Bitcoin Transactions Via Radio
This is where Bitcoin enters the picture. The inspiration for the BTC Mesh project came from a mix of necessity and chance. After buying a LoRa radio on AliExpress that, to my frustration, couldn't transmit over long distances—and the seller simply stopped responding—I discovered it worked perfectly within my apartment. With two radios in hand, one for the base and another "defective" one, I had the perfect test environment for a new use case: sending Bitcoin transactions over the mesh network.
GitHub - eddieoz/btcmesh: BTC Mesh Relay is designed to send Bitcoin payments via LoRa Meshtastic.
BTC Mesh is a simple application that allows anyone on a Meshtastic network to send a Bitcoin transaction (on-chain, layer 1) over the radio network, without needing a direct internet connection.
How the Magic Works
The system has two parts: a client and a server.
- The Server: Someone on the network with internet access runs the "server node." This is a computer (a Raspberry Pi can handle it) connected to a LoRa radio and a full Bitcoin node (Bitcoin Core). It acts as the bridge between the off-grid mesh world and the global Bitcoin network.
- The Client: Anyone else on the network, even miles away and without internet, can use the "client" on their laptop or phone.
The process is a choreographed dance designed for the low-speed LoRa network:
- Preparing the Transaction: In a wallet like Sparrow, you create and sign your transaction. Instead of clicking "Broadcast," you copy the "Raw Transaction"—a long hexadecimal text.
- Sending Over the Mesh: In the terminal, you run a simple command, pointing to the server's radio and pasting your raw transaction.
- The Communication: Since the transaction is too large for a single LoRa packet, the client splits it into chunks and starts a conversation with the server:
- Client: "Hey server! I have a transaction in 15 parts. Can we start?"
- Server: "Roger that! Awaiting 15 parts. Send the first one."
- Client: (sends part 1)
- Server: "Part 1 received. Send part 2."
- This "handshake" continues until all parts are confirmed, ensuring the transaction arrives complete.
- Validation and Broadcast: Upon receiving everything, the server reconstructs the transaction, validates it, and hands it off to its local Bitcoin node, which finally broadcasts it to the worldwide network.
And that's it! Your transaction is sent to the blockchain, broadcast from a radio, without your IP address ever being exposed.
Maximum Privacy and Sovereignty
BTC Mesh's power lies in its layers of privacy:
- No IP Trail: Since the transaction is sent via radio, there is no record of your IP address. To the Bitcoin network, the transaction simply originated from the server node.
- End-to-End Encryption: The communication between the radios is encrypted by Meshtastic. No one in between can see the content of your transaction.
- Extra Layer with Tor: For maximum privacy, the server node can connect to the internet through the Tor network. This way, not even the server's IP is exposed in the final broadcast.
This combination creates a powerful system for censorship-resistant Bitcoin transactions with high privacy.
Building Your Kit: The Hardware
Excited to build your own station? The hardware is cheap and accessible.
- Frequency is Key: First, know the legal LoRa frequency in your country. In Brazil, use 915 MHz. In Europe, 868 MHz. Buying the wrong frequency will render your radio useless.
- Popular Brands:
- Heltec: Very popular, with boards like the T114, V3, and the Wireless Bridge, which comes with a practical design and an e-ink screen.
- RAK Wireless: Considered more "professional." The RAK4631 model (which I use for my base) is excellent, and the WisBlock line is modular, requiring no soldering.
- LilyGo: Famous in the "maker" community. Offers boards like the T-Beam (with GPS), T-Echo (small and practical), and the T-Deck (a full communicator with a keyboard).
- Seeed Studio (SenseCAP): Offers robust devices like the T1000-e (waterproof) and the XIAO ESP32S3 (tiny, perfect for compact projects).
- Antennas: Don't underestimate the antenna! And a crucial warning: never, ever, turn on your radio without an antenna connected, or you could burn out the transmitter.
- 3 dBi: A more "rounded" signal (a sphere), great for short distances with vertical obstacles.
- 10 dBi: A "flatter," more directional signal (a frisbee), for long distances with a clear line of sight.
- Power: Many boards have connectors for batteries and small solar panels, allowing you to create autonomous nodes.
Limitations and Considerations
Despite its power, LoRa technology has its limits:
- Low Bandwidth: The network is slow. Think 140-character Twitter. It's perfect for messages, but forget about web browsing.
- Regulation: Many regions limit the amount of data a radio can transmit per hour ("duty cycle"). Meshtastic respects these limits, which reinforces the need for optimized applications.
- Need for a Bridge: For a transaction to reach the global network, one node on the mesh needs internet. The network can be fully off-grid for internal communication, but the bridge to the outside world is necessary for certain applications. MQTT servers can play this role, connecting distant mesh networks over the internet.
Use Cases: Beyond Bitcoin
- Disaster Communication: Projects like Disaster.Radio focus on using LoRa to coordinate rescue teams during catastrophes.
- Outdoor Activities: Essential for hiking and camping in remote locations.
- Internet of Things (IoT): In agriculture, sensors can cover vast areas. On farms, they can monitor livestock.
- Private Communication: In a world of surveillance, having a communication channel that you control is an act of sovereignty.
The Future is Decentralized
Projects like BTC Mesh offer a glimpse into a more resilient, private, and decentralized future. They give us the tools to build our own communication and financial networks, free from centralized control.
The technology is cheap, the software is free, and the community is vibrant. Building your first node might seem intimidating, but it's a rewarding project and a practical step toward personal sovereignty.
So, are you ready to get off the grid?
-
@ f85b9c2c:d190bcff
2025-06-07 13:16:28To understand the value of a cryptocurrency, it’s vital to know how many coins are currently in circulation and at what price they’re being sold. Market capitalization of coins are calculated by multiplying the number of coins in circulation with their current market selling rate per coin.
What is Market Capitalization? Market capitalization is the total dollar value of all shares in a company. For Bitcoin or another cryptocurrency it’s calculated by multiplying a total number of coins mined by their current price at that particular time. The market cap is a great way to measure an asset’s stability. The larger it gets, the less likely you’ll have any fluctuations in pricing because more people are using this currency. This means that its price will remain consistent over time no matter what happens with the markets.
Why is a Market Cap Necessary? Cryptocurrencies are collected and catalogued by market cap which helps investors better understand their value. This statistic can indicate if a cryptocurrency is safe to buy or sell compared with others in the industry — it may also provide an idea of what kind of growth potential they have ahead.
What Can You Do With the Market Cap? It’s essential for crypto enthusiasts like yourself to keep track of what kind of project might be worth investing in.
Cryptocurrencies are divided into three categories based on their market cap: 1.Large-cap Cryptocurrencies Large-cap cryptocurrencies are considered lower-risk investments because they’ve demonstrated growth and high liquidity. This means that even if many people sell their investment, its value won’t decrease too much.
2.Mid-cap Cryptocurrencies Mid-cap cryptocurrencies have a lot of potential but are also riskier than large-cap coins.
3.Small-cap Cryptocurrencies Small-cap cryptocurrencies could be your best bet for those looking to invest in a more volatile market with the potential for greater returns.
Last thoughts Even though cryptocurrency market caps allow for an easy way to compare the values of different coins you should consider all factors when investing in any project. You can’t just go into cryptocurrency investing without doing your research. It would help if you looked at each coin’s market trends and stability and whether it’s right for you financially.
-
@ 1817b617:715fb372
2025-06-07 13:15:04Looking to simulate a USDT deposit that appears instantly in a wallet — with no blockchain confirmation, no real spend, and no trace?
You’re in the right place.
🔗 Buy Flash USDT Now This product sends Flash USDT directly to your TRC20, ERC20, or BEP20 wallet address — appears like a real deposit, but disappears after a set time or block depth.
✅ Perfect for: Simulating token inflows Wallet stress testing “Proof of funds” display Flash USDT is ideal for developers, trainers, UI testers, and blockchain researchers — and it’s fully customizable.
🧠 What Is Flash USDT? Flash USDT is a synthetic transaction that mimics a real Tether transfer. It shows up instantly in a wallet balance, and it’s confirmed on-chain — and expires after a set duration.
This makes it:
Visible on wallet interfaces Time-limited (auto-disappears cleanly) Undetectable on block explorers after expiry It’s the smartest, safest way to simulate high-value transactions without real crypto.
🛠️ Flash USDT Software – Your Own USDT Flasher at Your Fingertips Want to control the flash? Run your own operations? Flash unlimited wallets?
🔗 Buy Flash USDT Software
This is your all-in-one USDT flasher tool, built for TRC20, ERC20, and BEP20 chains. It gives you full control to:
Send custom USDT amounts Set custom expiry time (e.g., 30–360 days) Flash multiple wallets Choose between networks (Tron, ETH, BSC) You can simulate any amount, to any supported wallet, from your own system.
No third-party access. No blockchain fee. No trace left behind.
💥 Why Our Flash USDT & Software Stands Out Feature Flash USDT Flash USDT Software One-time flash send ✅ Yes Optional Full sender control ❌ No ✅ Yes TRC20 / ERC20 / BEP20 ✅ Yes ✅ Yes Custom duration/expiry Limited ✅ Yes Unlimited usage ❌ One-off ✅ Yes Whether you’re flashing for wallet testing, demoing investor dashboards, or simulating balance flows, our tools deliver realism without risk.
🛒 Ready to Buy Flash USDT or the Software? Skip the wait. Skip the scammers. You’re one click away from real control.
👉 Buy Flash USDT 👉 Buy Flash USDT Software
📞 Support or live walkthrough?
💬 Telegram: @cryptoflashingtool 📱 WhatsApp: +1 770-666-2531
🚫 Legal Notice These tools are intended for:
Educational purposes Demo environments Wallet and UI testing They are not for illegal use or financial deception. Any misuse is your full responsibility.
Final Call: Need to flash USDT? Want full control? Don’t wait for another “maybe” tool.
Get your Flash USDT or Flashing Software today and simulate like a pro.
🔗 Buy Now → Flash USDT 🔗 Buy Now → Flash USDT Software 💬 Telegram: @cryptoflashingtool 📱 WhatsApp: +1 770-666-2531Looking to simulate a USDT deposit that appears instantly in a wallet — with no blockchain confirmation, no real spend, and no trace?
You’re in the right place.
Buy Flash USDT Now\ This product sends Flash USDT directly to your TRC20, ERC20, or BEP20 wallet address — appears like a real deposit, but disappears after a set time or block depth.
Perfect for:
- Simulating token inflows
- Wallet stress testing
- “Proof of funds” display
Flash USDT is ideal for developers, trainers, UI testers, and blockchain researchers — and it’s fully customizable.
What Is Flash USDT?
Flash USDT is a synthetic transaction that mimics a real Tether transfer. It shows up instantly in a wallet balance, and it’s confirmed on-chain — and expires after a set duration.
This makes it:
- Visible on wallet interfaces
- Time-limited (auto-disappears cleanly)
- Undetectable on block explorers after expiry
It’s the smartest, safest way to simulate high-value transactions without real crypto.
Flash USDT Software – Your Own USDT Flasher at Your Fingertips
Want to control the flash?\ Run your own operations?\ Flash unlimited wallets?
This is your all-in-one USDT flasher tool, built for TRC20, ERC20, and BEP20 chains. It gives you full control to:
- Send custom USDT amounts
- Set custom expiry time (e.g., 30–360 days)
- Flash multiple wallets
- Choose between networks (Tron, ETH, BSC)
You can simulate any amount, to any supported wallet, from your own system.
No third-party access.\ No blockchain fee.\ No trace left behind.
Why Our Flash USDT & Software Stands Out
Feature
Flash USDT
Flash USDT Software
One-time flash send
Yes
Optional
Full sender control
No
Yes
TRC20 / ERC20 / BEP20
Yes
Yes
Custom duration/expiry
Limited
Yes
Unlimited usage
One-off
Yes
Whether you’re flashing for wallet testing, demoing investor dashboards, or simulating balance flows, our tools deliver realism without risk.
Ready to Buy Flash USDT or the Software?
Skip the wait. Skip the scammers.\ You’re one click away from real control.
Support or live walkthrough?
Telegram: @cryptoflashingtool
WhatsApp: +1 770-666-2531
Legal Notice
These tools are intended for:
- Educational purposes
- Demo environments
- Wallet and UI testing
They are not for illegal use or financial deception. Any misuse is your full responsibility.
Final Call:
Need to flash USDT? Want full control?\ Don’t wait for another “maybe” tool.
Get your Flash USDT or Flashing Software today and simulate like a pro.
Telegram: @cryptoflashingtool
WhatsApp: +1 770-666-2531
-
@ dfa02707:41ca50e3
2025-06-07 13:01:49Good morning (good night?)! The No Bullshit Bitcoin news feed is now available on Moody's Dashboard! A huge shoutout to sir Clark Moody for integrating our feed.
Headlines
- Spiral welcomes Ben Carman. The developer will work on the LDK server and a new SDK designed to simplify the onboarding process for new self-custodial Bitcoin users.
- The Bitcoin Dev Kit Foundation announced new corporate members for 2025, including AnchorWatch, CleanSpark, and Proton Foundation. The annual dues from these corporate members fund the small team of open-source developers responsible for maintaining the core BDK libraries and related free and open-source software (FOSS) projects.
- Strategy increases Bitcoin holdings to 538,200 BTC. In the latest purchase, the company has spent more than $555M to buy 6,556 coins through proceeds of two at-the-market stock offering programs.
- Spar supermarket experiments with Bitcoin payments in Zug, Switzerland. The store has introduced a new payment method powered by the Lightning Network. The implementation was facilitated by DFX Swiss, a service that supports seamless conversions between bitcoin and legacy currencies.
- The Bank for International Settlements (BIS) wants to contain 'crypto' risks. A report titled "Cryptocurrencies and Decentralised Finance: Functions and Financial Stability Implications" calls for expanding research into "how new forms of central bank money, capital controls, and taxation policies can counter the risks of widespread crypto adoption while still fostering technological innovation."
- "Global Implications of Scam Centres, Underground Banking, and Illicit Online Marketplaces in Southeast Asia." According to the United Nations Office on Drugs and Crime (UNODC) report, criminal organizations from East and Southeast Asia are swiftly extending their global reach. These groups are moving beyond traditional scams and trafficking, creating sophisticated online networks that include unlicensed cryptocurrency exchanges, encrypted communication platforms, and stablecoins, fueling a massive fraud economy on an industrial scale.
- Slovenia is considering a 25% capital gains tax on Bitcoin profits for individuals. The Ministry of Finance has proposed legislation to impose this tax on gains from cryptocurrency transactions, though exchanging one cryptocurrency for another would remain exempt. At present, individual 'crypto' traders in Slovenia are not taxed.
- Circle, BitGo, Coinbase, and Paxos plan to apply for U.S. bank charters or licenses. According to a report in The Wall Street Journal, major crypto companies are planning to apply for U.S. bank charters or licenses. These firms are pursuing limited licenses that would permit them to issue stablecoins, as the U.S. Congress deliberates on legislation mandating licensing for stablecoin issuers.
"Established banks, like Bank of America, are hoping to amend the current drafts of [stablecoin] legislation in such a way that nonbanks are more heavily restricted from issuing stablecoins," people familiar with the matter told The Block.
- Charles Schwab to launch spot Bitcoin trading by 2026. The financial investment firm, managing over $10 trillion in assets, has revealed plans to introduce spot Bitcoin trading for its clients within the next year.
Use the tools
- Bitcoin Safe v1.2.3 expands QR SignMessage compatibility for all QR-UR-compatible hardware signers (SpecterDIY, KeyStone, Passport, Jade; already supported COLDCARD Q). It also adds the ability to import wallets via QR, ensuring compatibility with Keystone's latest firmware (2.0.6), alongside other improvements.
- Minibits v0.2.2-beta, an ecash wallet for Android devices, packages many changes to align the project with the planned iOS app release. New features and improvements include the ability to lock ecash to a receiver's pubkey, faster confirmations of ecash minting and payments thanks to WebSockets, UI-related fixes, and more.
- Zeus v0.11.0-alpha1 introduces Cashu wallets tied to embedded LND wallets. Navigate to Settings > Ecash to enable it. Other wallet types can still sweep funds from Cashu tokens. Zeus Pay now supports Cashu address types in Zaplocker, Cashu, and NWC modes.
- LNDg v1.10.0, an advanced web interface designed for analyzing Lightning Network Daemon (LND) data and automating node management tasks, introduces performance improvements, adds a new metrics page for unprofitable and stuck channels, and displays warnings for batch openings. The Profit and Loss Chart has been updated to include on-chain costs. Advanced settings have been added for users who would like their channel database size to be read remotely (the default remains local). Additionally, the AutoFees tool now uses aggregated pubkey metrics for multiple channels with the same peer.
- Nunchuk Desktop v1.9.45 release brings the latest bug fixes and improvements.
- Blockstream Green iOS v4.1.8 has renamed L-BTC to LBTC, and improves translations of notifications, login time, and background payments.
- Blockstream Green Android v4.1.8 has added language preference in App Settings and enables an Android data backup option for disaster recovery. Additionally, it fixes issues with Jade entry point PIN timeout and Trezor passphrase input.
- Torq v2.2.2, an advanced Lightning node management software designed to handle large nodes with over 1000 channels, fixes bugs that caused channel balance to not be updated in some cases and channel "peer total local balance" not getting updated.
- Stack Wallet v2.1.12, a multicoin wallet by Cypher Stack, fixes an issue with Xelis introduced in the latest release for Windows.
- ESP-Miner-NerdQAxePlus v1.0.29.1, a forked version from the NerdAxe miner that was modified for use on the NerdQAxe+, is now available.
- Zark enables sending sats to an npub using Bark.
- Erk is a novel variation of the Ark protocol that completely removes the need for user interactivity in rounds, addressing one of Ark's key limitations: the requirement for users to come online before their VTXOs expire.
- Aegis v0.1.1 is now available. It is a Nostr event signer app for iOS devices.
- Nostash is a NIP-07 Nostr signing extension for Safari. It is a fork of Nostore and is maintained by Terry Yiu. Available on iOS TestFlight.
- Amber v3.2.8, a Nostr event signer for Android, delivers the latest fixes and improvements.
- Nostur v1.20.0, a Nostr client for iOS, adds
-
@ dfa02707:41ca50e3
2025-06-07 13:01:49Contribute to keep No Bullshit Bitcoin news going.
- The latest firmware updates for COLDCARD devices introduce two major features: COLDCARD Co-sign (CCC) and Key Teleport between two COLDCARD Q devices using QR codes and/or NFC with a website.
What's new
- COLDCARD Co-Sign: When CCC is enabled, a second seed called the Spending Policy Key (Key C) is added to the device. This seed works with the device's Main Seed and one or more additional XPUBs (Backup Keys) to form 2-of-N multisig wallets.
- The spending policy functions like a hardware security module (HSM), enforcing rules such as magnitude and velocity limits, address whitelisting, and 2FA authentication to protect funds while maintaining flexibility and control, and is enforced each time the Spending Policy Key is used for signing.
- When spending conditions are met, the COLDCARD signs the partially signed bitcoin transaction (PSBT) with the Main Seed and Spending Policy Key for fund access. Once configured, the Spending Policy Key is required to view or change the policy, and violations are denied without explanation.
"You can override the spending policy at any time by signing with either a Backup Key and the Main Seed or two Backup Keys, depending on the number of keys (N) in the multisig."
-
A step-by-step guide for setting up CCC is available here.
-
Key Teleport for Q devices allows users to securely transfer sensitive data such as seed phrases (words, xprv), secure notes and passwords, and PSBTs for multisig. It uses QR codes or NFC, along with a helper website, to ensure reliable transmission, keeping your sensitive data protected throughout the process.
- For more technical details, see the protocol spec.
"After you sign a multisig PSBT, you have option to “Key Teleport” the PSBT file to any one of the other signers in the wallet. We already have a shared pubkey with them, so the process is simple and does not require any action on their part in advance. Plus, starting in this firmware release, COLDCARD can finalize multisig transactions, so the last signer can publish the signed transaction via PushTX (NFC tap) to get it on the blockchain directly."
- Multisig transactions are finalized when sufficiently signed. It streamlines the use of PushTX with multisig wallets.
- Signing artifacts re-export to various media. Users are now provided with the capability to export signing products, like transactions or PSBTs, to alternative media rather than the original source. For example, if a PSBT is received through a QR code, it can be signed and saved onto an SD card if needed.
- Multisig export files are signed now. Public keys are encoded as P2PKH address for all multisg signature exports. Learn more about it here.
- NFC export usability upgrade: NFC keeps exporting until CANCEL/X is pressed.
- Added Bitcoin Safe option to Export Wallet.
- 10% performance improvement in USB upload speed for large files.
- Q: Always choose the biggest possible display size for QR.
Fixes
- Do not allow change Main PIN to same value already used as Trick PIN, even if Trick PIN is hidden.
- Fix stuck progress bar under
Receiving...
after a USB communications failure. - Showing derivation path in Address Explorer for root key (m) showed double slash (//).
- Can restore developer backup with custom password other than 12 words format.
- Virtual Disk auto mode ignores already signed PSBTs (with “-signed” in file name).
- Virtual Disk auto mode stuck on “Reading…” screen sometimes.
- Finalization of foreign inputs from partial signatures. Thanks Christian Uebber!
- Temporary seed from COLDCARD backup failed to load stored multisig wallets.
Destroy Seed
also removes all Trick PINs from SE2.Lock Down Seed
requires pressing confirm key (4) to execute.- Q only: Only BBQr is allowed to export Coldcard, Core, and pretty descriptor.
-
@ dfa02707:41ca50e3
2025-06-07 13:01:47Contribute to keep No Bullshit Bitcoin news going.
- RoboSats v0.7.7-alpha is now available!
NOTE: "This version of clients is not compatible with older versions of coordinators. Coordinators must upgrade first, make sure you don't upgrade your client while this is marked as pre-release."
- This version brings a new and improved coordinators view with reviews signed both by the robot and the coordinator, adds market price sources in coordinator profiles, shows a correct warning for canceling non-taken orders after a payment attempt, adds Uzbek sum currency, and includes package library updates for coordinators.
Source: RoboSats.
- siggy47 is writing daily RoboSats activity reviews on stacker.news. Check them out here.
- Stay up-to-date with RoboSats on Nostr.
What's new
- New coordinators view (see the picture above).
- Available coordinator reviews signed by both the robot and the coordinator.
- Coordinators now display market price sources in their profiles.
Source: RoboSats.
- Fix for wrong message on cancel button when taking an order. Users are now warned if they try to cancel a non taken order after a payment attempt.
- Uzbek sum currency now available.
- For coordinators: library updates.
- Add docker frontend (#1861).
- Add order review token (#1869).
- Add UZS migration (#1875).
- Fixed tests review (#1878).
- Nostr pubkey for Robot (#1887).
New contributors
Full Changelog: v0.7.6-alpha...v0.7.7-alpha
-
@ dfa02707:41ca50e3
2025-06-07 13:01:47Contribute to keep No Bullshit Bitcoin news going.
- Wasabi Wallet v2.6.0 "Prometheus" is a major update for the project, focused on resilience and independence from centralized systems.
- Key features include support for BIP 158 block filters for direct node synchronization, a revamped full node integration for easier setup without third-party reliance, SLIP 39 share backups for flexible wallet recovery (sponsored by Trezor), and a Nostr-based update manager for censorship-resistant updates.
- Additional improvements include UI bug fixes, a new fallback for transaction broadcasting, updated code signing, stricter JSON serialization, and options to avoid third-party rate providers, alongside various under-the-hood enhancements.
This new version brings us closer to our ultimate goal: ensuring Wasabi is future-proof," said the developers, while also highlighting the following key areas of focus for the project:
- Ensuring users can always fully and securely use their client.
- Making contribution and forks easy through a codebase of the highest quality possible: understandable, maintainable, and improvable.
"As we achieve our survival goals, expect more cutting-edge improvements in Bitcoin privacy and self-custody. Thank you for the trust you place in us by using Wasabi," was stated in the release notes.
What's new
- Support for Standard BIP 158 Block Filters. Wasabi now syncs using BIP 158 filters without a backend/indexer, connecting directly to a user's node. This boosts sync speed, resilience, and allows full sovereignty without specific server dependency.
- Full Node Integration Rework. The old integration has been replaced with a simpler, more adaptable system. It’s not tied to a specific Bitcoin node fork, doesn’t need the node on the same machine as Wasabi, and requires no changes to the node’s setup.
- "Simply enable the RPC server on your node and point Wasabi to it," said the developers. This ensures all Bitcoin network activities—like retrieving blocks, fee estimations, block filters, and transaction broadcasting—go through your own node, avoiding reliance on third parties.
- Create & Recover SLIP 39 Shares. Users now create and recover wallets with multiple share backups using SLIP 39 standard.
"Special thanks to Trezor (SatoshiLabs) for sponsoring this amazing feature."
- Nostr Update Manager. This version implements a pioneering system with the Nostr protocol for update information and downloads, replacing reliance on GitHub. This enhances the project's resilience, ensuring updates even if GitHub is unavailable, while still verifying updates with the project's secure certificate.
- Updated Avalonia to v11.2.7, fixes for UI bugs (including restoring Minimize on macOS Sequoia).
- Added a configurable third-party fallback for broadcasting transactions if other methods fail.
- Replaced Windows Code Signing Certificate with Azure Trusted Signing.
- Many bug fixes, improved codebase, and enhanced CI pipeline.
- Added the option to avoid using any third-party Exchange Rate and Fee Rate providers (Wasabi can work without them).
- Rebuilt all JSON Serialization mechanisms avoiding default .NET converters. Serialization is now stricter.
Full Changelog: v2.5.1...v2.6.0
-
@ dfa02707:41ca50e3
2025-06-07 13:01:46Contribute to keep No Bullshit Bitcoin news going.
-
Version 1.3 of Bitcoin Safe introduces a redesigned interactive chart, quick receive feature, updated icons, a mempool preview window, support for Child Pays For Parent (CPFP) and testnet4, preconfigured testnet demo wallets, as well as various bug fixes and improvements.
-
Upcoming updates for Bitcoin Safe include Compact Block Filters.
"Compact Block Filters increase the network privacy dramatically, since you're not asking an electrum server to give you your transactions. They are a little slower than electrum servers. For a savings wallet like Bitcoin Safe this should be OK," writes the project's developer Andreas Griffin.
- Learn more about the current and upcoming features of Bitcoin Safe wallet here.
What's new in v1.3
- Redesign of Chart, Quick Receive, Icons, and Mempool Preview (by @design-rrr).
- Interactive chart. Clicking on it now jumps to transaction, and selected transactions are now highlighted.
- Speed up transactions with Child Pays For Parent (CPFP).
- BDK 1.2 (upgraded from 0.32).
- Testnet4 support.
- Preconfigured Testnet demo wallets.
- Cluster unconfirmed transactions so that parents/children are next to each other.
- Customizable columns for all tables (optional view: Txid, Address index, and more)
- Bug fixes and other improvements.
Announcement / Archive
Blog Post / Archive
GitHub Repo
Website -
-
@ dfa02707:41ca50e3
2025-06-07 13:01:45Contribute to keep No Bullshit Bitcoin news going.
This update brings key enhancements for clarity and usability:
- Recent Blocks View: Added to the Send tab and inspired by Mempool's visualization, it displays the last 2 blocks and the estimated next block to help choose fee rates.
- Camera System Overhaul: Features a new library for higher resolution detection and mouse-scroll zoom support when available.
- Vector-Based Images: All app images are now vectorized and theme-aware, enhancing contrast, especially in dark mode.
- Tor & P2A Updates: Upgraded internal Tor and improved support for pay-to-anchor (P2A) outputs.
- Linux Package Rename: For Linux users, Sparrow has been renamed to sparrowwallet (or sparrowserver); in some cases, the original sparrow package may need manual removal.
- Additional updates include showing total payments in multi-payment transaction diagrams, better handling of long labels, and other UI enhancements.
- Sparrow v2.2.1 is a bug fix release that addresses missing UUID issue when starting Tor on recent macOS versions, icons for external sources in Settings and Recent Blocks view, repackaged
.deb
installs to use older gzip instead of zstd compression, and removed display of median fee rate where fee rates source is set to Server.
Learn how to get started with Sparrow wallet:
Release notes (v2.2.0)
- Added Recent Blocks view to Send tab.
- Converted all bitmapped images to theme aware SVG format for all wallet models and dialogs.
- Support send and display of pay to anchor (P2A) outputs.
- Renamed
sparrow
package tosparrowwallet
andsparrowserver
on Linux. - Switched camera library to openpnp-capture.
- Support FHD (1920 x 1080) and UHD4k (3840 x 2160) capture resolutions.
- Support camera zoom with mouse scroll where possible.
- In the Download Verifier, prefer verifying the dropped file over the default file where the file is not in the manifest.
- Show a warning (with an option to disable the check) when importing a wallet with a derivation path matching another script type.
- In Cormorant, avoid calling the
listwalletdir
RPC on initialization due to a potentially slow response on Windows. - Avoid server address resolution for public servers.
- Assume server address is non local for resolution failures where a proxy is configured.
- Added a tooltip to indicate truncated labels in table cells.
- Dynamically truncate input and output labels in the tree on a transaction tab, and add tooltips if necessary.
- Improved tooltips for wallet tabs and transaction diagrams with long labels.
- Show the address where available on input and output tooltips in transaction tab tree.
- Show the total amount sent in payments in the transaction diagram when constructing multiple payment transactions.
- Reset preferred table column widths on adjustment to improve handling after window resizing.
- Added accessible text to improve screen reader navigation on seed entry.
- Made Wallet Summary table grow horizontally with dialog sizing.
- Reduced tooltip show delay to 200ms.
- Show transaction diagram fee percentage as less than 0.01% rather than 0.00%.
- Optimized and reduced Electrum server RPC calls.
- Upgraded Bouncy Castle, PGPainless and Logback libraries.
- Upgraded internal Tor to v0.4.8.16.
- Bug fix: Fixed issue with random ordering of keystore origins on labels import.
- Bug fix: Fixed non-zero account script type detection when signing a message on Trezor devices.
- Bug fix: Fixed issue parsing remote Coldcard xpub encoded on a different network.
- Bug fix: Fixed inclusion of fees on wallet label exports.
- Bug fix: Increase Trezor device libusb timeout.
Linux users: Note that the
sparrow
package has been renamed tosparrowwallet
orsparrowserver
, and in some cases you may need to manually uninstall the originalsparrow
package. Look in the/opt
folder to ensure you have the new name, and the original is removed.What's new in v2.2.1
- Updated Tor library to fix missing UUID issue when starting Tor on recent macOS versions.
- Repackaged
.deb
installs to use older gzip instead of zstd compression. - Removed display of median fee rate where fee rates source is set to Server.
- Added icons for external sources in Settings and Recent Blocks view
- Bug fix: Fixed issue in Recent Blocks view when switching fee rates source
- Bug fix: Fixed NPE on null fee returned from server
-
@ dfa02707:41ca50e3
2025-06-07 12:02:39Contribute to keep No Bullshit Bitcoin news going.
- The latest firmware updates for COLDCARD devices introduce two major features: COLDCARD Co-sign (CCC) and Key Teleport between two COLDCARD Q devices using QR codes and/or NFC with a website.
What's new
- COLDCARD Co-Sign: When CCC is enabled, a second seed called the Spending Policy Key (Key C) is added to the device. This seed works with the device's Main Seed and one or more additional XPUBs (Backup Keys) to form 2-of-N multisig wallets.
- The spending policy functions like a hardware security module (HSM), enforcing rules such as magnitude and velocity limits, address whitelisting, and 2FA authentication to protect funds while maintaining flexibility and control, and is enforced each time the Spending Policy Key is used for signing.
- When spending conditions are met, the COLDCARD signs the partially signed bitcoin transaction (PSBT) with the Main Seed and Spending Policy Key for fund access. Once configured, the Spending Policy Key is required to view or change the policy, and violations are denied without explanation.
"You can override the spending policy at any time by signing with either a Backup Key and the Main Seed or two Backup Keys, depending on the number of keys (N) in the multisig."
-
A step-by-step guide for setting up CCC is available here.
-
Key Teleport for Q devices allows users to securely transfer sensitive data such as seed phrases (words, xprv), secure notes and passwords, and PSBTs for multisig. It uses QR codes or NFC, along with a helper website, to ensure reliable transmission, keeping your sensitive data protected throughout the process.
- For more technical details, see the protocol spec.
"After you sign a multisig PSBT, you have option to “Key Teleport” the PSBT file to any one of the other signers in the wallet. We already have a shared pubkey with them, so the process is simple and does not require any action on their part in advance. Plus, starting in this firmware release, COLDCARD can finalize multisig transactions, so the last signer can publish the signed transaction via PushTX (NFC tap) to get it on the blockchain directly."
- Multisig transactions are finalized when sufficiently signed. It streamlines the use of PushTX with multisig wallets.
- Signing artifacts re-export to various media. Users are now provided with the capability to export signing products, like transactions or PSBTs, to alternative media rather than the original source. For example, if a PSBT is received through a QR code, it can be signed and saved onto an SD card if needed.
- Multisig export files are signed now. Public keys are encoded as P2PKH address for all multisg signature exports. Learn more about it here.
- NFC export usability upgrade: NFC keeps exporting until CANCEL/X is pressed.
- Added Bitcoin Safe option to Export Wallet.
- 10% performance improvement in USB upload speed for large files.
- Q: Always choose the biggest possible display size for QR.
Fixes
- Do not allow change Main PIN to same value already used as Trick PIN, even if Trick PIN is hidden.
- Fix stuck progress bar under
Receiving...
after a USB communications failure. - Showing derivation path in Address Explorer for root key (m) showed double slash (//).
- Can restore developer backup with custom password other than 12 words format.
- Virtual Disk auto mode ignores already signed PSBTs (with “-signed” in file name).
- Virtual Disk auto mode stuck on “Reading…” screen sometimes.
- Finalization of foreign inputs from partial signatures. Thanks Christian Uebber!
- Temporary seed from COLDCARD backup failed to load stored multisig wallets.
Destroy Seed
also removes all Trick PINs from SE2.Lock Down Seed
requires pressing confirm key (4) to execute.- Q only: Only BBQr is allowed to export Coldcard, Core, and pretty descriptor.
-
@ dfa02707:41ca50e3
2025-06-07 13:01:45- This version introduces the Soroban P2P network, enabling Dojo to relay transactions to the Bitcoin network and share others' transactions to break the heuristic linking relaying nodes to transaction creators.
- Additionally, Dojo admins can now manage API keys in DMT with labels, status, and expiration, ideal for community Dojo providers like Dojobay. New API endpoints, including "/services" exposing Explorer, Soroban, and Indexer, have been added to aid wallet developers.
- Other maintenance updates include Bitcoin Core, Tor, Fulcrum, Node.js, plus an updated ban-knots script to disconnect inbound Knots nodes.
"I want to thank all the contributors. This again shows the power of true Free Software. I also want to thank everyone who donated to help Dojo development going. I truly appreciate it," said Still Dojo Coder.
What's new
- Soroban P2P network. For MyDojo (Docker setup) users, Soroban will be automatically installed as part of their Dojo. This integration allows Dojo to utilize the Soroban P2P network for various upcoming features and applications.
- PandoTx. PandoTx serves as a transaction transport layer. When your wallet sends a transaction to Dojo, it is relayed to a random Soroban node, which then forwards it to the Bitcoin network. It also enables your Soroban node to receive and relay transactions from others to the Bitcoin network and is designed to disrupt the assumption that a node relaying a transaction is closely linked to the person who initiated it.
- Pushing transactions through Soroban can be deactivated by setting
NODE_PANDOTX_PUSH=off
indocker-node.conf
. - Processing incoming transactions from Soroban network can be deactivated by setting
NODE_PANDOTX_PROCESS=off
indocker-node.conf
.
- Pushing transactions through Soroban can be deactivated by setting
- API key management has been introduced to address the growing number of people offering their Dojos to the community. Dojo admins can now access a new API management tab in their DMT, where they can create unlimited API keys, assign labels for easy identification, and set expiration dates for each key. This allows admins to avoid sharing their main API key and instead distribute specific keys to selected parties.
- New API endpoints. Several new API endpoints have been added to help API consumers develop features on Dojo more efficiently:
- New:
/latest-block
- returns data about latest block/txout/:txid/:index
- returns unspent output data/support/services
- returns info about services that Dojo exposes
- Updated:
/tx/:txid
- endpoint has been updated to return raw transaction with parameter?rawHex=1
- The new
/support/services
endpoint replaces the deprecatedexplorer
field in the Dojo pairing payload. Although still present, API consumers should use this endpoint for explorer and other pairing data.
- New:
Other changes
- Updated ban script to disconnect inbound Knots nodes.
- Updated Fulcrum to v1.12.0.
- Regenerate Fulcrum certificate if expired.
- Check if transaction already exists in pushTx.
- Bump BTC-RPC Explorer.
- Bump Tor to v0.4.8.16, bump Snowflake.
- Updated Bitcoin Core to v29.0.
- Removed unnecessary middleware.
- Fixed DB update mechanism, added api_keys table.
- Add an option to use blocksdir config for bitcoin blocks directory.
- Removed deprecated configuration.
- Updated Node.js dependencies.
- Reconfigured container dependencies.
- Fix Snowflake git URL.
- Fix log path for testnet4.
- Use prebuilt addrindexrs binaries.
- Add instructions to migrate blockchain/fulcrum.
- Added pull policies.
Learn how to set up and use your own Bitcoin privacy node with Dojo here.
-
@ b1ddb4d7:471244e7
2025-06-07 13:01:07When Sergei talks about bitcoin, he doesn’t sound like someone chasing profits or followers. He sounds like someone about to build a monastery in the ruins.
While the mainstream world chases headlines and hype, Sergei shows up in local meetups from Sacramento to Cleveland, mentors curious minds, and shares what he knows is true – hoping that, with the right spark, someone will light their own way forward.
We interviewed Sergei to trace his steps: where he started, what keeps him going, and why teaching bitcoin is far more than explaining how to set up a node – it’s about reaching the right minds before the noise consumes them. So we began where most journeys start: at the beginning.
First Steps
- So, where did it all begin for you and what made you stay curious?
I first heard about bitcoin from a friend’s book recommendation, American Kingpin, the book about Silk Road (online drug marketplace). He is still not a true bitcoiner, although I helped him secure private keys with some bitcoin.
I was really busy at the time – focused on my school curriculum, running a 7-bedroom Airbnb, and working for a standardized test prep company. Bitcoin seemed too technical for me to explore, and the pace of my work left no time for it.
After graduating, while pursuing more training, I started playing around with stocks and maximizing my savings. Passive income seemed like the path to early retirement, as per the promise of the FIRE movement (Financial Independence, Retire Early). I mostly followed the mainstream news and my mentor’s advice – he liked preferred stocks at the time.
I had some Coinbase IOUs and remember sending bitcoin within the Coinbase ledger to a couple friends. I also recall the 2018 crash; I actually saw the legendary price spike live but couldn’t benefit because my funds were stuck amidst the frenzy. I withdrew from that investment completely for some time. Thankfully, my mentor advised to keep en eye on bitcoin.
Around late 2019, I started DCA-ing cautiously. Additionally, my friend and I were discussing famous billionaires, and how there was no curriculum for becoming a billionaire. So, I typed “billionaires” into my podcast app, and landed on We Study Billionaires podcast.
That’s where I kept hearing Preston Pysh mention bitcoin, before splitting into his own podcast series, Bitcoin Fundamentals. I didn’t understand most of the terminology of stocks, bonds, etc, yet I kept listening and trying to absorb it thru repetition. Today, I realize all that financial talk was mostly noise.
When people ask me for a technical explanation of fiat, I say: it’s all made up, just like the fiat price of bitcoin! Starting in 2020, during the so-called pandemic, I dove deeper. I religiously read Bitcoin Magazine, scrolled thru Bitcoin Twitter, and joined Simply Bitcoin Telegram group back when DarthCoin was an admin.
DarthCoin was my favorite bitcoiner – experienced, knowledgeable, and unapologetic. Watching him shift from rage to kindness, from passion to despair, gave me a glimpse at what a true educator’s journey would look like.
The struggle isn’t about adoption at scale anymore. It’s about reaching the few who are willing to study, take risks, and stay out of fiat traps. The vast majority won’t follow that example – not yet at least… if I start telling others the requirements for true freedom and prosperity, they would certainly say “Hell no!”
- At what point did you start teaching others, and why?
After college, I helped teach at a standardized test preparation company, and mentored some students one-on-one. I even tried working at a kindergarten briefly, but left quickly; Babysitting is not teaching.
What I discovered is that those who will succeed don’t really need my help – they would succeed with or without me, because they already have the inner drive.
Once you realize your people are perishing for lack of knowledge, the only rational thing to do is help raise their level of knowledge and understanding. That’s the Great Work.
I sometimes imagine myself as a political prisoner. If that were to happen, I’d probably start teaching fellow prisoners, doctors, janitors, even guards. In a way we already live in an open-air prison, So what else is there to do but teach, organize, and conspire to dismantle the Matrix?
Building on Bitcoin
- You hosted some in-person meetups in Sacramento. What did you learn from those?
My first presentation was on MultiSig storage with SeedSigner, and submarine swaps through Boltz.exchange.
I realized quickly that I had overestimated the group’s technical background. Even the meetup organizer, a financial advisor, asked, “How is anyone supposed to follow these steps?” I responded that reading was required… He decided that Unchained is an easier way.
At a crypto meetup, I gave a much simpler talk, outlining how bitcoin will save the world, based on a DarthCoin’s guide. Only one person stuck around to ask questions – a man who seemed a little out there, and did not really seem to get the message beyond the strength of cryptographic security of bitcoin.
Again, I overestimated the audience’s readiness. That forced me to rethink my strategy. People are extremely early and reluctant to study.
- Now in Ohio, you hold sessions via the Orange Pill App. What’s changed?
My new motto is: educate the educators. The corollary is: don’t orange-pill stupid normies (as DarthCoin puts it).
I’ve shifted to small, technical sessions in order to raise a few solid guardians of this esoteric knowledge who really get it and can carry it forward.
The youngest attendee at one of my sessions is a newborn baby – he mostly sleeps, but maybe he still absorbs some of the educational vibes.
- How do local groups like Sactown and Cleveland Bitcoiners influence your work?
Every meetup reflects its local culture. Sacramento and Bay Area Bitcoiners, for example, do camping trips – once we camped through a desert storm, shielding our burgers from sand while others went to shoot guns.
Cleveland Bitcoiners are different. They amass large gatherings. They recently threw a 100k party. They do a bit more community outreach. Some are curious about the esoteric topics such as jurisdiction, spirituality, and healthful living.
I have no permanent allegiance to any state, race, or group. I go where I can teach and learn. I anticipate that in my next phase, I’ll meet Bitcoiners so advanced that I’ll have to give up my fiat job and focus full-time on serious projects where real health and wealth are on the line.
Hopefully, I’ll be ready. I believe the universe always challenges you exactly to your limit – no less, no more.
- What do people struggle with the most when it comes to technical education?
The biggest struggle isn’t technical – it’s a lack of deep curiosity. People ask “how” and “what” – how do I set up a node, what should one do with the lightning channels? But very few ask “why?”
Why does on-chain bitcoin not contribute to the circular economy? Why is it essential to run Lightning? Why did humanity fall into mental enslavement in the first place?
I’d rather teach two-year-olds who constantly ask “why” than adults who ask how to flip a profit. What worries me most is that most two-year-olds will grow up asking state-funded AI bots for answers and live according to its recommendations.
- One Cleveland Bitcoiner shows up at gold bug meetups. How valuable is face-to-face education?
I don’t think the older generation is going to reverse the current human condition. Most of them have been under mind control for too long, and they just don’t have the attention span to study and change their ways.
They’re better off stacking gold and helping fund their grandkids’ education. If I were to focus on a demographic, I’d go for teenagers – high school age – because by college, the indoctrination is usually too strong, and they’re chasing fiat mastery.
As for the gold bug meetup? Perhaps one day I will show up with a ukulele to sing some bitcoin-themed songs. Seniors love such entertainment.
- How do you choose what to focus on in your sessions, especially for different types of learners?
I don’t come in with a rigid agenda. I’ve collected a massive library of resources over the years and never stopped reading. My browser tab and folder count are exploding.
At the meetup, people share questions or topics they’re curious about, then I take that home, do my homework, and bring back a session based on those themes. I give them the key takeaways, plus where to dive deeper.
Most people won’t – or can’t – study the way I do, and I expect attendees to put in the work. I suspect that it’s more important to reach those who want to learn but don’t know how, the so-called nescient (not knowing), rather than the ignorant.
There are way too many ignorant bitcoiners, so my mission is to find those who are curious what’s beyond the facade of fake reality and superficial promises.
That naturally means that fewer people show up, and that’s fine. I’m not here for the crowds; I’m here to educate the educators. One bitcoiner who came decided to branch off into self-custody sessions and that’s awesome. Personally, I’m much more focused on Lightning.
I want to see broader adoption of tools like auth, sign-message, NWC, and LSPs. Next month, I’m going deep into eCash solutions, because let’s face it – most newcomers won’t be able to afford their own UTXO or open a lightning channel; additionally, it has to be fun and easy for them to transact sats, otherwise they won’t do it. Additionally, they’ll need to rely on
-
@ 8bad92c3:ca714aa5
2025-06-07 13:01:44Key Takeaways
In this episode of TFTC, energy economist Anas Alhajji outlines a profound shift in U.S. foreign policy under Trump—away from military intervention and toward transactional diplomacy focused on trade, reconstruction, and curbing Chinese and Russian influence in the Middle East. He highlights Trump’s quiet outreach to Syria as emblematic of the U.S.'s strategic flexibility in legitimizing former adversaries when economically beneficial. Alhajji dismisses BRICS as a fractured bloc incapable of rivaling the U.S.-led order and insists the dollar and petrodollar remain dominant. On energy, he warns that despite favorable fundamentals, prices are suppressed by political confusion, underinvestment, and an aging power grid ill-prepared for the AI and urbanization boom. He also contends that Iran is stalling negotiations to buy time for nuclear advancement and that any deal will be superficial. Finally, Alhajji debunks the myth of Trump being pro-oil, noting his long-standing hostility toward the industry and explaining why a repeat of his past energy boom is implausible given today’s financial and structural constraints.
Best Quotes
- “BRICS is a paper tiger. Everything about BRICS is what China does—and that’s it.”
- “The dollar is here to stay. The petrodollar is here to stay. End of story.”
- “Trump hates the oil industry. He always classified it as an enemy.”
- “Energy projects are 30- to 40-year investments, but politicians think in 4-year cycles. That’s where the disconnect lies.”
- “People think shale will boom again. It won’t. The model changed from ‘drill baby drill’ to ‘control baby control.’”
- “The real story of Trump’s trip wasn’t about politics—it was investment, investment, investment.”
- “Without massive investment in the grid and gas turbines, blackouts will become the norm—even in rich countries like Kuwait.”
- “Iran and China have perfected the game of oil exports. Sanctions are just theater at this point.”
Conclusion
Anas Alhajji’s conclusion challenges conventional narratives, arguing that global power is shifting from military dominance to economic leverage, infrastructure investment, and energy control. He presents a nuanced view of U.S. foreign policy under Trump, emphasizing the strategic importance of trade and reconstruction over regime change. As energy demand soars and geopolitical risks mount, Alhajji warns that the real dangers lie not in foreign adversaries, but in policy confusion, infrastructural lag, and complacency—making this episode a crucial listen for anyone seeking to understand the high-stakes intersection of energy, economics, and diplomacy.
Timestamps
0:00 - Intro
0:48 - Syria and US diplomacy in Middle East
12:50 - Trump in the Middle East
18:12 - Fold & Bitkey
19:48 - Iran - Nuclear program and PR
33:53 - Unchained
34:22 - Crude markets, trade war and US debt
54:28 - Trump's energy stance
1:05:46 - Energy sector challanges
1:14:44 - Policy recommendations
1:21:18 - AI and bitcoinTranscript
(00:00) oil prices market fundamentals support higher price than where we are today. But because of this confusion, everyone is scared of low economic growth and that is a serious problem. The US media ignored part of Trump's speech when he said we are not about nation building and they refer to Afghanistan and Iraq.
(00:15) Look at them. This is a criticism of George W. Bush. We have groups that are talking about the demise of the dollar, the rise of bricks. Bricks is a paper tiger. Everything about bricks is what China does and that's it. The dollar is here to stay and the petro dollar is here to stay.
(00:31) The perception is that the Trump administration is cold but the reality Trump hates the oil [Music] indust. How are you? Very good. Very good. Thank you. As you were telling me, you've been a bit sleepd deprived this week trying to keep up with what's going on. Oh, absolutely. I mean, Trump keeps us on our toes uh all the time.
(01:06) In fact, I plan certain things for the weekend and Trump will say something or he will do something and all of a sudden we get busy again. Uh so clients are not going to wait for you until you finish your work. Basically, they want to know what's going on. So what is going on? What what how profound were the events in the Middle East? These are very uh very profound changes basically because it is very clear that if you look at the last 15 years uh and you look at the growth uh in the Middle East, you look at the growth of Saudi Arabia and uh the
(01:41) role of Turkey for example in the region uh it just just amazing be beyond any uh any thoughts. Uh in fact both of them Turkey and Saudi Arabia are part of the G20. Uh so they have economic influence and they have political influence. And of course the icing on the cake for those who are familiar with the region is to recognize the Syrian government and meet with the Syrian uh president.
(02:11) Uh this is a major a major change in economics and politics uh of the Middle East. Let's touch on that Syria uh topic for a while because I think a lot of people here in the United States were a bit shocked at how sort of welcoming President Trump was towards the new Syrian president considering the fact that uh he was considered an enemy not too long ago here in the United States.
(02:42) What first of all it's a fact of life for those who would like to check the history of politics. There were many people around the world who were classified or they were on the terrorism list and then they became friends of the United States or they were became heroes. I mean Nelson Mandela is one of them. You look at Latin America, there are presidents in Latin America who were uh the enemy of the United States and then they became uh uh cooperative with the United States and the United States recognized their governments and the result of their uh elections. Uh so
(03:15) we've seen this historically uh several uh several times around the world and as they say freedom fighters for some basically are the enemies and the terrorists for for others etc. So uh what we've seen that's why the the visit is very important that the recognition of this government is very important. uh the fact on the ground that uh the president of Syria had the power on the ground uh he had the the the people on the ground and he had the control on the ground and whatever he's been he's been doing since he came into power until now
(03:52) he done all the right steps u and people loved him I mean everyone who went to Syria whether the Syrians who left Syria 40 years ago or uh the visitors who are coming to Syria, they will tell you, "We have never seen the Syrian people as happy as we've seen them today, despite the fact that they they live in misery.
(04:17) They don't have um 8 million people without housing. Uh there is barely any electricity in most of the country. There is no internet. There is barely any food. The uh inflation is rampant, etc. But people are happy because they lived in fear for a very long time. And uh the steps they have taken. For example, the uh ministers in the previous government uh are still there and they are still in the housing of the government.
(04:49) They still have the drivers. They still have the cars from the previous government. They still have it until today. So uh they they were classified as enemies before. But all of a sudden now you have a new government that is uh accepting them. Uh so we we see some changes on the ground that are positive and we'll see how these things will go given that the area around them basically has been unstable for a very long time.
(05:17) how because I don't the the news when I was actually it was surreal for me because my first trip to the Middle East was last December when it was literally f flying over Syria to Abu Dhabi when uh um Assad was getting thrown out and it was pretty surreal to be in that region of the world.
(05:43) How as it pertains to like religious minorities within Syria moving forward is there protractions protections there? Um well let me just uh I want to emphasize one point that is very important. What did the interest of Turkey, Saudi Arabia and the United States in Syria if remember Syria was controlled by Iran and was controlled by the Russians.
(06:09) So in a sense it becomes uh kind of an imperative that taking it away from Iran and Russia and not bringing Iran or Russia back is extremely important. Now the Russians are still there and they have their own base but at least they are not bombing the Syrians and not killing them anymore. But the idea here is taking Syria out of Iran and Russia and probably later on if they kick the Russians out, Russians will not have access to the Mediterranean.
(06:37) Uh so there is an interest uh of all parties basically to take Russia out of Iran and um out of uh Syria regardless the country is uh devastated and it creates massive opportunities for US companies on all levels and uh we've seen a contract uh done recently with you mentioned Abu Dhabi uh uh a contract uh uh with the UA a basically to revamp all the Syrian ports and work on the Syrian ports.
(07:13) Uh so such contracts basically uh when you have a country that has nothing and it's completely devastated the whole infrastructure is devastated. Who is going to build it? If the uh what the Chinese, the Russians, so who who are going to build it? So, uh I think there is a a big room for US companies and others basically to come in and uh literally help on one side and make money on the other.
(07:38) Yeah, I think that that's what I'm trying to discern. What was this convoy from the United States to the Middle East this week signali -
@ 8bad92c3:ca714aa5
2025-06-07 13:01:41MicroStrategy's Debt-Financed Bitcoin Strategy Will Force a Reckoning Within 18 Months - Jessy Gilger
Jessy Gilger from Unchained Capital warned about the sustainability of MicroStrategy's model and its derivatives like MSTY. He predicts that as more companies adopt Bitcoin treasury strategies, "the P&L will matter more as the balance sheet gets commoditized." Within the next 18 months, he expects the current arbitrage opportunities that MicroStrategy exploits will diminish as Bitcoin reaches higher liquidity levels and more competitors enter the space.
His most concerning prediction involves MSTY specifically, which currently offers distributions annualized at 120% - far exceeding the 16-22% he calculates as reasonable from covered call strategies. "If a whale wants out of MSTY in size... they could sell those derivative positions into an illiquid market where there's no bid," potentially causing a 95% collapse similar to what happened with gold mining ETFs during COVID. He advises investors to consider "private pools" for options strategies rather than pooled products where "you're in the pool with everyone else" and subject to forced liquidations.
Pensions Will Drive the Next Major Bitcoin Adoption Wave in 2026-2027 - Adam Back
Adam Back sees institutional adoption accelerating dramatically as pension funds begin allocating to Bitcoin. "The institutional cover of some of the bigger entities that people would reference... you don't get fired for following BlackRock's recommendation," he explained. With BlackRock now suggesting 2% portfolio allocations and the infrastructure finally in place through Blockstream's new Gannett Trust Company, the barriers for institutional adoption are falling rapidly.
Back predicts this will create a "snowball" effect as pension funds realize Bitcoin can help address their massive unfunded liabilities. He noted that financial institutions offering Bitcoin products are "slow movers" with "policies and training materials and guidance that they got to get through," but once activated, the scale will dwarf current retail and ETF flows. The combination of pension fund allocations, continued nation-state adoption, and the mathematical scarcity of Bitcoin leads him to view even $100,000 as "cheap" given where the market is headed.
Traditional Bond Markets Will Collapse as Bitcoin Becomes the Escape Hatch - Sean Bill
Sean Bill sees a massive shift coming as bond markets deteriorate globally. "You peel back the onion. So who benefits from financial repression, right. And inflating your way out of assets," he explained. With Japanese bond yields blowing out and U.S. 30-year yields jumping 10 basis points in a single day, Bill predicts we're witnessing the early stages of a sovereign debt crisis that will drive unprecedented flows into Bitcoin.
He pointed to Japan's MetaPlanet as a preview of what's coming: "The whole bond market of Japan just flowed into a hotel company." As pension funds and institutions realize they can't meet obligations through traditional fixed income, Bitcoin will become the only viable alternative. Bill believes this transition will accelerate once fiduciaries understand Bitcoin's role as "pristine collateral" that can help them "chip away at those unfunded liabilities." His experience getting Santa Clara County's pension into Bitcoin in 2021 showed him firsthand how a 1-3% allocation at $17,000 could have "wiped out the unfunded liability" as Bitcoin approached $100,000.
Adam Back & Sean Bill Podcast Here
Blockspace conducts cutting-edge proprietary research for investors.
New Bitcoin Mining Pool Flips Industry Model: "Plebs Eat First" Could Threaten Corporate Dominance
UTXO Management's explosive report forecasts unprecedented institutional demand that could absorb 20% of Bitcoin's circulating supply by 2026. Bitcoin ETFs shattered records with $36.2 billion in year-one inflows, crushing every commodity ETF launch—and they're projected to hit $100 billion annually by 2027.
The real story? ETFs are just the appetizer. Five massive catalysts are converging: wealth platforms eyeing $120 billion from a modest 0.5% allocation across $60 trillion AUM; corporations following MicroStrategy's playbook now holding 803,143 BTC; potential U.S. Strategic Reserve of 1 million BTC; 13 states with active Bitcoin reserve bills; and the rise of BTCfi yield strategies offering 2-15% returns.
The game-changer: these aren't day traders. CFOs, treasurers, and governments are structurally locked buyers seeking BTC-denominated yields, not quick profits. With FASB mark-to-market accounting removing impairment headaches and regulatory clarity accelerating globally, institutions face a stark reality—allocate now or chase exposure at dramatically higher prices.
This isn't another cycle. It's the institutional colonization of Bitcoin.
Subscribe to them here (seriously, you should): https://newsletter.blockspacemedia.com/
Ten31, the largest bitcoin-focused investor, has deployed $150M across 30+ companies through three funds. I am a Managing Partner at Ten31 and am very proud of the work we are doing. Learn more at ten31.vc/invest.
Get this newsletter sent to your inbox daily: https://www.tftc.io/bitcoin-brief/
STACK SATS hat: https://tftcmerch.io/
Subscribe to our YouTube channels and follow us on Nostr and X:
@media screen and (max-width: 480px) { .mobile-padding { padding: 10px 0 !important; } .social-container { width: 100% !important; max-width: 260px !important; } .social-icon { padding: 0 !important; } .social-icon img { height: 32px !important; width: 32px !important; } .icon-cell { padding: 0 4px !important; } } .mj-column-per-33-333333333333336 { width: 25% !important; max-width: 25%; } .moz-text-html .mj-column-per-33-333333333333336 { width: 25% !important; max-width: 25%; } /* Helps with rendering in various email clients */ body { margin: 0 !important; padding: 0 !important; -webkit-text-size-adjust: 100% !important; -ms-text-size-adjust: 100% !important; } img { -ms-interpolation-mode: bicubic; } /* Prevents Gmail from changing the text color in email threads */ .im { color: inherit !important; }
-
@ 8bad92c3:ca714aa5
2025-06-07 13:01:39Marty's Bent
J.P. Morgan CEO Jamie Dimon has long been an outspoken skeptic and critic of bitcoin. He has called Bitcoin a speculative asset, a fraud, a pet rock, and has opined that it will inevitably blow up. A couple of years ago, he was on Capitol Hill saying that if he were the government, he would "close it down". Just within the last month, he was on Fox Business News talking with Maria Bartiromo, proclaiming that the U.S. should be stockpiling bullets and rare earth metals instead of bitcoin. It's pretty clear that Jamie Dimon, who is at the helm of the most powerful and largest bank in the world, does not like bitcoin one bit.
Evidence below:
via Bitcoin Magazine
via me
via CNBC
Despite Dimon's distinguished disdain for Bitcoin, J.P. Morgan cannot deny reality. The CEO of the largest bank in the world is certainly a powerful man, but no one individual, even in the position that Jamie Dimon is in, is more powerful than the market. And the market has spoken very clearly, it is demanding bitcoin. The Bitcoin ETFs have been the most successful ETFs in terms of pace of growth since their launch. They've accumulated tens of billions of dollars in AUM in a very short period of time. Outpacing the previous record set by the gold ETF, GLD.
Whether or not Jamie Dimon himself likes Bitcoin doesn't matter. J.P. Morgan, as the largest bank in the world and a publicly traded company, has a duty to shareholders. And that duty is to increase shareholder value by any ethical and legal means necessary. Earlier today, J.P. Morgan announced plans to offer clients financing against their Bitcoin ETFs, as well as some other benefits, including having their bitcoin holdings recognized in their overall net worth and liquid assets, similar to stocks, cars, and art, which will be massive for bitcoiners looking to get mortgages and other types of loans.
via Bloomberg
I've talked about this recently, but trying to buy a house when most of your liquid net worth is held in bitcoin is a massive pain in the ass. Up until this point, if you wanted to have your bitcoin recognized as part of your net worth and count towards your overall credit profile, you would need to sell some bitcoin, move it to a bank account, and have it sit there for a certain period of time before it was recognized toward your net worth. This is not ideal for bitcoiners who have sufficient cash flows and don't want to sell their bitcoin, pay the capital gains tax, and risk not being able to buy back the amount of sats they were forced to sell just to get a mortgage.
It's not yet clear to me whether or not J.P. Morgan will recognize bitcoin in cold storage toward their clients' net worth and credit profile, or if this is simply for bitcoin ETFs only. However, regardless, this is a step in the right direction and a validation of something that many bitcoiners have been saying for years. Inevitably, everyone will have to bend the knee to bitcoin. Today, it just happened to be the largest bank in the world. I expect more of this to come in the coming months, years, and decades.
Lyn Alden likes to say it in the context of the U.S. national debt and the fiscal crisis, but it also applies to bitcoin adoption and the need for incumbents to orient themselves around the demands of individual bitcoiners; nothing stops this train.
Real Estate Correction Coming
Real estate expert Leon Wankum shared his perspective on why property prices need to find a new equilibrium by 2026. He pointed to the 18-year property cycle theory, noting we're at the end of the current cycle with a massive imbalance - 34% more sellers than buyers, the highest gap since records began in 2013. Leon explained that sellers still have unrealistic expectations based on 2021-2022 peaks, while buyers face a fundamentally different reality with higher borrowing costs.
"We need a price equilibrium. We need demand and supply prices to match. It's going to take a long time, I think." - Leon Wankum
Leon doesn't expect a catastrophic crash, however. He emphasized that the financial system depends too heavily on real estate as collateral for authorities to allow a complete collapse. With interest rates likely staying above 3% to combat inflation, he sees a healthy correction rather than devastation - a necessary adjustment that creates opportunities for patient buyers who understand the new market dynamics.
Check out the full podcast here for more on Bitcoin treasury strategies, dual collateralization, and corporate BTC adoption
Headlines of the Day
California May Seize Idle Bitcoin After 3 Years - via X
Semler Scientific Buys $20M More Bitcoin, Holds $467M - via X
US Home Sellers Surge as Buyers Hit 4-Year Low - via X
Get our new STACK SATS hat - via tftcmerch.io
Take the First Step Off the Exchange
Bitkey is an easy, secure way to move your Bitcoin into self-custody. With simple setup and built-in recovery, it’s the perfect starting point for getting your coins off centralized platforms and into cold storage—no complexity, no middlemen.
Take control. Start with Bitkey.
Use the promo code *“TFTC20”* during checkout for 20% off
Ten31, the largest bitcoin-focused investor, has deployed $150.00M across 30+ companies through three funds. I am a Managing Partner at Ten31 and am very proud of the work we are doing. Learn more at ten31.vc/invest.
Final thought...
I feel old.
Get this newsletter sent to your inbox daily: https://www.tftc.io/bitcoin-brief/
Subscribe to our YouTube channels and follow us on Nostr and X:
@media screen and (max-width: 480px) { .mobile-padding { padding: 10px 0 !important; } .social-container { width: 100% !important; max-width: 260px !important; } .social-icon { padding: 0 !important; } .social-icon img { height: 32px !important; width: 32px !important; } .icon-cell { padding: 0 4px !important; } } .mj-column-per-33-333333333333336 { width: 25% !important; max-width: 25%; } .moz-text-html .mj-column-per-33-333333333333336 { width: 25% !important; max-width: 25%; } /* Helps with rendering in various email clients */ body { margin: 0 !important; padding: 0 !important; -webkit-text-size-adjust: 100% !important; -ms-text-size-adjust: 100% !important; } img { -ms-interpolation-mode: bicubic; } /* Prevents Gmail from changing the text color in email threads */ .im { color: inherit !important; }
-
@ bf47c19e:c3d2573b
2025-06-07 12:49:02Originalni tekst na armantheparman.com / Autor: @parman_the
Puno sam razmišljao o ovom pitanju i konačno se osećam spremnim da ponudim sveobuhvatan odgovor.
UKRATKO – ako imamo novac rođen na slobodnom tržištu, u slobodnom društvu, koji treba da zameni fiat novac, onda on ne može biti ravnomerno raspoređen od samog početka dok istovremeno svi ljudi cene njegovu vrednost – nužno mora proći kroz period kada ga samo nekolicina ljudi vrednuje.
Jednakost i pravičnost
Želim da počnem sa značenjem reči „pravično“. Mnogi ljudi, posebno oni koji pripadaju političkoj levici, smatraju da nešto mora biti jednako da bi bilo pravično. Na prvi pogled i bez dubljeg razmišljanja, to deluje ispravno ali zapravo je veoma netačno. Možda verujete da je jednakost instinktivno očekivanje od strane jednakih ljudi. Greška nastaje kada se taj prirodni instinkt nesvesno prenosi na druge stvari.
Zamislimo prirodan osećaj nepravde koji dete može doživeti kada njegov brat ili sestra (vršnjak) dobiju više slatkiša od njega – „Zašto on/ona zaslužuje više od mene?“ Ovo uvodi dodatnu promenljivu – „zaslužiti“, o čemu ću govoriti u kasnijem odeljku. Za sada ću se fokusirati na jednakost i pravičnost.
Nerazumno je i nelogično očekivati da sve u prirodi bude jednako. S obzirom na to da u prirodi postoje razlike u sposobnostima i drugim karakteristikama, rezultati tih razlika će, naravno, biti nejednako raspoređeni. Poricanje toga znači poricanje stvarnosti i poricanje uzročno-posledične veze. Mešati se u to znači „igrati se Boga“.
Na primer, neka stabla dobijaju više sunčeve svetlosti i kiše od drugih i bujnije napreduju; neke životinje jedu druge životinje; neki ljudi su mudriji, jači, brži, privlačniji ili produktivniji od drugih. Takva je priroda i to je srž prirodne selekcije i evolucije i na taj način prirodni ekosistemi postižu ravnotežu.
Iako biste možda želeli da se mešate u ravnotežu prirode u svojoj bašti s povrćem, primenjivanje svojih želja na živote drugih ljudi protiv njihove volje može biti nemoralno. Na primer, oduzimanje bogatstva/imetka (silom) koje je zaradio neko ko je sposobniji ili više doprinosi društvu i ustupanje tog bogatstva nekome siromašnom i manje produktivnom (suština socijalizma) je autoritativno, dugoročno kontraproduktivno za sve i vodi ka konačnom kolapsu civilizacije (Ajn Rend je ovo istraživala u svom remek-delu od 1244 strane, romanu Pobunjeni Atlas (engl. Atlas Shrugged), koji toplo preporučujem). Ovo „forsiranje“ jednakih nagrada za rezultate različitih sposobnosti koristi „pravičnost“ kao opravdanje ali je suštinski NEPRAVIČNO, jer ide protiv prirode.
Uzimanje (silom) od onih koji su zaradili više i preraspodela onima koji su zaradili manje predstavlja ideal JEDNAKOSTI u ishodima ali, da bi se to postiglo, ljude tretirate nejednako.
Nagrade raspoređene na osnovu prirodnih razlika (npr. sposobnosti, predviđanja, iskustva) ili razlika u uloženom trudu, bez mešanja spoljnih sila koje nameću svoju volju (autoritarizam) – to je PRAVIČNOST. Ovo je u skladu s jednakim tretiranjem ljudi shodno prirodnim zakonima, pa čak i zakonima vlasti.
Alternativni pogled na pravičnost je da nagrade treba da se zasnivaju na moralu – iako to zvuči lepo, to je čista fantazija.
Ljudska prava
Ništa od ovoga ne znači da neke stvari ne bi trebalo da budu jednake. Na primer, ljudska prirodna prava su zapravo jednaka. Ona NE zavise od sposobnosti, potreba, morala, kriminalne prošlosti, političkih uverenja, sreće, truda, statusa, važnosti, slave – nimalo.
Ona se zasnivaju na tome što smo ljudi.
Zašto je ovo relevantno postaće jasno veoma brzo. Svi imaju jednaka prirodna prava. Neki primeri su pravo na život, slobodu, govor i privatnost. Ova prava postoje bez potrebe za dozvolom da postoje – mogu biti prekršena ili poštovana/zaštićena – ali nisu nam dodeljena ili data, niti nam mogu biti oduzeta. Ona su nezavisna od zakona.
Da pojasnim, sva ova prava ne zahtevaju da neko drugi nešto uradi za vas. „Pravo na život“ izgleda kao da krši ovo pravilo ali zapravo bi trebalo da se zove „pravo da ne budete ubijeni“; niko nema ljudsko pravo da primorava nekoga da ga održava u životu. Slično je i sa slobodom govora, niko nema pravo da mu se obezbedi platforma za govor ali ima pravo da ne bude ućutkan. Prava značenja se mogu izgubiti u jednostavnom jeziku/rečima koje smo navikli da koristimo.
Sledeće je veoma važno razumeti: prirodno ljudsko pravo je nešto što imamo na osnovu našeg inteligentnog RAZMIŠLJANJA o tome šta je ispravno i pogrešno i ne podleže diskreciji autoritativne vlasti. Međutim, autoritativna vlast ima sposobnost da to pravo prekrši ili zaštiti.
To što imam ljudska prava ne znači da će trenutni autoritet današnjice (vlada) zaštititi ta prava. Umesto toga, odgovornost dobronamerne autoritativne vlasti je da ih zaštiti.
Da sumiram:
Prirodno ljudsko pravo je nešto što svi ljudi imaju (ali zakon ne štiti uvek).
Ovo se razlikuje od zakonskog prava:
Zakonsko pravo je nešto što daje autoritativna vlast.
Sada kada su ljudska prava površno objašnjena, želim da ponovo naglasim nešto veoma važno:
Dok je jednakost ljudskih prava prirodna stvar koju treba očekivati između svih ljudi, veoma je različito očekivati jednakost nagrada za naše sposobnosti ili trud. Da bismo postigli jednake nagrade, moramo ljude tretirati različito, što je suštinski nepravično.
Ne mislim da je potreban dalji logički argument. Ako se još uvek ne slažete, predlažem da ponovo pročitate ono što sam rekao i razmislite o tome.
Povezujući se sa temom ovog teksta, distribucijom bitkoina – bogatstvo nije ljudsko pravo, ono je NAGRADA. Jednakost bogatstva između ljudi takođe nije ljudsko pravo. Međutim, ljudsko je pravo biti slobodan da posedujete imovinu i da vaša imovina ne bude narušena. Odgovornost svake postojeće vlade je da zaštiti ta ljudska prava. Za dalje čitanje, pogledajte libertarijanizam.
Zasluživanje
Vraćajući se na „zasluživanje“ – ovo je ljudski konstrukt, zasnovan na dobru i zlu: „Dobri ljudi zaslužuju dobre stvari, a loši ljudi zaslužuju kaznu.“
U stvarnosti, međutim, loše stvari se dešavaju dobrim ljudima, a dobre stvari se dešavaju lošim ljudima. Mnogima je teško da to prihvate.
Koristeći logiku, i dalje može imati savršenog smisla zašto ljudi ne dobijaju uvek ono što zaslužuju – jer priroda ne dodeljuje nagrade savršeno na osnovu ljudskih konstrukata dobra i zla.
Čovek je taj koji pokušava da nadgleda ravnotežu između posledica i morala. Ljudi zamišljaju kako stvari treba izgledaju ali što više budu obraćali pažnju na prirodu, to će više biti razočarani stvarnošću.
Umesto toga, u prirodi postoje uzrok i posledica. Postoji određena predvidljivost ali takođe postoji i izvesna slučajnost, sviđalo se to nama ili ne. Mnogima se to ne sviđa.
Ne shvatite ovo kao poziv na ukidanje nagrađivanja i kažnjavanja u društvu. Ono što razmatram je da nije moguće da čovečanstvo uspešno nadgleda celokupnu prirodu na osnovu onoga što je zasluženo (koristeći moralnu definiciju „zasluživanja“). Pretpostavljam da bi visoko napredna autoritarna država mogla pokušati.
Pravična raspodela novog novca
Da bismo odlučili kako bi distribucija Bitkoina trebalo da izgleda u idealnom svetu, najpre razmotrimo šta je poželjno I moguće za novi novac, a zatim možemo videti koliko je Bitkoinov dizajn to veličanstveno postigao:
Kreiraćemo hipotetički novi novac. Dajmo mu neke neupitne karakteristike relevantne za ovu diskusiju (ovo nije potpuna lista):
- Novac će biti digitalan.
- Jer fizički novac, zlato, nije uspeo.
-
U globalnom društvu, sa bilo kojim fizičkim novcem (nedigitalnim), potrebne su treće strane (za digitalizaciju fizičkog novca i omogućavanje plaćanja na daljinu), što dovodi do razvoja fiat novca.
-
Novac će biti rođen na slobodnom tržištu.
-
Odnosno, vrednost nije nametnuta zakonom. Setimo se da je Bitkoin izmišljen da odvoji novac od države.
-
Niko ne kontroliše njegovo izdavanje niti može promeniti ponudu novca.
-
Pristup ovom novcu dostupan je svima.
-
U razumnim granicama – ne treba novoj monetarnoj jedinici nametati teret rešavanja svakog zamislivog problema u svetu
-
Zavisnost od država ili banaka za čuvanje novca u ime pojedinaca neće postojati, iako je to dozvoljeno i opcionalno.
- Ako je to obavezno, ponovo ćemo završiti sa fiat novcem.
Sada moramo distribuirati ovaj novac koji smo upravo stvorili. Kako to učiniti što je „pravičnije“ moguće? Hajde da pokušamo da damo svakom čoveku na Zemlji jednak deo, kao jedan razuman pokušaj „pravičnosti“.
Da bi to bilo izvodljivo, svaki čovek mora biti u nekoj bazi podataka – pretpostavimo da to imamo. Možda moramo prihvatiti da će neki ljudi naći način da budu višestruko upisani u toj bazi i tako prevare sistem ali zamislimo da pronađemo način da to uglavnom sprečimo.
Sada moramo dodeliti sredstva tako da svaka osoba ima privatni ključ za svoja sredstva i niko drugi – to je suština digitalnog vlasništva. Ko god ima privatni ključ ima moć da troši sredstva i time poseduje novac. Dakle, svaki čovek mora biti jedina osoba koja ima pristup svojim privatnim ključevima (uz neke izuzetke kada je u pitanju pomoć od strane pouzdanih članova porodice). Pretpostavimo da postoji neko novo tehnološko otkriće koje to nekako čini izvodljivim i lakim za sve, bez potrebe za centralnom institucijom poput banke koja bi obezbedila sigurnost.
Veoma važno i gotovo neostvarivo – svi koji imaju privatni ključ treba da ga zaštite – odnosno, ne smeju ga izgubiti, trebalo bi da znaju njegovu važnost i da im ne bude ukraden (katastrofe sa privatnim ključevima dogodile su se mnogim ranim korisnicima Bitkoina) ili da ne budu prevareni da ga poklone ili prodaju jeftino.
Za sada nam dobro ide ali uz neke optimistične pretpostavke.
Zamislimo da nekim čudom možemo efikasno preneti informacije o novim novčićima i privatnim ključevima svim ljudima na Zemlji bez obzira na njihove okolnosti (u razumnim granicama). Naravno, oni bi na početku imali NULTU vrednost (jer su besplatno stvoreni i nemaju drugu upotrebu osim kao novac).
Setimo se, kao što je navedeno u početnim uslovima, ovde nema autoritativne vlasti i ne možemo prisiliti ljude da vrednuju ovaj novac i koriste ga, kao što države koriste silu za fiat novac. Ovde je svrha oslobađanje od fiat novca.
Čestitamo, sada imamo hipotetičku alternativu Bitkoinu koja je RAVNOMERNO raspoređena svakom čoveku na Zemlji i svaki čovek ima kontrolu nad svojim novcem. Da li je ovo bolje od lansiranja/distribucije Bitkoina u januaru 2009. godine? Da li je ovo rešilo problem jednake raspodele?
Još uvek ne, a razlog je što smo distribuirali nešto što je bezvredno.
Potrebna nam je još jedna stvar – svi moraju ISTOVREMENO vrednovati novostečeni novac KAO NOVAC i prihvatati/trošiti ga na otprilike istoj vrednosti. Očigledno, ovo nije moguće u slobodnom društvu.
Ovo je veoma važno - „slobodno društvo“. Moramo dozvoliti ljudima da rade šta žele sa ovim novoraspoređenim novcem. Šta će se desiti? Neki ljudi će ga visoko vrednovati, a neki neće – ljudi koji ga visoko vrednuju kupiće ga od onih koji ga ne vrednuju. I šta nam onda ostaje? Mali deo sveta koji veruje u ovaj novac i sada poseduje većinu ponude.
Čekajte, zar nije upravo to slučaj sa Bitkoinom? Zar se ljudi nisu baš zbog toga žalili?
Kada je Bitkoin u pitanju, većina nas je imala otprilike jednak pristup početnim novčićima. Svi su mogli da rudare, a novčići su u početku bili gotovo bezvredni. Rani korisnici su trgovali troškovima električne struje, svojim vremenom i trudom u zamenu za novoizrudarene bitkoine.
Ne, Satoši nije „unapred“ rudario (eng. pre-mine), on JESTE RUDARIO zajedno sa svima ostalima (počevši od 3. januara 2009.) dva meseca nakon najave novog sistema (31. oktobra 2008.).
Nije postojalo znanje da će Bitkoin sigurno imati neku vrednost. Rani rudari su zaradili svoj deo bitkoina jer su posedovali predviđanje o njegovoj budućoj vrednost i preuzeli su RIZIK sa svojim resursima, vremenom i trudom. Vi i ja, mi smo to ignorisali. Smejali smo se tome. Nadali smo se da će propasti. „Zaslužili“ smo da propustimo priliku.
Postoji izreka među Bitkoinerima: „Svi će kupiti bitkoin po ceni koju zaslužuju.“
Zašto smo pogrešili i šta se desilo da vremenom dobije na vrednosti? Činjenica da su mu neki ljudi, rani korisnici, DAVALI vrednost (vrednost je subjektivna ljudska odluka), a zatim su se vremenom pridružili i drugi. Rani korisnici su bili u pravu što su verovali da će ga drugi kasnije vrednovati nakon što su oni preuzeli rizike, a Bitkoin nije propao. Što kasnije ulazite u Bitkoin, to je rizik manji, a cena koju plaćate za njegovo sticanje je viša – ovo je prikladno.
Zbog neizvesnosti, mnogi ljudi nisu rudarili, niti su odvojili vreme da ozbiljno razmotre ili kupe bitkoin kada su imali priliku. To bi bio slučaj sa BILO KOJIM novostvorenim novcem, čak i ako je ravnomerno raspoređen.
Drugim rečima, ponuditi ravnomernu raspodelu od samog početka je suštinski isto kao i ponuditi podjednake šanse za sticanje bitkoina.
Kao što sam rekao na početku:
Ako imamo novac rođen na slobodnom tržištu, u slobodnom društvu, koji treba da zameni fiat novac – onda on ne može biti ravnomerno raspodeljen od početka, a da ga svi ljudi istovremeno vrednuju. Neminovno mora proći kroz period kada ga samo nekolicina ljudi vrednuje.
Satoši je odlično obavio posao dizajnirajući protokol tako da se izdavanje odvija tokom vremena. Može se raspravljati o tome da li je mogao učiniti izdavanje malo drugačijim ali on/ona/oni je samo čovek (verovatno), tako da imamo ono što imamo i to se sada ne može promeniti.
U početku su rudari bili nagrađivani sa 50 novčića svakih 10 minuta (svaki blok), a ovaj iznos se prepolovljava svakih 210.000 blokova (otprilike svake 4 godine). Trenutno je nagrada za svaki blok 6.25 bitkoina, a izdato je 19.5 miliona od 21 milion novčića. U 2024. godini nagrada će biti prepolovljena na 3.125 bitkoina svakih 10 minuta.
Pored pružanja jednakih prilika tokom raspodele novčića, Satošijev dizajn postepene distribucije takođe jača kvalitet novca i njegov potencijal za uspeh. U sledećem odeljku ću diskutovati o tome kako distribucija utiče na kvalitet novca.
Idealna distribucija novca na slobodnom tržištu
Ostavljajući po strani pravičnost i moral, želeo bih ovde da iznesem argument da raspodela ne-fiat novca kroz populaciju predstavlja promenljivu koja utiče na kvalitet novca.
Da su svi bitkoini bili dostupni od samog početka, onda bi veoma mali broj ljudi posedovao celokupnu ponudu. To bi zapravo dovelo do rizika od neuspeha Bitkoina jer, da bi novac bio koristan, mora biti široko distribuiran. Jedna od funkcija rudarenja bila je distribucija novčića – Satošijev dizajn je osigurao da distribucija bude dovoljna kako bi novac vremenom stekao vrednost, što bi zatim omogućilo trošenje i dalju distribuciju.
Razmišljanje o ekstremima pomaže. Zamislite da jedna osoba poseduje celokupnu ponudu svetskog novca. U tom slučaju, da li bi ta jedinica imala ikakvu vrednost kao novac? Tvrdim bi da bi imala nultu monetarnu vrednost ali, u zavisnosti od toga šta je, mogla bi imati neku robnu vrednost (neki ljudi kažu „intrinzična vrednost“ kada zapravo misle na robnu vrednost ili nemonetarnu vrednost. Dublja diskusija o ovome može se pronaći ovde).
Možda već znate kako novac evoluira iz stanja trampe, što je detaljno objašnjeno ovde, a ukratko je sledeće: U društvu zasnovanom na trampi, potencijalno monetarno dobro inicijalno ima vrednost zbog svoje nemonetarne upotrebe (nemonetarna vrednost), pa počinje sa monetarnom premijom koja je jednaka nuli. Ako ga poseduje dovoljan broj ljudi, postaje praktično koristiti ga kao sredstvo razmene kako bi se prevazišla ograničenja trampe, čime se povećava trgovina, smanjuje rizik specijalizacije i povećava prosperitet tog društva. Kako ovaj tip razmene postaje sve rasprostranjeniji, jedinica postaje poželjnija, što povećava vrednost iznad robne vrednosti. Ova dodatna vrednost je monetarna premija. Monetarna premija zatim uzrokuje da više ljudi poseduje jedinicu i putem pozitivne povratne sprege, ona na kraju postaje univerzalno prihvaćena, što dovodi do toga da monetarna premija dostigne pun potencijal – tj. potpuno usvojena kao novac.
Vraćajući se na hipotetičku situaciju u kojoj jedna osoba drži sav raspoloživi novac na svetu – to predstavlja suprotnost celokupnom procesu gde se monetarna premija razvila iz trampe. Ako se proces potpuno obrne, završavamo na početnom stanju gde jedinica ima nultu monetarnu premiju.
Uporedite to sa suprotnim ekstremom – šta ako svi na svetu poseduju ovaj novac u podjednakoj meri? U tom slučaju, imali biste maksimalno poverenje da će jedinica biti prihvaćena u trgovini.
Sada razmotrimo sredinu između dva ekstrema – ako postoji populacija ljudi koja uopšte ne poseduje ovaj novac, vaša sigurnost u to gde i kod koga možete potrošiti svoj novac u budućnosti bila bi niža – pa je stoga i kvalitet novca niži. Vidim da bi mogao da postoji kontinuum ali u nekom trenutku raspodela će biti dovoljna da novac funkcioniše dobro, a svaka dalja promena ka ravnomernijoj distribuciji imaće zanemarljiv efekat.
Nakon što sam ovo shvatio, postavio sam pitanje: da li je zaista distribucija novca ono što je ovde važno, ili je to prihvatanje tog novca kao sredstva plaćanja, tj. potražnja? Zaključio sam da su one blisko povezane.
Čini se intuitivnim da ako jedna osoba ima sav novac na svetu, više ljudi bi odbilo tu jedinicu kao novac, bilo zato što bi se bunili protiv nejednakosti bogatstva, bilo zato što ne bi bili sigurni da li će je drugi prihvatiti. A ako svi poseduju deo novca, intuitivno je verovati da bi ga više ljudi prihvatilo.
Što se tiče Bitkoina, distribucija je počela sa jednom osobom koja je držala celokupnu raspoloživu ponudu. To se dogodilo u prvom bloku, 3. januara 2009. kada je Satoši izrudario prvi blok i bio nagrađen sa 50 bitkoina. U to vreme nije mogao dobiti više bitkoina zbog pravila protokola – morao je nastaviti da rudari i akumulira novčiće tokom vremena.
U prvim danima, samo su Satoši i Hal Fini rudarili. Zatim su se pridružili drugi i sada je to svetski fenomen. Postepeno izdavanje novih novčića značajno je pomoglo distribuciji. Kako su novi novčići izdavani tokom vremena, oni koji su kasnije ušli još uvek su mogli da se takmiče sa ranijim korisnicima.
Trinaest godina kasnije, većina digitalnih kovanica (oko 19,5 miliona od 21 milion) distribuirana je rudarenjem.
"Zar najbogatiji Bitkoineri neće samo gomilati novčiće i kontrolisati mrežu da bi uvećali svoje bogatstvo što bi dovelo do smanjene distribucije?
Shvatio sam da ono što je važno nije široka distribucija, već široka potražnja. To će povećati cenu i podstaći rane korisnike da oslobode (potroše) deo svojih novčića kako bi poboljšali kvalitet svog života i to je prirodno; na ovaj način, vlasništvo nad bitkoinima postaje ravnomernije raspoređeno tokom vremena, a sa ovom raspodelom njegova vrednost kao novca raste, što dodatno pomaže potražnji, što dalje pomaže ranim usvojiteljima da potroše novčiće.
Veoma važna razlika u poređenju sa fiat novcem je da oni sa najviše novca nemaju nepošten uticaj u cilju povećanja svog bogatstva. Šanse su jednake. U fiat sistemu, oni koji su najbogatiji prvi imaju pristup štampariji novca (npr. bailout-ovi, državne subvencije velikim kompanijama koje formiraju monopole ili pristup jeftinom kreditu koji je zapravo oblik štampanja novca) i oni troše taj novac u ekonomiji pre nego što cene porastu kako bi se prilagodile povećanju ponude novca (Kantiljonov efekat).
Kod Bitkoina nema štampanja novca. Oni sa najvećim bitkoin bogatstvom uživaju u tom bogatstvu trošeći ga onima koji rade za njega (kada bitkoin postane univerzalno prihvaćen kao novac), omogućavajući veću distribuciju.
Naravno, najbogatiji Bitkoineri mogu povećati svoje bogatstvo ali to će biti učinjeno razmenom nečega vrednog sa onima koji im plaćaju bitkoinom (tj. dobrovoljna razmena), nasuprot suštinskoj „krađi“ kao što je slučaj kod Kantiljonovog efekta.
U slobodnom svetu, ako bogati Bitkoiner pruža uslugu, a siromašni Bitkoiner mu plati, OBOJICA poboljšavaju svoju situaciju. Bogati Bitkoiner je zaradio više bitkoina, a siromašni Bitkoiner je, razmotrivši prednosti i nedostatke, odlučio da će njegov/njen život biti bolji trošenjem nešto bitkoina. Ne izmišljam ovde ništa, ovo je osnovno učenje austrijske ekonomske škole i prilično intuitivno.
Ali pogledaj, gotovo niko ne troši. Kako Bitkoin može biti novac? Novac mora da se troši
O ovome sam već pisao ali vredi ponoviti ovde jer sam siguran da će ovo pitanje iskrsnuti kada se razmatra distribucija novčića.
Pomalo je zbunjujuće jer da bi žeton/jedinica bila novac, mora se koristiti kao novac. To je drugačije od jezika – jezik je i dalje jezik čak i ako ga niko ne govori.
Da bi jedinica postala novac, ne samo da mora imati TEHNIČKE osobine novca (retkost, deljivost, prepoznatljivost, prenosivost, zamenjivost, itd.), već mora imati i DRUŠTVENE osobine – tj. mrežu ljudi koji ga vrednuju kao novac - na veoma sličan način kao što je jeziku potrebno da poseduje određene tehničke osobine (zvuci, simboli i pravila) da bi bio koristan ali i mrežu ljudi koji komuniciraju njime.
Sada kada je ovo razjašnjeno, razmotrimo Bitkoin. On ima odlične tehničke monetarne osobine ali ga nedovoljno ljudi koristi kao novac. To bi trebalo da vas navede da zaključite da on nije dobar novac u celini – ALI, to ne znači da neće postati dobar novac. Bitkoineri veruju da hoće i zato ga i prihvataju čekajući da ostatak sveta uhvati priključak.
Samo zato što možete čuti neke Bitkoinere koji promovišu Bitkoin kao novac, to ne znači da greše i da će Bitkoin zato propasti. Oni se pozivaju na superiorne tehničke osobine Bitkoina kao novca. Njihovi protivnici se raspravljaju koristeći drugačiju definiciju, žaleći se da se Bitkoin ne koristi kao novac.
Zaključak
Objasnio sam da se distribucija Bitkoina razvija otprilike onako kako bi se razvijala distribucija bilo kog novca na slobodnom tržištu i da je očekivanje ravnomerne raspodele nerealno. Priroda novca je takva kakva je, nekima se to možda ne sviđa ali to ne daje valjanost argumentu da bi od Bitkoina trebalo odustati i vratiti se novcu koji se nalazi pod neposrednom kontrolom određenih ljudi (altkoini ili fiat).
Dalje čitanje
https://www.danheld.com/blog/2019/1/6/bitcoins-distribution-was-fair
Bakšiš
Statička Lightning adresa: dandysack84@walletofsatoshi.com
-
@ dfa02707:41ca50e3
2025-06-07 12:02:36Contribute to keep No Bullshit Bitcoin news going.
- RoboSats v0.7.7-alpha is now available!
NOTE: "This version of clients is not compatible with older versions of coordinators. Coordinators must upgrade first, make sure you don't upgrade your client while this is marked as pre-release."
- This version brings a new and improved coordinators view with reviews signed both by the robot and the coordinator, adds market price sources in coordinator profiles, shows a correct warning for canceling non-taken orders after a payment attempt, adds Uzbek sum currency, and includes package library updates for coordinators.
Source: RoboSats.
- siggy47 is writing daily RoboSats activity reviews on stacker.news. Check them out here.
- Stay up-to-date with RoboSats on Nostr.
What's new
- New coordinators view (see the picture above).
- Available coordinator reviews signed by both the robot and the coordinator.
- Coordinators now display market price sources in their profiles.
Source: RoboSats.
- Fix for wrong message on cancel button when taking an order. Users are now warned if they try to cancel a non taken order after a payment attempt.
- Uzbek sum currency now available.
- For coordinators: library updates.
- Add docker frontend (#1861).
- Add order review token (#1869).
- Add UZS migration (#1875).
- Fixed tests review (#1878).
- Nostr pubkey for Robot (#1887).
New contributors
Full Changelog: v0.7.6-alpha...v0.7.7-alpha
-
@ 7f6db517:a4931eda
2025-06-07 13:01:54What is KYC/AML?
- The acronym stands for Know Your Customer / Anti Money Laundering.
- In practice it stands for the surveillance measures companies are often compelled to take against their customers by financial regulators.
- Methods differ but often include: Passport Scans, Driver License Uploads, Social Security Numbers, Home Address, Phone Number, Face Scans.
- Bitcoin companies will also store all withdrawal and deposit addresses which can then be used to track bitcoin transactions on the bitcoin block chain.
- This data is then stored and shared. Regulations often require companies to hold this information for a set number of years but in practice users should assume this data will be held indefinitely. Data is often stored insecurely, which results in frequent hacks and leaks.
- KYC/AML data collection puts all honest users at risk of theft, extortion, and persecution while being ineffective at stopping crime. Criminals often use counterfeit, bought, or stolen credentials to get around the requirements. Criminals can buy "verified" accounts for as little as $200. Furthermore, billions of people are excluded from financial services as a result of KYC/AML requirements.
During the early days of bitcoin most services did not require this sensitive user data, but as adoption increased so did the surveillance measures. At this point, most large bitcoin companies are collecting and storing massive lists of bitcoiners, our sensitive personal information, and our transaction history.
Lists of Bitcoiners
KYC/AML policies are a direct attack on bitcoiners. Lists of bitcoiners and our transaction history will inevitably be used against us.
Once you are on a list with your bitcoin transaction history that record will always exist. Generally speaking, tracking bitcoin is based on probability analysis of ownership change. Surveillance firms use various heuristics to determine if you are sending bitcoin to yourself or if ownership is actually changing hands. You can obtain better privacy going forward by using collaborative transactions such as coinjoin to break this probability analysis.
Fortunately, you can buy bitcoin without providing intimate personal information. Tools such as peach, hodlhodl, robosats, azteco and bisq help; mining is also a solid option: anyone can plug a miner into power and internet and earn bitcoin by mining privately.
You can also earn bitcoin by providing goods and/or services that can be purchased with bitcoin. Long term, circular economies will mitigate this threat: most people will not buy bitcoin - they will earn bitcoin - most people will not sell bitcoin - they will spend bitcoin.
There is no such thing as KYC or No KYC bitcoin, there are bitcoiners on lists and those that are not on lists.
If you found this post helpful support my work with bitcoin.
-
@ 6a6be47b:3e74e3e1
2025-06-07 09:28:14Hi frens! 📕
How are you today? How’s your weekend going? I hope you’ve found a moment to rest and recharge—even just for a few minutes. If you’re on the hunt for your next great read, I’ve got something exciting to share!
I just found out that the new book from Robert Galbraith (aka J.K. Rowling) "The Hallmarked Man" has finally been announced! It’s coming out this September, and I’ll admit—I screamed and did a little happy dance. The last book ended on such a major cliffhanger!
🕵️♂️ If you’re not familiar, Robert Galbraith is Rowling’s pen name for her detective series featuring the duo Cormoran Strike and Robin Ellacott. Strike is the founder of their private investigation agency, and Robin, who started as a temp secretary, quickly proved she’s a natural-born detective (and it’s been her dream job for years).
If you’re wondering whether you need to read the earlier books first, I get it. The story of Robin and Strike definitely makes more sense if you start from the beginning, but Rowling is clever—she avoids major spoilers, so you can jump in out of order if you want (like I did!). Just be warned: you’ll get hooked and want to know what happens next.
Each book centers on a new crime for Strike and Robin to solve, so you’re pulled into the mystery first—and then deeper into their lives. That’s part of what makes the series so addictive.
📖 Why am I so hyped for the new release? The last book, The Running Grave, was a wild ride: tense, heart-wrenching, and impossible to put down. I was on the edge of my seat the whole time! For me, it’s the best in the series so far. By the end, I was fully invested in all the characters—even the secondary ones. I just had to know what would happen to them.
Of course, not everyone is a fan of Rowling’s style, and some say her books could use a bit of editing. But I think she weaves tension, character development, and mystery together brilliantly. To each their own, though!
❤️ I have really high hopes for the next book this fall. If you love mysteries with complex characters and dark twists, I hope you’ll give this series a shot. Sometimes the truth is even darker than you expect!
Let me know what you think if you’ve read them—or if you’re planning to start.
🌟 Enjoy your weekend and godspeed!
https://stacker.news/items/999611
-
@ dfa02707:41ca50e3
2025-06-07 12:02:35Contribute to keep No Bullshit Bitcoin news going.
-
Version 1.3 of Bitcoin Safe introduces a redesigned interactive chart, quick receive feature, updated icons, a mempool preview window, support for Child Pays For Parent (CPFP) and testnet4, preconfigured testnet demo wallets, as well as various bug fixes and improvements.
-
Upcoming updates for Bitcoin Safe include Compact Block Filters.
"Compact Block Filters increase the network privacy dramatically, since you're not asking an electrum server to give you your transactions. They are a little slower than electrum servers. For a savings wallet like Bitcoin Safe this should be OK," writes the project's developer Andreas Griffin.
- Learn more about the current and upcoming features of Bitcoin Safe wallet here.
What's new in v1.3
- Redesign of Chart, Quick Receive, Icons, and Mempool Preview (by @design-rrr).
- Interactive chart. Clicking on it now jumps to transaction, and selected transactions are now highlighted.
- Speed up transactions with Child Pays For Parent (CPFP).
- BDK 1.2 (upgraded from 0.32).
- Testnet4 support.
- Preconfigured Testnet demo wallets.
- Cluster unconfirmed transactions so that parents/children are next to each other.
- Customizable columns for all tables (optional view: Txid, Address index, and more)
- Bug fixes and other improvements.
Announcement / Archive
Blog Post / Archive
GitHub Repo
Website -
-
@ 7f6db517:a4931eda
2025-06-07 13:01:53
"Privacy is necessary for an open society in the electronic age. Privacy is not secrecy. A private matter is something one doesn't want the whole world to know, but a secret matter is something one doesn't want anybody to know. Privacy is the power to selectively reveal oneself to the world." - Eric Hughes, A Cypherpunk's Manifesto, 1993
Privacy is essential to freedom. Without privacy, individuals are unable to make choices free from surveillance and control. Lack of privacy leads to loss of autonomy. When individuals are constantly monitored it limits our ability to express ourselves and take risks. Any decisions we make can result in negative repercussions from those who surveil us. Without the freedom to make choices, individuals cannot truly be free.
Freedom is essential to acquiring and preserving wealth. When individuals are not free to make choices, restrictions and limitations prevent us from economic opportunities. If we are somehow able to acquire wealth in such an environment, lack of freedom can result in direct asset seizure by governments or other malicious entities. At scale, when freedom is compromised, it leads to widespread economic stagnation and poverty. Protecting freedom is essential to economic prosperity.
The connection between privacy, freedom, and wealth is critical. Without privacy, individuals lose the freedom to make choices free from surveillance and control. While lack of freedom prevents individuals from pursuing economic opportunities and makes wealth preservation nearly impossible. No Privacy? No Freedom. No Freedom? No Wealth.
Rights are not granted. They are taken and defended. Rights are often misunderstood as permission to do something by those holding power. However, if someone can give you something, they can inherently take it from you at will. People throughout history have necessarily fought for basic rights, including privacy and freedom. These rights were not given by those in power, but rather demanded and won through struggle. Even after these rights are won, they must be continually defended to ensure that they are not taken away. Rights are not granted - they are earned through struggle and defended through sacrifice.
If you found this post helpful support my work with bitcoin.
-
@ 8bad92c3:ca714aa5
2025-06-07 13:01:39Key Takeaways
Leon Wankum, a real estate expert turned Bitcoiner, presents a powerful argument that Bitcoin is emerging as the new “hurdle rate,” outpacing real estate as the preferred store of value in a shifting financial landscape. As the 18-year property cycle nears its end amid high interest rates and imbalanced markets, Bitcoin’s scarcity, performance, and optionality are prompting capital allocators to rethink traditional strategies. Institutions are beginning to reallocate cash flows and refinance properties into Bitcoin treasuries, while new yield-bearing Bitcoin instruments like Strike, Strife, and Stride offer compelling alternatives to bonds and property. Wankum envisions a gradual transition to a Bitcoin standard, facilitated by dual collateralization and designed to avoid economic disruption as Bitcoin steadily replaces legacy financial infrastructure.
Best Quotes
"Bitcoin is starting to become the new hurdle rate that all other financial products have to abide to."
“No asset—not even prime real estate—can compete with Bitcoin’s long-term performance and absolute scarcity.”
"You can refinance a property and allocate to Bitcoin without selling—this is how many are making the transition."
"Strategy (MicroStrategy) has enough Bitcoin to cover preferred stock dividends for over 200 years."
"20% of our property cash flow into Bitcoin outperformed the 80% left in fiat."
“Bitcoin is digital real estate—but better. Scarce, global, and doesn’t need maintenance or tax sheltering gimmicks.”
“If it’s just 1% of the real estate market, that’s $3 trillion. And that’s enough.”
"A smooth transition, not collapse, is the optimal path forward."
Conclusion
This episode explores how Bitcoin is overtaking real estate as the global store of value, with Leon Wankum offering a rational, experience-based framework for understanding this shift. While institutional inertia slows adoption, capital flows are beginning to reflect Bitcoin’s growing dominance, as new financial instruments and treasury strategies emerge. Leon advocates for a thoughtful, evolutionary transition to a Bitcoin standard—one that prioritizes stability, practical integration, and long-term value creation across the global economy.
Timestamps
0:00 - Intro
0:50 - Real Estate
12:36 - Bitcoin for real estate investors
17:44 - Bitkey
18:39 - MSTR products and opportunity cost
30:43 - Unchained
31:13 - Cash flow alternatives
37:40 - Strategy risks
44:41 - Smooth or chaotic transition
50:58 - Is this cycle different?
56:42 - Tradfi degeneracy
1:02:00 - Leon’s Book - Digital Real EstateTranscript
(00:00) Other than real estate, there were little investments that performed better. Few were aware of the existence of Bitcoin. As people become more aware, they will likely also sell off their properties. Bitcoin as a near-perfect form of money is starting to become the new hurdle rate that all other financial products have to abide to.
(00:19) Instead of buying a regular bond issued by a nation state, you can actually buy a fixed income product issued by Strategy. This is a product that could potentially tap into the real estate market. If it's just 1%, that's 3 trillion. And that's enough. They are starting to weigh the opportunity cost of not putting money into Bitcoin.
(00:36) But very few are able to comprehend the necessity of quickly investing large part of the capital into Bitcoin. Every 18 years will have a correction on housing. We're bringing in a housing expert to talk about the real estate market and Bitcoin corporate adoption. in the crazy frenzy that's going on right now in public markets.
(01:04) Leon, welcome back to the show. Thanks for having me back. It was great seeing you even though it was briefly in Vegas last week. I caught you literally as I was running to the airport off the stage. Yeah. And uh look, I'm pull that back up because I think this is a good jumping off point. We'll start with like a personal story.
(01:24) I'm currently in the middle of a move right now, but decided to rent a house because I was looking at the prices for housing in the places I'm looking to buy and they were they were too high. Not only were they too high, we put a bid in on one house and it wound up going a million dollars over asking.
(01:44) And I think over here in the United States, this is a big topic of discussion right now, which is the real estate market feels a little toppy. Prices are still very high, very sticky. Rates are still very high. Uh, and that's one thing I'm trying to discern as somebody who would like to buy a house in the next few years, a forever house for my family, what is going on.
(02:08) And as we can see here, Red Red Fin reported earlier this week that 34% there are 34% more sellers in the market than buyers. At no other point in records dating back to 2013 have sellers outnumbered buyers this much. There are a total of $698 billion worth of homes for sale in the US, up 20.
(02:29) 3% from a year ago in the highest dollar amount ever. So, it seems like there's a ton of people who have rode the real estate market and they're being a bit stingy on pricing and we're waiting for a correction. Is that your take on this? Yeah, we definitely need to wait for price equilibrium to build because since 2008 really since we had low interest rates um prices were skyrocketing and now with a different interest rate environment.
(02:57) Um what I personally also feel is that people are not willing to sell their houses for a price that they believe is not what they could get because they still have the prices in mind that they were able to receive 2 three years ago and the buyers are not willing to pay prices that people want because interest rates are higher meaning the cost of capital and the cost of borrowing went up.
(03:21) So I think this is a healthy um and a healthy um development. We need a price equilibrium. We need um demand and supply prices to match. It's going to take a long time. I think it's also it also depends on interest rates. If Powell is going to um lower interest rates, which I don't think he will, even though that's something that the president would like him to do, but I don't think he will because it would cause inflation to go up again, especially in in goods and services and groceries.
(03:51) And um judging by that, I think interest rates will stay above 3% at least for the foreseeable future. Meaning I believe that real estate prices will come down a little bit till we meet that equilibrium. But something that's important to to remember which makes it a little bit odd that because as a Bitcoiner when you look at housing, I think you constantly think now it's going to crash, now it's going to crash.
(04:15) But the reason it's not really going to crash is as soon as new money is being introduced into your economy or as soon as interest rates are lowered that money is being funneled into real estate and also the existing system that is depending on real estate as collateral has an interest in propping prices up.
(04:34) So this can go on for another 10 or 20 years I think. I mean there could be there's definitely a correction that we can see right now and I personally wouldn't get into uh real estate development at this point if you'll ask me from the perspective what's the better investment of course that is Bitcoin but I just want to make a point that this can go can go on for longer than we think because housing is limited not as limited as Bitcoin but there's something called the 18-year property cycle and it says that every 18 years, we'll
(05:08) have a correction in housing. And the reason for that is if the money supply is expanded and that money goes into land, it's not going out of land because land is limited. It's similar to Bitcoin. But what happens is that after around 14 15 years, prices start to come down and then they find a new price equilibrium which is higher than when the cycle started.
(05:33) And we are at the end of this 18-year property cycle. and I had suggest that prices will fall until 2026 and then in 2026 if interest rates are lowered I think prices can find price equilibrium and then possibly move up in nominal value of course if you start now accounting for real estate and bitcoin it's a whole different story I know talked from the lens of a fiat um based system yeah that note on pal and the fed is interesting that it It's very obvious Trump's wanted him to lower rates since before he even got elected.
(06:09) But I was reading an article yesterday that made a lot of sense to me, which is he's not going to lower rates for multiple reasons. One of which you mentioned, which is it would it would reignite inflation, which nobody wants to see right now. And then number two, profit margins are going up because the productivity uh increases due to AI.
(06:32) I mean, and we're still at the early stages of that, um, where you have many of the big big tech, the MAG 7 beginning to lay off people because they're creating all these efficiencies via AI. So, we're able to increase productivity and profit margins and so there's no reason to to lower rates from that perspective, which agreed.
(06:58) Yeah, absolutely true. Yeah, which is uh you know it'll be it's crazy the confluence of events that are happening right now whether it's real estate market looking a little toppy at least temporarily the interest rate environment the progression of AI and the adoption uh by many large companies and small companies alike and then you have Bitcoin sitting over here sitting over $2 trillion establishing itself as a $2 trillion asset and it still seems a bit fringe where um where we are certainly as Bitcoiners, individuals -
@ 044da344:073a8a0e
2025-06-07 07:49:53Es ist merkwürdig, wie sich die Dinge manchmal fügen. Himmelfahrt bin ich mit den beiden größeren Enkeln, 2 und 4, in einen Zirkus gegangen. Wir mussten ein wenig suchen, okay, haben das Zelt aber irgendwann entdeckt am Ufer des Regen. Ich könnte schreiben: klein, aber fein, so richtig trifft es das jedoch nicht. Klein schon. Ich will hier auch nicht schimpfen, weil sich die Zirkusfamilie alle Mühe gegeben hat, einen preisgekrönten Artisten dabeihatte (Silberner Clown in Monte Carlo) und sogar reichlich Tiere in die Manege brachte. Vier Araberpferde, zwei Dromedare, einen Esel und Ziegen.
Dann aber kamen die Katzen. Richtig gelesen. Katzen dort, wo es Tiger, Löwen, Bären gegeben hat, als ich selbst noch ein Kind war. Ich meine gar nicht die großen Zelte in der DDR, Berolina, Busch oder Aeros. Diese Riesen verirrten sich nicht in einen Badeort auf Rügen. Die Wiese gleich hinter unserem Haus gehörte ab Anfang der 1980er Rüdiger Probst, alle paar Jahre wieder. Ein junger Mann, der gar nicht so viel älter war als ich, keine Angst vor großen Tieren hatte und mit einem Salto von Pferd zu Pferd sprang. In einem kleinen Zirkus wie gesagt, für ein paar Groschen und meist vor vollem Haus. Mit den Enkeln hatte ich jetzt allen Platz der Welt und hinterher ein leeres Portemonnaie. Sieben Euro allein für Popcorn (es gab nur eine Tütengröße) und fünf (freiwillig) für ein paar Möhrenstücke, damit die Kinder in der Pause was zum Füttern in der Hand hatten.
Am Abend dann das neue Buch von Matthias Krauß. „Die falschen Fragen gestellt“. Ich habe mich ein wenig gewundert, als das Paket im Kasten lag, weil der Autor vor gar nicht allzu langer Zeit einen „einseitigen Waffenstillstand“ ausgerufen hatte und Schluss machen wollte mit seinem Kampf gegen die „Aufarbeitungsindustrie“ und mit der Verteidigung der DDR. Ich zitiere einfach aus meiner Rezension von 2019:
Matthias Krauß, 1960 in Hennigsdorf geboren, weiß natürlich, was da alles im Argen lag. Er hat selbst an der Sektion Journalistik studiert und in den späten 1980ern noch ein wenig für die Parteipresse gearbeitet. „Apologetisch“, sagt er. Vor allem Innen- und Wirtschaftspolitik. Sein Aber: erstens die Kultur. Begegnungen vor allem mit dem, was in Osteuropa so an Filmen, Serien, Kunst produziert wurde. Punkt zwei: „der einfache Mensch“. „Ungleich häufiger“ im Bild als heute. Und drittens „gab es eine prinzipielle und grundsätzliche Kritik“ am Westen und am Kapitalismus.
Der Zirkus am Ufer des Regen. Ein totes Pferd soll man nicht reiten. Deshalb tauche ich ein in ein Buch, das etwas schafft, was selbst ich nicht für möglich gehalten habe. Matthias Krauß singt ein Loblied auf den DDR-Journalismus, ohne dass es peinlich wird. Er bleibt dabei ganz bei sich – bei der Mappe mit Zeitungsausschnitten, die er als Schüler angelegt hat, bei den Aktbildern im Magazin, das sein Vater abonniert hatte und das dem Sohn auch jenseits der Erotik ganze Welten öffnete, bei einem Porträt, das ihm die Lokalzeitung 1977 widmete.
Das Schöne ist: Matthias Krauß hat das alles aufgehoben und darf jetzt als reifer Mann zurückschauen – als Journalist, der später auch die andere Seite erlebt hat, folglich vergleichen kann und vor allem niemandem mehr nach dem Mund reden muss. Die „Qualität der Bilder“, okay. Eher „Kartoffeldruck“ als Zeitung. Die immer gleichen alten Männer, klar. Die Grenzen, die jedes Parteiorgan hat und die auch ein junger Mann wie Krauß schon zu spüren bekam. Aber eben auch Texte, die nah dran waren am Leben (vor allem an der Arbeit) und ihre Leser ernst nahmen. Matthias Krauß ist nach dem Studium 1986 Redakteur der Jugendseite des Potsdamer SED-Blatts geworden und ruft den Journalismusforschern heute zu: Vergleicht doch einfach die Bravo mit dem Neuen Leben, einer Zeitschrift, die damals sein Leitstern war und immer ausverkauft. These von Matthias Krauß: Das Neue Leben
war vielseitiger, anspruchsvoller und in jeder Hinsicht höherwertiger als die Bravo-Post, mit dem endlos einfältigen Star-Rummel, den auf Kauf und Konsum orientierten Modetipps, dem Klatsch und Abklatsch und den klischeehaften Rollenbildern – Ausdruck des insgesamt unpolitischen Grundanspruchs. Nun gut, aus exakt diesem Grund wird dieser Vergleich wohl niemals stattfinden. (S. 103)
Matthias Krauß hat ein kaum zu schlagendes Argument auf seiner Seite: Er, der SED-Propagandist, hatte nach 1990 schnell wieder das Vertrauen des Publikums, das er „bei Lichte besehen“ vielleicht gar nicht verdiente, aber allein wegen seiner Herkunft bekam (S. 116). Und: Er kann sogar jemanden zitieren, der die Ernte-Berichterstattung vermisst, Hassobjekt von Lesern wie von Journalisten – einen Landwirt aus dem Westen, der dort sehen konnte, wie weit die Kollegen waren, was sie wie machten und wie sie auf das Wetter reagierten (S. 166).
Ich gebe zu: Ich habe eine Schwäche für autobiografische Texte. Solche Bücher erlauben mir, all das mit Leben zu füllen, was in den Akten bald zu Staub zerfällt. Ich habe ein Fußballregal (gleich zweimal Lothar Matthäus!), eine DDR-Abteilung, Erinnerungen von Wissenschaftlern und natürlich Journalisten. Da längst nicht jeder schreibt, der etwas zu sagen hat, helfe ich immer wieder nach und sammle als Interviewer Lebensgeschichten ein. Matthias Krauß dürfte einer der ersten ostdeutschen Medienmenschen aus der Geburtskohorte um 1960 sein, der sich öffentlich äußert und dabei nicht einfach das nachbetet, was ohnehin schon überall steht.
Das gilt auch jenseits des Themas Journalismus. Der Wehrdienst, für mich bis heute ein Albtraum, wird von Matthias Krauß als „Entscheidung für eine Art persönlicher Freiheit“ interpretiert (S. 43). Mit 18 unabhängig sein von den Eltern und dann auch ohne Geldsorgen studieren können. Leipzig war für ihn in den 1980ern nicht nur Uni-Standort, sondern auch „Messestadt“ und damit „Weltstadt“ (S. 50). Und der Aufregung um jede DDR-Exmatrikulation, die er keineswegs schönredet, werden „die Millionen Opfer der Demokratisierung“ gegenübergestellt und das laute gesamtdeutsche Schweigen nicht nur in diesem Punkt (S. 58).
Was das alles mit dem Zirkus zu tun hat? Matthias Krauß hat in der DDR das Motto für sein Leben als Journalist gefunden – bei der Arbeit mit einem Parteisoldaten, der einfach nicht rauswollte aus dem Korsett, das die Genossen über sein Leben geworfen hatten.
Ja, sagte ich mir, stelle immer die falschen Fragen. (S. 153)
In Sachen Zirkus liegen alle Antworten auf dem Tisch. Meine Trauer habe ich schon vor mehr als zehn Jahren verarbeitet. Mal schauen, was die Enkel eines Tages dazu sagen.
Matthias Krauß: Die falschen Fragen gestellt. Journalist in zwei deutschen Staaten. Berlin: Das Neue Berlin 2025, 189 Seiten, 18 Euro.
-
@ b1ddb4d7:471244e7
2025-06-07 13:01:01“Not your keys, not your coins” isn’t a slogan—it’s a survival mantra in the age of digital sovereignty.
The seismic collapses of Mt. Gox (2014) and FTX (2022) weren’t anomalies; they were wake-up calls. When $8.7 billion in customer funds vanished with FTX, it exposed the fatal flaw of third-party custody: your bitcoin is only as secure as your custodian’s weakest link.
Yet today, As of early 2025, analysts estimate that between 2.3 million and 3.7 million Bitcoins are permanently lost, representing approximately 11–18% of bitcoin’s fixed maximum supply of 21 million coins, with some reports suggesting losses as high as 4 million BTC. This paradox reveals a critical truth: self-custody isn’t just preferable—it’s essential—but it must be done right.
The Custody Spectrum
Custodial Wallets (The Illusion of Control)
- Rehypothecation Risk: Most platforms lend your bitcoin for yield generation. When Celsius collapsed, users discovered their “held” bitcoin was loaned out in risky strategies.
- Account Freezes: Regulatory actions can lock withdrawals overnight. In 2023, Binance suspended dollar withdrawals for U.S. users citing “partner bank issues,” trapping funds for weeks.
- Data Vulnerability: KYC requirements create honeypots for hackers. The 2024 Ledger breach exposed 270,000 users’ personal data despite hardware security.
True Self-Custody
Self-custody means exclusively controlling your private keys—the cryptographic strings that prove bitcoin ownership. Unlike banks or exchanges, self-custody eliminates:- Counterparty risk (no FTX-style implosions)
- Censorship (no blocked transactions)
- Inflationary theft (no fractional reserve lending)
Conquering the Three Great Fears of Self-Custody
Fear 1: “I’ll Lose Everything If I Make a Mistake”
Reality: Human error is manageable with robust systems:
- Test Transactions: Always send a micro-amount (0.00001 BTC) before large transfers. Verify receipt AND ability to send back.
- Multi-Backup Protocol: Store seed phrases on fireproof/waterproof steel plates (not paper!). Distribute copies geographically—one in a home safe, another with trusted family 100+ miles away.
- SLIP39 Sharding: Split your seed into fragments requiring 3-of-5 shards to reconstruct. No single point of failure.
Fear 2: “Hackers Will Steal My Keys”
Reality: Offline storage defeats remote attacks:
- Hardware Wallets: Devices like Bitkey or Ledger keep keys in “cold storage”—isolated from internet-connected devices. Transactions require physical confirmation.
- Multisig Vaults: Bitvault’s multi-sig system requires attackers compromise multiple locations/devices simultaneously. Even losing two keys won’t forfeit funds.
- Air-Gapped Verification: Use dedicated offline devices for wallet setup. Never type seeds on internet-connected machines.
Fear 3: “My Family Can’t Access It If I Die”
Reality: Inheritance is solvable:
- Dead Man Switches: Bitwarden’s emergency access allows trusted contacts to retrieve encrypted keys after a pre-set waiting period (e.g., 30 days).
- Inheritance Protocols: Bitkey’s inheritance solution shares decryption keys via designated beneficiaries’ emails. Requires multiple approvals to prevent abuse.
- Public Key Registries: Share wallet XPUBs (not private keys!) with heirs. They can monitor balances but not spend, ensuring transparency without risk.
The Freedom Dividend
- Censorship Resistance: Send $10M BTC to a Wikileaks wallet without Visa/Mastercard blocking it.
- Privacy Preservation: Avoid KYC surveillance—non-custodial wallets like Flash require zero ID verification.
- Protocol Access: Participate in bitcoin-native innovations (Lightning Network, DLCs) only possible with self-custodied keys.
- Black Swan Immunity: When Cyprus-style bank bailins happen, your bitcoin remains untouched in your vault.
The Sovereign’s Checklist
- Withdraw from Exchanges: Move all BTC > $1,000 to self-custody immediately.
- Buy Hardware Wallet: Purchase DIRECTLY from manufacturer (no Amazon!) to avoid supply-chain tampering.
- Generate Seed OFFLINE: Use air-gapped device, write phrase on steel—never digitally.
- Test Recovery: Delete wallet, restore from seed before funding.
- Implement Multisig: For > $75k, use Bitvault for 2-of-3 multi-sig setup.
- Create Inheritance Plan: Share XPUBs/SLIP39 shards with heirs + legal documents.
“Self-custody isn’t about avoiding risk—it’s about transferring risk from opaque institutions to transparent, controllable systems you design.”
The Inevitable Evolution: Custody Without Compromise
Emerging solutions are erasing old tradeoffs:
- MPC Wallets: Services like Xapo Bank shatter keys into encrypted fragments distributed globally. No single device holds full keys, defeating physical theft.
- Social Recovery: Ethically designed networks (e.g., Bitkey) let trusted contacts restore access without custodial control.
- Biometric Assurance: Fingerprint reset protocols prevent lockouts from physical injuries.
Lost keys = lost bitcoin. But consider the alternative: entrusting your life savings to entities with proven 8% annual failure rates among exchanges. Self-custody shifts responsibility from hoping institutions won’t fail to knowing your system can’t fail without your consent.
Take action today: Move one coin. Test one recovery. Share one xpub. The path to unchained wealth begins with a single satoshi under your control.
-
@ 8bad92c3:ca714aa5
2025-06-07 12:02:26Key Takeaways
Michael Goldstein, aka Bitstein, presents a sweeping philosophical and economic case for going “all in” on Bitcoin, arguing that unlike fiat, which distorts capital formation and fuels short-term thinking, Bitcoin fosters low time preference, meaningful saving, and long-term societal flourishing. At the heart of his thesis is “hodling for good”—a triple-layered idea encompassing permanence, purpose, and the pursuit of higher values like truth, beauty, and legacy. Drawing on thinkers like Aristotle, Hoppe, and Josef Pieper, Goldstein redefines leisure as contemplation, a vital practice in aligning capital with one’s deepest ideals. He urges Bitcoiners to think beyond mere wealth accumulation and consider how their sats can fund enduring institutions, art, and architecture that reflect a moral vision of the future.
Best Quotes
“Let BlackRock buy the houses, and you keep the sats.”
“We're not hodling just for the sake of hodling. There is a purpose to it.”
“Fiat money shortens your time horizon… you can never rest.”
“Savings precedes capital accumulation. You can’t build unless you’ve saved.”
“You're increasing the marginal value of everyone else’s Bitcoin.”
“True leisure is contemplation—the pursuit of the highest good.”
“What is Bitcoin for if not to make the conditions for magnificent acts of creation possible?”
“Bitcoin itself will last forever. Your stack might not. What will outlast your coins?”
“Only a whale can be magnificent.”
“The market will sell you all the crack you want. It’s up to you to demand beauty.”
Conclusion
This episode is a call to reimagine Bitcoin as more than a financial revolution—it’s a blueprint for civilizational renewal. Michael Goldstein reframes hodling as an act of moral stewardship, urging Bitcoiners to lower their time preference, build lasting institutions, and pursue truth, beauty, and legacy—not to escape the world, but to rebuild it on sound foundations.
Timestamps
00:00 - Intro
00:50 - Michael’s BBB presentation Hodl for Good
07:27 - Austrian principles on capital
15:40 - Fiat distorts the economic process
23:34 - Bitkey
24:29 - Hodl for Good triple entendre
29:52 - Bitcoin benefits everyone
39:05 - Unchained
40:14 - Leisure theory of value
52:15 - Heightening life
1:15:48 - Breaking from the chase makes room for magnificence
1:32:32 - Nakamoto Institute’s missionTranscript
(00:00) Fiat money is by its nature a disturbance. If money is being continually produced, especially at an uncertain rate, these uh policies are really just redistribution of wealth. Most are looking for number to go up post hyper bitcoinization. The rate of growth of bitcoin would be more reflective of the growth of the economy as a whole.
(00:23) Ultimately, capital requires knowledge because it requires knowing there is something that you can add to the structures of production to lengthen it in some way that will take time but allow you to have more in the future than you would today. Let Black Rockck buy the houses and you keep the sats, not the other way around.
(00:41) You wait until later for Larry Frink to try to sell you a [Music] mansion. And we're live just like that. Just like that. 3:30 on a Friday, Memorial Day weekend. It's a good good good way to end the week and start the holiday weekend. Yes, sir. Yes, sir. Thank you for having me here. Thank you for coming. I wore this hat specifically because I think it's I think it's very apppropo uh to the conversation we're going to have which is I hope an extension of the presentation you gave at Bitblock Boom Huddle for good. You were working on
(01:24) that for many weeks leading up to uh the conference and explaining how you were structuring it. I think it's a very important topic to discuss now as the Bitcoin price is hitting new all-time highs and people are trying to understand what am I doing with Bitcoin? Like you have you have the different sort of factions within Bitcoin.
(01:47) Uh get on a Bitcoin standard, get on zero, spend as much Bitcoin as possible. You have the sailors of the world are saying buy Bitcoin, never sell, die with your Bitcoin. And I think you do a really good job in that presentation. And I just think your understanding overall of Bitcoin is incredible to put everything into context. It's not either or.
(02:07) It really depends on what you want to accomplish. Yeah, it's definitely there there is no actual one-sizefits-all um for I mean nearly anything in this world. So um yeah, I mean first of all I mean there was it was the first conference talk I had given in maybe five years. I think the one prior to that uh was um bit block boom 2019 which was my meme talk which uh has uh become infamous and notorious.
(02:43) So uh there was also a lot of like high expectations uh you know rockstar dev uh has has treated that you know uh that that talk with a lot of reference. a lot of people have enjoyed it and he was expecting this one to be, you know, the greatest one ever, which is a little bit of a little bit of a uh a burden to live up to those kinds of standards.
(03:08) Um, but you know, because I don't give a lot of talks. Um, you know, I I I like to uh try to bring ideas that might even be ideas that are common. So, something like hodling, we all talk about it constantly. uh but try to bring it from a little bit of a different angle and try to give um a little bit of uh new light to it.
(03:31) I alsove I've I've always enjoyed kind of coming at things from a third angle. Um whenever there's, you know, there's there's all these little debates that we have in in Bitcoin and sometimes it's nice to try to uh step out of it and look at it a little more uh kind of objectively and find ways of understanding it that incorporate the truths of of all of them.
(03:58) uh you know cuz I think we should always be kind of as much as possible after ultimate truth. Um so with this one um yeah I was kind of finding that that sort of golden mean. So uh um yeah and I actually I think about that a lot is uh you know Aristotle has his his concept of the golden mean. So it's like any any virtue is sort of between two vices um because you can you can always you can always take something too far.
(04:27) So you're you're always trying to find that right balance. Um so someone who is uh courageous you know uh one of the vices uh on one side is being basically reckless. I I can't remember what word he would use. Uh but effectively being reckless and just wanting to put yourself in danger for no other reason than just you know the thrill of it.
(04:50) Um and then on the other side you would just have cowardice which is like you're unwilling to put yourself um at any risk at any time. Um, and courage is right there in the middle where it's understanding when is the right time uh to put your put yourself, you know, in in the face of danger um and take it on. And so um in some sense this this was kind of me uh in in some ways like I'm obviously a partisan of hodling.
(05:20) Um, I've for, you know, a long time now talked about the, um, why huddling is good, why people do it, why we should expect it. Um, but still trying to find that that sort of golden mean of like yes, huddle, but also what are we hodling for? And it's not we're we're not hodddling just merely for the sake of hodddling.
(05:45) There there is a a purpose to it. And we should think about that. And that would also help us think more about um what are the benefits of of spending, when should we spend, why should we spend, what should we spend on um to actually give light to that sort of side of the debate. Um so that was that was what I was kind of trying to trying to get into.
(06:09) Um, as well as also just uh at the same time despite all the talk of hodling, there's always this perennial uh there's always this perennial dislike of hodlers because we're treated as uh as if um we're just free riding the network or we're just greedy or you know any of these things. And I wanted to show how uh huddling does serve a real economic purpose.
(06:36) Um, and it does benefit the individual, but it also does uh it it has actual real social um benefits as well beyond merely the individual. Um, so I wanted to give that sort of defense of hodling as well to look at it from um a a broader position than just merely I'm trying to get rich. Um uh because even the person who uh that is all they want to do um just like you know your your pure number grow up go up moonboy even that behavior has positive ramifications on on the economy.
(07:14) And while we might look at them and have uh judgments about their particular choices for them as an individual, we shouldn't discount that uh their actions are having positive positive effects for the rest of the economy. Yeah. So, let's dive into that just not even in the context of Bitcoin because I think you did a great job of this in the presentation.
(07:36) just you've done a good job of this consistently throughout the years that I've known you. Just from like a first principles Austrian economics perspective, what is the idea around capital accumulation, low time preference and deployment of that capital like what what like getting getting into like the nitty-gritty and then applying it to Bitcoin? Yeah, it's it's a big question and um in many ways I mean I I even I barely scratched the surface.
(08:05) uh I I can't claim to have read uh all the volumes of Bombber works, you know, capital and interest and and stuff like that. Um but I think there's some some sort of basic concepts that we can look at that we can uh draw a lot out. Um the first uh I guess let's write that. So repeat so like capital time preference. Yeah. Well, I guess getting more broad like why sav -
@ 7f6db517:a4931eda
2025-06-07 13:01:52People forget Bear Stearns failed March 2008 - months of denial followed before the public realized how bad the situation was under the surface.
Similar happening now but much larger scale. They did not fix fundamental issues after 2008 - everything is more fragile.
The Fed preemptively bailed out every bank with their BTFP program and First Republic Bank still failed. The second largest bank failure in history.
There will be more failures. There will be more bailouts. Depositors will be "protected" by socializing losses across everyone.
Our President and mainstream financial pundits are currently pretending the banking crisis is over while most banks remain insolvent. There are going to be many more bank failures as this ponzi system unravels.
Unlike 2008, we have the ability to opt out of these broken and corrupt institutions by using bitcoin. Bitcoin held in self custody is unique in its lack of counterparty risk - you do not have to trust a bank or other centralized entity to hold it for you. Bitcoin is also incredibly difficult to change by design since it is not controlled by an individual, company, or government - the supply of dollars will inevitably be inflated to bailout these failing banks but bitcoin supply will remain unchanged. I do not need to convince you that bitcoin provides value - these next few years will convince millions.
If you found this post helpful support my work with bitcoin.
-
@ 57d1a264:69f1fee1
2025-06-07 06:08:19In the rural areas of Vietnam, people tend to give the land plot next to their house to their grown up children to build a new home – thus a new family. This poses many interesting problems about the two generation’s living spaces. In the case of Ai Nghia House, we pay close attention to the connection and privacy between the two families.
The skylit courtyard
Learning from the structure of traditional houses in Hoi An, we create a courtyard in the middle of the house, connecting the parents’ house and the children’s new house. The courtyard plays its role as a funnel collecting sunlight and natural wind, also, it’s a place for sharing daily stories, common or private. It’s a place where parents watch over the house and the kids, where families pass over a little spice in cooking time, or simply a place where the sky is only one perk away. The courtyard is thus shared naturally between the families as a continuation between generations.
The framed garden
The front garden is framed into a red brick facade, making the greenery stand out. Voids are boldly cut to allow sunlight to reach the plants, making the garden comes to life. Altogether that frame becomes a lively picture of nature and many daily moments of each member in the family.
Read more about Naqi & Partners at https://naqipartners.com/project/ai-nghia-house-quang-nam/
https://stacker.news/items/999526
-
@ b1ddb4d7:471244e7
2025-06-07 13:01:00Hosted at the iconic Palace of Culture and Science—a prominent symbol of the communist era—the Bitcoin FilmFest offers a vibrant celebration of film through the lens of bitcoin. The venue itself provides a striking contrast to the festival’s focus, highlighting bitcoin’s core identity as a currency embodying independence from traditional financial and political systems.
𝐅𝐢𝐱𝐢𝐧𝐠 𝐭𝐡𝐞 𝐜𝐮𝐥𝐭𝐮𝐫𝐞 𝐰𝐢𝐭𝐡 𝐩𝐨𝐰𝐞𝐫𝐟𝐮𝐥 𝐦𝐮𝐬𝐢𝐜 𝐯𝐢𝐛𝐞𝐬.
Warsaw, Day Zero at #BFF25 (European Bitcoin Pizza Day) with @roger__9000, MadMunky and the @2140_wtf squadpic.twitter.com/9ogVvWRReA
— Bitcoin FilmFest
(@bitcoinfilmfest) May 28, 2025
This venue represents an era when the state tightly controlled the economy and financial systems. The juxtaposition of this historical site with an event dedicated to bitcoin is striking and thought-provoking.
The event features a diverse array of activities, including engaging panel discussions, screenings of both feature-length and short films, workshops and lively parties. Each component designed to explore the multifaceted world of bitcoin and its implications for society, offering attendees a blend of entertainment and education.
The films showcase innovative narratives and insights into bitcoin’s landscape, while the panels facilitate thought-provoking discussions among industry experts and filmmakers.
Networking is a significant aspect of the festival, with an exceptionally open and friendly atmosphere that foster connections among participants. Participants from all over Europe gather to engage with like-minded individuals who share a passion for BTC and its implications for the future.
The open exchanges of ideas foster a sense of community, allowing attendees to forge new connections, collaborate on projects, and discuss the potential of blockchain technology implemented in bitcoin.
The organization of the festival is extraordinary, ensuring a smooth flow of information and an expertly structured schedule filled from morning until evening. Attendees appreciate the meticulous planning that allowed them to maximize their experience. Additionally, thoughtful touches such as gifts from sponsors and well-chosen locations for various events contribute to the overall positive atmosphere of the festival.
Overall, the Bitcoin FilmFest not only highlights the artistic expression surrounding bitcoin but also serves as a vital platform for dialogue—about financial freedom, the future of money, and individual sovereignty in a shifting world.
The event successfully bridges the gap between a historical symbol of control and a movement that celebrates freedom, innovation, and collaboration in the digital age, highlighting the importance of independence in financial systems while fostering a collaborative environment for innovation and growth.
Next year’s event is slated for June 5-7 2026. For further updates check: https://bitcoinfilmfest.com/
-
@ 9ca447d2:fbf5a36d
2025-06-07 12:02:11Trump Media & Technology Group (TMTG), the company behind Truth Social and other Trump-branded digital platforms, is planning to raise $2.5 billion to build one of the largest bitcoin treasuries among public companies.
The deal involves the sale of approximately $1.5 billion in common stock and $1.0 billion in convertible senior secured notes.
According to the company, the offering is expected to close by the end of May, pending standard closing conditions.
Devin Nunes, CEO of Trump Media, said the investment in bitcoin is a big part of the company’s long-term plan.
“We view Bitcoin as an apex instrument of financial freedom,” Nunes said.
“This investment will help defend our Company against harassment and discrimination by financial institutions, which plague many Americans and U.S. firms.”
He added that the bitcoin treasury will be used to create new synergies across the company’s platforms including Truth Social, Truth+, and the upcoming financial tech brand Truth.Fi.
“It’s a big step forward in the company’s plans to evolve into a holding company by acquiring additional profit-generating, crown jewel assets consistent with America First principles,” Nunes said.
The $2.5 billion raise will come from about 50 institutional investors. The $1 billion in convertible notes will have 0% interest and be convertible into shares at a 35% premium.
TMTG’s current liquid assets, including cash and short-term investments, are $759 million as of the end of the first quarter of 2025. With this new funding, the company’s liquid assets will be over $3 billion.
Custody of the bitcoin treasury will be handled by Crypto.com and Anchorage Digital. They will manage and store the digital assets.
Earlier this week The Financial Times reported Trump Media was planning to raise $3 billion for digital assets acquisitions.
The article said the funds would be used to buy bitcoin and other digital assets, and an announcement could come before a major related event in Las Vegas.
Related: Bitcoin 2025 Conference Kicks off in Las Vegas Today
Trump Media denied the FT report. In a statement, the company said, “Apparently the Financial Times has dumb writers listening to even dumber sources.”
There was no further comment. However, the official $2.5 billion figure, which was announced shortly after by Trump Media through a press release, aligns with its actual filing and investor communication.
Trump Media’s official announcement
This comes at a time when the Trump family and political allies are showing renewed interest in Bitcoin.
President Donald Trump who is now back in office since the 2025 election, has said he wants to make the U.S. the “crypto capital of the world.”
Trump Media is also working on retail bitcoin investment products including ETFs aligned with America First policies.
These products will make bitcoin more accessible to retail investors and support pro-Trump financial initiatives.
But not everyone is happy.
Democratic Senator Elizabeth Warren recently expressed concerns about Trump Media’s Bitcoin plans. She asked U.S. regulators to clarify their oversight of digital-asset ETFs, warning of investor risk.
Industry insiders are comparing Trump Media’s plans to Strategy (MSTR) which has built a multi-billion dollar bitcoin treasury over the last year. They used stock and bond sales to fund their bitcoin purchases.
-
@ dfa02707:41ca50e3
2025-06-07 12:02:34- This version introduces the Soroban P2P network, enabling Dojo to relay transactions to the Bitcoin network and share others' transactions to break the heuristic linking relaying nodes to transaction creators.
- Additionally, Dojo admins can now manage API keys in DMT with labels, status, and expiration, ideal for community Dojo providers like Dojobay. New API endpoints, including "/services" exposing Explorer, Soroban, and Indexer, have been added to aid wallet developers.
- Other maintenance updates include Bitcoin Core, Tor, Fulcrum, Node.js, plus an updated ban-knots script to disconnect inbound Knots nodes.
"I want to thank all the contributors. This again shows the power of true Free Software. I also want to thank everyone who donated to help Dojo development going. I truly appreciate it," said Still Dojo Coder.
What's new
- Soroban P2P network. For MyDojo (Docker setup) users, Soroban will be automatically installed as part of their Dojo. This integration allows Dojo to utilize the Soroban P2P network for various upcoming features and applications.
- PandoTx. PandoTx serves as a transaction transport layer. When your wallet sends a transaction to Dojo, it is relayed to a random Soroban node, which then forwards it to the Bitcoin network. It also enables your Soroban node to receive and relay transactions from others to the Bitcoin network and is designed to disrupt the assumption that a node relaying a transaction is closely linked to the person who initiated it.
- Pushing transactions through Soroban can be deactivated by setting
NODE_PANDOTX_PUSH=off
indocker-node.conf
. - Processing incoming transactions from Soroban network can be deactivated by setting
NODE_PANDOTX_PROCESS=off
indocker-node.conf
.
- Pushing transactions through Soroban can be deactivated by setting
- API key management has been introduced to address the growing number of people offering their Dojos to the community. Dojo admins can now access a new API management tab in their DMT, where they can create unlimited API keys, assign labels for easy identification, and set expiration dates for each key. This allows admins to avoid sharing their main API key and instead distribute specific keys to selected parties.
- New API endpoints. Several new API endpoints have been added to help API consumers develop features on Dojo more efficiently:
- New:
/latest-block
- returns data about latest block/txout/:txid/:index
- returns unspent output data/support/services
- returns info about services that Dojo exposes
- Updated:
/tx/:txid
- endpoint has been updated to return raw transaction with parameter?rawHex=1
- The new
/support/services
endpoint replaces the deprecatedexplorer
field in the Dojo pairing payload. Although still present, API consumers should use this endpoint for explorer and other pairing data.
- New:
Other changes
- Updated ban script to disconnect inbound Knots nodes.
- Updated Fulcrum to v1.12.0.
- Regenerate Fulcrum certificate if expired.
- Check if transaction already exists in pushTx.
- Bump BTC-RPC Explorer.
- Bump Tor to v0.4.8.16, bump Snowflake.
- Updated Bitcoin Core to v29.0.
- Removed unnecessary middleware.
- Fixed DB update mechanism, added api_keys table.
- Add an option to use blocksdir config for bitcoin blocks directory.
- Removed deprecated configuration.
- Updated Node.js dependencies.
- Reconfigured container dependencies.
- Fix Snowflake git URL.
- Fix log path for testnet4.
- Use prebuilt addrindexrs binaries.
- Add instructions to migrate blockchain/fulcrum.
- Added pull policies.
Learn how to set up and use your own Bitcoin privacy node with Dojo here.
-
@ cae03c48:2a7d6671
2025-06-07 13:00:50Bitcoin Magazine
Bitcoin Life Insurer, Meanwhile, Becomes First Company to Publish Audited Financials Denominated in BitcoinMeanwhile Insurance Bitcoin (Bermuda) Limited (“Meanwhile”) announced it has become the first company in the world to release externally audited financial statements denominated entirely in Bitcoin. According to the announcement, the company reported 220.4 BTC in assets and 25.29 BTC in net income for 2024, a 300% year over year increase.
Today marks a global first & historic event for us, along with the public release of our 2024 audited financial statements, covering our 1st year of sales.
As the 1st company in the world to have Bitcoin-denominated financial statements externally audited, we are excited to…
— meanwhile | Bitcoin Life Insurance (@meanwhilelife) June 5, 2025
“We’ve just made history as the first company in the world to have Bitcoin-denominated financial statements externally audited,” said Zac Townsend, CEO of Meanwhile. “This is an important, foundational step in reimagining the financial system based on a single, global, decentralized standard outside the control of any one government.”
The financial statements were audited by Harris & Trotter LLP and its digital asset division ht.digital. Meanwhile’s financials also comply with Bermuda’s Insurance Act 1978, noting that their BTC denominated financials were approved and comply with official guidelines. The firm, fully licensed by the Bermuda Monetary Authority (BMA), operates entirely in BTC and is prohibited from liquidating Bitcoin assets except through policyholder claims, positioning it as a long term holder.
“As the first regulated Bitcoin life insurance company, we view the BTC held by Meanwhile as inherently long-term in nature—primarily held to support the Company’s insurance liabilities over decades,” Townsend added. “This makes it significantly ‘stickier’ and resistant to market pressures compared to the BTC held by other companies as part of their treasury management strategies.”
Meanwhile’s 2024 financials also revealed 23.02 BTC in net premiums and 4.35 BTC in investment income, showing that its model not only preserves Bitcoin, but earns it. The company’s reserves (also held in BTC) were reviewed and approved by Willis Towers Watson (WTW).
Meanwhile also offers a Bitcoin Whole Life insurance product that allows policyholders to save, borrow, and build legacy wealth—entirely in BTC, and has plans to expand globally in 2025.
“We are incredibly proud of today’s news as it underscores how Meanwhile is at the forefront of the next phase of the convergence between Bitcoin and institutional financial markets,” said Tia Beckmann, CFO of Meanwhile. “Now having generated net income in BTC, we have demonstrated that we are earning it through a sustainable insurance business model designed for the long term.”
This post Bitcoin Life Insurer, Meanwhile, Becomes First Company to Publish Audited Financials Denominated in Bitcoin first appeared on Bitcoin Magazine and is written by Jenna Montgomery.
-
@ 7f6db517:a4931eda
2025-06-07 13:01:50Nostr is an open communication protocol that can be used to send messages across a distributed set of relays in a censorship resistant and robust way.
If you missed my nostr introduction post you can find it here. My nostr account can be found here.
We are nearly at the point that if something interesting is posted on a centralized social platform it will usually be posted by someone to nostr.
We are nearly at the point that if something interesting is posted exclusively to nostr it is cross posted by someone to various centralized social platforms.
We are nearly at the point that you can recommend a cross platform app that users can install and easily onboard without additional guides or resources.
As companies continue to build walls around their centralized platforms nostr posts will be the easiest to cross reference and verify - as companies continue to censor their users nostr is the best censorship resistant alternative - gradually then suddenly nostr will become the standard. 🫡
Current Nostr Stats
If you found this post helpful support my work with bitcoin.
-
@ eb0157af:77ab6c55
2025-06-07 13:01:35Russian authorities are stepping up their crackdown on illegal Bitcoin miners with a new confiscation case.
Law enforcement in Russia has launched a seizure campaign against unauthorized mining operations, marking an escalation in the fight against illicit crypto activity. The latest case saw investigators in the Amur Oblast confiscate bitcoin worth $88,500.
The Investigative Department of the Investigative Committee (SKR) for Amur Oblast announced it had seized assets worth around 7 million rubles ($88,570; 0.8414 BTC) from a former executive of an unnamed power company.
The accused served as head of technological connection services at the Amur branch of the Far Eastern Distribution Company (DRSC), a power grid operator managing electricity distribution in Russia’s eastern Amur region.
Investigators found that the former executive exploited his insider knowledge of the company’s power distribution systems to siphon electricity from the grid. The stolen power was used to run mining equipment at his private residence.
The seizure followed an investigation revealing that in 2024, the man used his technical skills to bypass metering devices and create an illegal connection to his employer’s infrastructure.
Authorities estimate that the executive used over 3.5 million rubles ($44,334) worth of electricity belonging to DRSC.
In April, several Russian ministries drafted a legal mechanism proposing new powers for courts and law enforcement to confiscate cryptocurrencies in criminal cases. The proposal, backed by government policymakers, would allow authorities to formally recognize digital assets as intangible property in criminal proceedings.
Previous seizures
Investigators appear to have already applied the principles of this draft law in several cases. Among them is the case of a server operator for the darknet marketplace Hydra, from whom police seized crypto assets worth $8.2 million.
Judicial officers also seized 1,032.1 BTC from Marat Tambiev, a former investigator with the Russian Investigative Committee. A court found Tambiev guilty of accepting Bitcoin bribes from an international fraud network, sentencing him to 16 years in prison.
The post Russia: $88,500 in bitcoin seized from illegal miner for power theft appeared first on Atlas21.
-
@ cae03c48:2a7d6671
2025-06-07 13:00:42Bitcoin Magazine
Mapping Bitcoin’s Bull Cycle PotentialBitcoin’s Market Value to Realized Value, or MVRV ratio, remains one of the most reliable on-chain indicators for identifying local and macro tops and bottoms across every BTC cycle. By isolating data across different investor cohorts and adapting historical benchmarks to modern market conditions, we can generate more accurate insights into where Bitcoin may be headed next.
The Bitcoin MVRV Ratio
The MVRV Ratio compares Bitcoin’s market price to its realized price, essentially the average cost basis for all coins in the network. As of writing, BTC trades around $105,000 while the realized price floats near $47,000, putting the raw MVRV at 2.26. The Z-Score version of MVRV standardizes this ratio based on historical volatility, enabling clearer comparisons across different market cycles.
Figure 1: Historically, the MVRV Ratio and the MVRV Z-Score have accurately identified cycle peaks and bottoms. View Live Chart
Short-Term Holders
Short-term holders, defined as those holding Bitcoin for 155 days or less, currently have a realized price near $97,000. This metric often acts as dynamic support in bull markets and resistance in bear markets. Notably, when the Short Term Holder MVRV hits 1.33, local tops have historically occurred, as seen several times in both the 2017 and 2021 cycles. So far in the current cycle, this threshold has already been touched four times, each followed by modest retracements.
Figure 2: Short Term Holder MVRV reaching 1.33 in more recent cycles has aligned with local tops. View Live Chart
Long-Term Holders
Long-term holders, who’ve held BTC for more than 155 days, currently have an average cost basis of just $33,500, putting their MVRV at 3.11. Historically, Long Term Holder MVRV values have reached as high as 12 during major peaks. That said, we’re observing a trend of diminishing multiples each cycle.
Figure 3: Achieving a Long Term Holder MVRV value of 8 could extrapolate to a BTC price in excess of $300,000. View Live Chart
A key resistance band now sits between 7.5 and 8.5, a zone that has defined bull tops and pre-bear retracements in every cycle since 2011. If the current growth of the realized price ($40/day) continues for another 140–150 days, matching previous cycle lengths, we could see it reach somewhere in the region of $40,000. A peak MVRV of 8 would imply a price near $320,000.
A Smarter Market Compass
Unlike static all-time metrics, the 2-Year Rolling MVRV Z-Score adapts to evolving market dynamics. By recalculating average extremes over a rolling window, it smooths out Bitcoin’s natural volatility decay as it matures. Historically, this version has signaled overbought conditions when reaching levels above 3, and prime accumulation zones when dipping below -1. Currently sitting under 1, this metric suggests that substantial upside remains.
Figure 4: The current 2-Year Rolling MVRV Z-Score suggests more positive price action ahead. View Live Chart
Timing & Targets
A view of the BTC Growth Since Cycle Lows chart illustrates that BTC is now approximately 925 days removed from its last major cycle low. Historical comparisons to previous bull markets suggest we may be around 140 to 150 days away from a potential top, with both the 2017 and 2021 peaks occurring around 1,060 to 1,070 days after their respective lows. While not deterministic, this alignment reinforces the broader picture of where we are in the cycle. If realized price trends and MVRV thresholds continue on current trajectories, late Q3 to early Q4 2025 may bring final euphoric moves.
Figure 5: Will the current cycle continue to exhibit growth patterns similar to those of the previous two cycles? View Live Chart
Conclusion
The MVRV ratio and its derivatives remain essential tools for analyzing Bitcoin market behavior, providing clear markers for both accumulation and distribution. Whether observing short-term holders hovering near local top thresholds, long-term holders nearing historically significant resistance zones, or adaptive metrics like the 2-Year Rolling MVRV Z-Score signaling plenty of runway left, these data points should be used in confluence.
No single metric should be relied upon to predict tops or bottoms in isolation, but taken together, they offer a powerful lens through which to interpret the macro trend. As the market matures and volatility declines, adaptive metrics will become even more crucial in staying ahead of the curve.
For more deep-dive research, technical indicators, real-time market alerts, and access to a growing community of analysts, visit BitcoinMagazinePro.com.
Disclaimer: This article is for informational purposes only and should not be considered financial advice. Always do your own research before making any investment decisions.
This post Mapping Bitcoin’s Bull Cycle Potential first appeared on Bitcoin Magazine and is written by Matt Crosby.
-
@ 9ca447d2:fbf5a36d
2025-06-07 12:01:58CANNES, FRANCE – May 2025 — Bitcoin mining made its mark at the world’s most prestigious film gathering this year as Puerto Rican director and producer Alana Mediavilla introduced her feature documentary Dirty Coin: The Bitcoin Mining Documentary at the Marché du Film during the Cannes Film Festival.
The film puts bitcoin mining at the center of a rising global conversation about energy, technology, and economic freedom.
Dirty Coin is the first feature-length documentary to explore bitcoin mining through immersive, on-the-ground case studies.
From rural towns in the United States to hydro-powered sites in Latin America and the Congo, the film follows miners and communities navigating what may be one of the most misunderstood technologies of our time.
The result is a human-centered look at how bitcoin mining is transforming local economies and energy infrastructure in real ways.
To mark its Cannes debut, Mediavilla and her team hosted a packed industry event that brought together leaders from both film and finance.
Dirty Coin debut ceremony at the Marché du Film
Sponsors Celestial Management, Sangha Renewables, Nordblock, and Paystand.org supported the program, which featured panels on mining, energy use, and decentralized infrastructure.
Attendees had the rare opportunity to engage directly with pioneers in the space. A special session in French led by Seb Gouspillou spotlighted mining efforts in the Congo’s Virunga region.
Dirty Coin builds on Mediavilla’s award-winning short film Stranded, which won over 20 international prizes, including Best Short Documentary at Cannes in 2024.
That success helped lay the foundation for the feature and positioned Mediavilla as one of the boldest new voices in global documentary filmmaking.
Alana Mediavilla speaks at the Marché du Film — Cannes Film Festival
“If we’ve found an industry that can unlock stranded energy and turn it into real power for people—especially in regions with energy poverty—why wouldn’t we look into it?” says Mediavilla. “Our privilege blinds us.
“The same thing we criticize could be the very thing that lifts the developing world to our standard of living. Ignoring that potential is a failure of imagination.”
Much like the decentralized network it explores, Dirty Coin is spreading globally through grassroots momentum.
Local leaders are hosting independent screenings around the world, from Roatán and Berlin to São Paulo and Madrid. Upcoming events include Toronto and Zurich, with more cities joining each month.
Mediavilla, who previously worked in creative leadership roles in the U.S. — including as a producer at Google — returned to Puerto Rico to found Campo Libre, a studio focused on high-caliber, globally relevant storytelling from the Caribbean.
She was also accepted into the Cannes Producers Network, a selective program open only to producers with box office releases in the past four years.
Mediavilla qualified after independently releasing Dirty Coin in theaters across Puerto Rico. Her participation in the network gave her direct access to meetings, insights, and connections with the most active distributors and producers working today.
The film’s next public screening will take place at the Anthem Film Festival in Palm Springs on Saturday, June 14 at 2 PM. Additional screenings and market appearances are planned throughout the year at Bitcoin events and international film platforms.
Dirty Coin at the Cannes Film Festival
Watch the Trailer + Access Press Materials
📂 EPK
🎬 Screener
🌍 Host a Screening
Follow the Movement
Instagram: https://www.instagram.com/dirty_coin_official/
Twitter: https://x.com/DirtyCoinDoc
Website: www.dirtycointhemovie.com -
@ b1ddb4d7:471244e7
2025-06-07 11:01:12When Sergei talks about bitcoin, he doesn’t sound like someone chasing profits or followers. He sounds like someone about to build a monastery in the ruins.
While the mainstream world chases headlines and hype, Sergei shows up in local meetups from Sacramento to Cleveland, mentors curious minds, and shares what he knows is true – hoping that, with the right spark, someone will light their own way forward.
We interviewed Sergei to trace his steps: where he started, what keeps him going, and why teaching bitcoin is far more than explaining how to set up a node – it’s about reaching the right minds before the noise consumes them. So we began where most journeys start: at the beginning.
First Steps
- So, where did it all begin for you and what made you stay curious?
I first heard about bitcoin from a friend’s book recommendation, American Kingpin, the book about Silk Road (online drug marketplace). He is still not a true bitcoiner, although I helped him secure private keys with some bitcoin.
I was really busy at the time – focused on my school curriculum, running a 7-bedroom Airbnb, and working for a standardized test prep company. Bitcoin seemed too technical for me to explore, and the pace of my work left no time for it.
After graduating, while pursuing more training, I started playing around with stocks and maximizing my savings. Passive income seemed like the path to early retirement, as per the promise of the FIRE movement (Financial Independence, Retire Early). I mostly followed the mainstream news and my mentor’s advice – he liked preferred stocks at the time.
I had some Coinbase IOUs and remember sending bitcoin within the Coinbase ledger to a couple friends. I also recall the 2018 crash; I actually saw the legendary price spike live but couldn’t benefit because my funds were stuck amidst the frenzy. I withdrew from that investment completely for some time. Thankfully, my mentor advised to keep en eye on bitcoin.
Around late 2019, I started DCA-ing cautiously. Additionally, my friend and I were discussing famous billionaires, and how there was no curriculum for becoming a billionaire. So, I typed “billionaires” into my podcast app, and landed on We Study Billionaires podcast.
That’s where I kept hearing Preston Pysh mention bitcoin, before splitting into his own podcast series, Bitcoin Fundamentals. I didn’t understand most of the terminology of stocks, bonds, etc, yet I kept listening and trying to absorb it thru repetition. Today, I realize all that financial talk was mostly noise.
When people ask me for a technical explanation of fiat, I say: it’s all made up, just like the fiat price of bitcoin! Starting in 2020, during the so-called pandemic, I dove deeper. I religiously read Bitcoin Magazine, scrolled thru Bitcoin Twitter, and joined Simply Bitcoin Telegram group back when DarthCoin was an admin.
DarthCoin was my favorite bitcoiner – experienced, knowledgeable, and unapologetic. Watching him shift from rage to kindness, from passion to despair, gave me a glimpse at what a true educator’s journey would look like.
The struggle isn’t about adoption at scale anymore. It’s about reaching the few who are willing to study, take risks, and stay out of fiat traps. The vast majority won’t follow that example – not yet at least… if I start telling others the requirements for true freedom and prosperity, they would certainly say “Hell no!”
- At what point did you start teaching others, and why?
After college, I helped teach at a standardized test preparation company, and mentored some students one-on-one. I even tried working at a kindergarten briefly, but left quickly; Babysitting is not teaching.
What I discovered is that those who will succeed don’t really need my help – they would succeed with or without me, because they already have the inner drive.
Once you realize your people are perishing for lack of knowledge, the only rational thing to do is help raise their level of knowledge and understanding. That’s the Great Work.
I sometimes imagine myself as a political prisoner. If that were to happen, I’d probably start teaching fellow prisoners, doctors, janitors, even guards. In a way we already live in an open-air prison, So what else is there to do but teach, organize, and conspire to dismantle the Matrix?
Building on Bitcoin
- You hosted some in-person meetups in Sacramento. What did you learn from those?
My first presentation was on MultiSig storage with SeedSigner, and submarine swaps through Boltz.exchange.
I realized quickly that I had overestimated the group’s technical background. Even the meetup organizer, a financial advisor, asked, “How is anyone supposed to follow these steps?” I responded that reading was required… He decided that Unchained is an easier way.
At a crypto meetup, I gave a much simpler talk, outlining how bitcoin will save the world, based on a DarthCoin’s guide. Only one person stuck around to ask questions – a man who seemed a little out there, and did not really seem to get the message beyond the strength of cryptographic security of bitcoin.
Again, I overestimated the audience’s readiness. That forced me to rethink my strategy. People are extremely early and reluctant to study.
- Now in Ohio, you hold sessions via the Orange Pill App. What’s changed?
My new motto is: educate the educators. The corollary is: don’t orange-pill stupid normies (as DarthCoin puts it).
I’ve shifted to small, technical sessions in order to raise a few solid guardians of this esoteric knowledge who really get it and can carry it forward.
The youngest attendee at one of my sessions is a newborn baby – he mostly sleeps, but maybe he still absorbs some of the educational vibes.
- How do local groups like Sactown and Cleveland Bitcoiners influence your work?
Every meetup reflects its local culture. Sacramento and Bay Area Bitcoiners, for example, do camping trips – once we camped through a desert storm, shielding our burgers from sand while others went to shoot guns.
Cleveland Bitcoiners are different. They amass large gatherings. They recently threw a 100k party. They do a bit more community outreach. Some are curious about the esoteric topics such as jurisdiction, spirituality, and healthful living.
I have no permanent allegiance to any state, race, or group. I go where I can teach and learn. I anticipate that in my next phase, I’ll meet Bitcoiners so advanced that I’ll have to give up my fiat job and focus full-time on serious projects where real health and wealth are on the line.
Hopefully, I’ll be ready. I believe the universe always challenges you exactly to your limit – no less, no more.
- What do people struggle with the most when it comes to technical education?
The biggest struggle isn’t technical – it’s a lack of deep curiosity. People ask “how” and “what” – how do I set up a node, what should one do with the lightning channels? But very few ask “why?”
Why does on-chain bitcoin not contribute to the circular economy? Why is it essential to run Lightning? Why did humanity fall into mental enslavement in the first place?
I’d rather teach two-year-olds who constantly ask “why” than adults who ask how to flip a profit. What worries me most is that most two-year-olds will grow up asking state-funded AI bots for answers and live according to its recommendations.
- One Cleveland Bitcoiner shows up at gold bug meetups. How valuable is face-to-face education?
I don’t think the older generation is going to reverse the current human condition. Most of them have been under mind control for too long, and they just don’t have the attention span to study and change their ways.
They’re better off stacking gold and helping fund their grandkids’ education. If I were to focus on a demographic, I’d go for teenagers – high school age – because by college, the indoctrination is usually too strong, and they’re chasing fiat mastery.
As for the gold bug meetup? Perhaps one day I will show up with a ukulele to sing some bitcoin-themed songs. Seniors love such entertainment.
- How do you choose what to focus on in your sessions, especially for different types of learners?
I don’t come in with a rigid agenda. I’ve collected a massive library of resources over the years and never stopped reading. My browser tab and folder count are exploding.
At the meetup, people share questions or topics they’re curious about, then I take that home, do my homework, and bring back a session based on those themes. I give them the key takeaways, plus where to dive deeper.
Most people won’t – or can’t – study the way I do, and I expect attendees to put in the work. I suspect that it’s more important to reach those who want to learn but don’t know how, the so-called nescient (not knowing), rather than the ignorant.
There are way too many ignorant bitcoiners, so my mission is to find those who are curious what’s beyond the facade of fake reality and superficial promises.
That naturally means that fewer people show up, and that’s fine. I’m not here for the crowds; I’m here to educate the educators. One bitcoiner who came decided to branch off into self-custody sessions and that’s awesome. Personally, I’m much more focused on Lightning.
I want to see broader adoption of tools like auth, sign-message, NWC, and LSPs. Next month, I’m going deep into eCash solutions, because let’s face it – most newcomers won’t be able to afford their own UTXO or open a lightning channel; additionally, it has to be fun and easy for them to transact sats, otherwise they won’t do it. Additionally, they’ll need to rely on
-
@ eb0157af:77ab6c55
2025-06-07 13:01:34The newly elected South Korean President is aiming for a breakthrough in the cryptocurrency market with the introduction of spot ETFs and a national stablecoin.
On June 4, South Korea officially elected Lee Jae-myung as its new President. The candidate from the left-wing party secured victory following the impeachment of former leader Yoon Suk-yeol, who ended his three-year term after a failed attempt to establish a military-backed government.
Voter turnout reached 79.4%, the highest in the last 28 years. Lee won 49.42% of the vote, defeating his conservative opponent Kim Moon-soo, who garnered 41.15%.
The new President’s pledges
In addition to traditional economic priorities such as supporting low-income families and small businesses, Lee Jae-myung has placed digital assets at the heart of his political agenda.
The core pillar of Lee’s strategy involves the introduction of spot ETFs for Bitcoin and Ethereum in the domestic market. Currently, the issuance and local trading of crypto ETFs remain banned in the country.
Another key element of the plan is the approval of stablecoins pegged to the South Korean won. During a discussion last month, Lee emphasized the need to develop a won-based stablecoin market to prevent capital flight abroad.
Under the new administration, South Korea will also work to complete the second phase of its regulatory framework for digital assets. The upcoming legislation will specifically address stablecoin regulations and transparency requirements for cryptocurrency exchanges.
The program also includes the creation of special zones for blockchain-related businesses, where regulations will be minimized to maximize innovation and operational efficiency.
However, this isn’t the first time South Korea has elected a crypto-friendly candidate. The conservative president Yoon Suk-yeol, later impeached, had made several crypto-friendly promises aimed at deregulating the sector, though many of those initiatives saw delays and limited progress during his three-year term.
Yoon’s deregulatory plans faced resistance from the Financial Services Commission (FSC), which maintained strict regulations citing investor protection. In recent months, however, the FSC has shown greater openness toward easing crypto rules — a shift that could support Lee’s commitments.
According to FSC data, by the end of last year the country had 9.7 million registered exchange users, representing nearly 20% of the total population.
The post South Korea: the new leader may favor Bitcoin ETFs and a national stablecoin appeared first on Atlas21.
-
@ 57d1a264:69f1fee1
2025-06-07 05:48:57There is only one item on my CSS wishlist for 2025: a slower pace!
After years of rapid innovation, now feels like the right time for browser vendors to take a beat to consolidate, fix browser inconsistencies, and let the rest of us catch up.
After all, we might've heard about
subgrid, :has(), scroll-driven
animations, and all the other recent CSS improvements – but how many of us can say that we've actually used all these features, let alone mastered them?This is why this year's survey will be so interesting. It'll be a chance to see which of the past few year's new CSS additions have already been adopted by the community, and which ones are still on our to-do list.
So once again, please join me for this year's State of CSS!
Take the survey at https://survey.devographics.com/en-US/survey/state-of-css/2025
https://stacker.news/items/999510
-
@ dfa02707:41ca50e3
2025-06-07 12:02:34Contribute to keep No Bullshit Bitcoin news going.
This update brings key enhancements for clarity and usability:
- Recent Blocks View: Added to the Send tab and inspired by Mempool's visualization, it displays the last 2 blocks and the estimated next block to help choose fee rates.
- Camera System Overhaul: Features a new library for higher resolution detection and mouse-scroll zoom support when available.
- Vector-Based Images: All app images are now vectorized and theme-aware, enhancing contrast, especially in dark mode.
- Tor & P2A Updates: Upgraded internal Tor and improved support for pay-to-anchor (P2A) outputs.
- Linux Package Rename: For Linux users, Sparrow has been renamed to sparrowwallet (or sparrowserver); in some cases, the original sparrow package may need manual removal.
- Additional updates include showing total payments in multi-payment transaction diagrams, better handling of long labels, and other UI enhancements.
- Sparrow v2.2.1 is a bug fix release that addresses missing UUID issue when starting Tor on recent macOS versions, icons for external sources in Settings and Recent Blocks view, repackaged
.deb
installs to use older gzip instead of zstd compression, and removed display of median fee rate where fee rates source is set to Server.
Learn how to get started with Sparrow wallet:
Release notes (v2.2.0)
- Added Recent Blocks view to Send tab.
- Converted all bitmapped images to theme aware SVG format for all wallet models and dialogs.
- Support send and display of pay to anchor (P2A) outputs.
- Renamed
sparrow
package tosparrowwallet
andsparrowserver
on Linux. - Switched camera library to openpnp-capture.
- Support FHD (1920 x 1080) and UHD4k (3840 x 2160) capture resolutions.
- Support camera zoom with mouse scroll where possible.
- In the Download Verifier, prefer verifying the dropped file over the default file where the file is not in the manifest.
- Show a warning (with an option to disable the check) when importing a wallet with a derivation path matching another script type.
- In Cormorant, avoid calling the
listwalletdir
RPC on initialization due to a potentially slow response on Windows. - Avoid server address resolution for public servers.
- Assume server address is non local for resolution failures where a proxy is configured.
- Added a tooltip to indicate truncated labels in table cells.
- Dynamically truncate input and output labels in the tree on a transaction tab, and add tooltips if necessary.
- Improved tooltips for wallet tabs and transaction diagrams with long labels.
- Show the address where available on input and output tooltips in transaction tab tree.
- Show the total amount sent in payments in the transaction diagram when constructing multiple payment transactions.
- Reset preferred table column widths on adjustment to improve handling after window resizing.
- Added accessible text to improve screen reader navigation on seed entry.
- Made Wallet Summary table grow horizontally with dialog sizing.
- Reduced tooltip show delay to 200ms.
- Show transaction diagram fee percentage as less than 0.01% rather than 0.00%.
- Optimized and reduced Electrum server RPC calls.
- Upgraded Bouncy Castle, PGPainless and Logback libraries.
- Upgraded internal Tor to v0.4.8.16.
- Bug fix: Fixed issue with random ordering of keystore origins on labels import.
- Bug fix: Fixed non-zero account script type detection when signing a message on Trezor devices.
- Bug fix: Fixed issue parsing remote Coldcard xpub encoded on a different network.
- Bug fix: Fixed inclusion of fees on wallet label exports.
- Bug fix: Increase Trezor device libusb timeout.
Linux users: Note that the
sparrow
package has been renamed tosparrowwallet
orsparrowserver
, and in some cases you may need to manually uninstall the originalsparrow
package. Look in the/opt
folder to ensure you have the new name, and the original is removed.What's new in v2.2.1
- Updated Tor library to fix missing UUID issue when starting Tor on recent macOS versions.
- Repackaged
.deb
installs to use older gzip instead of zstd compression. - Removed display of median fee rate where fee rates source is set to Server.
- Added icons for external sources in Settings and Recent Blocks view
- Bug fix: Fixed issue in Recent Blocks view when switching fee rates source
- Bug fix: Fixed NPE on null fee returned from server
-
@ b1ddb4d7:471244e7
2025-06-07 11:01:06“Not your keys, not your coins” isn’t a slogan—it’s a survival mantra in the age of digital sovereignty.
The seismic collapses of Mt. Gox (2014) and FTX (2022) weren’t anomalies; they were wake-up calls. When $8.7 billion in customer funds vanished with FTX, it exposed the fatal flaw of third-party custody: your bitcoin is only as secure as your custodian’s weakest link.
Yet today, As of early 2025, analysts estimate that between 2.3 million and 3.7 million Bitcoins are permanently lost, representing approximately 11–18% of bitcoin’s fixed maximum supply of 21 million coins, with some reports suggesting losses as high as 4 million BTC. This paradox reveals a critical truth: self-custody isn’t just preferable—it’s essential—but it must be done right.
The Custody Spectrum
Custodial Wallets (The Illusion of Control)
- Rehypothecation Risk: Most platforms lend your bitcoin for yield generation. When Celsius collapsed, users discovered their “held” bitcoin was loaned out in risky strategies.
- Account Freezes: Regulatory actions can lock withdrawals overnight. In 2023, Binance suspended dollar withdrawals for U.S. users citing “partner bank issues,” trapping funds for weeks.
- Data Vulnerability: KYC requirements create honeypots for hackers. The 2024 Ledger breach exposed 270,000 users’ personal data despite hardware security.
True Self-Custody
Self-custody means exclusively controlling your private keys—the cryptographic strings that prove bitcoin ownership. Unlike banks or exchanges, self-custody eliminates:- Counterparty risk (no FTX-style implosions)
- Censorship (no blocked transactions)
- Inflationary theft (no fractional reserve lending)
Conquering the Three Great Fears of Self-Custody
Fear 1: “I’ll Lose Everything If I Make a Mistake”
Reality: Human error is manageable with robust systems:
- Test Transactions: Always send a micro-amount (0.00001 BTC) before large transfers. Verify receipt AND ability to send back.
- Multi-Backup Protocol: Store seed phrases on fireproof/waterproof steel plates (not paper!). Distribute copies geographically—one in a home safe, another with trusted family 100+ miles away.
- SLIP39 Sharding: Split your seed into fragments requiring 3-of-5 shards to reconstruct. No single point of failure.
Fear 2: “Hackers Will Steal My Keys”
Reality: Offline storage defeats remote attacks:
- Hardware Wallets: Devices like Bitkey or Ledger keep keys in “cold storage”—isolated from internet-connected devices. Transactions require physical confirmation.
- Multisig Vaults: Bitvault’s multi-sig system requires attackers compromise multiple locations/devices simultaneously. Even losing two keys won’t forfeit funds.
- Air-Gapped Verification: Use dedicated offline devices for wallet setup. Never type seeds on internet-connected machines.
Fear 3: “My Family Can’t Access It If I Die”
Reality: Inheritance is solvable:
- Dead Man Switches: Bitwarden’s emergency access allows trusted contacts to retrieve encrypted keys after a pre-set waiting period (e.g., 30 days).
- Inheritance Protocols: Bitkey’s inheritance solution shares decryption keys via designated beneficiaries’ emails. Requires multiple approvals to prevent abuse.
- Public Key Registries: Share wallet XPUBs (not private keys!) with heirs. They can monitor balances but not spend, ensuring transparency without risk.
The Freedom Dividend
- Censorship Resistance: Send $10M BTC to a Wikileaks wallet without Visa/Mastercard blocking it.
- Privacy Preservation: Avoid KYC surveillance—non-custodial wallets like Flash require zero ID verification.
- Protocol Access: Participate in bitcoin-native innovations (Lightning Network, DLCs) only possible with self-custodied keys.
- Black Swan Immunity: When Cyprus-style bank bailins happen, your bitcoin remains untouched in your vault.
The Sovereign’s Checklist
- Withdraw from Exchanges: Move all BTC > $1,000 to self-custody immediately.
- Buy Hardware Wallet: Purchase DIRECTLY from manufacturer (no Amazon!) to avoid supply-chain tampering.
- Generate Seed OFFLINE: Use air-gapped device, write phrase on steel—never digitally.
- Test Recovery: Delete wallet, restore from seed before funding.
- Implement Multisig: For > $75k, use Bitvault for 2-of-3 multi-sig setup.
- Create Inheritance Plan: Share XPUBs/SLIP39 shards with heirs + legal documents.
“Self-custody isn’t about avoiding risk—it’s about transferring risk from opaque institutions to transparent, controllable systems you design.”
The Inevitable Evolution: Custody Without Compromise
Emerging solutions are erasing old tradeoffs:
- MPC Wallets: Services like Xapo Bank shatter keys into encrypted fragments distributed globally. No single device holds full keys, defeating physical theft.
- Social Recovery: Ethically designed networks (e.g., Bitkey) let trusted contacts restore access without custodial control.
- Biometric Assurance: Fingerprint reset protocols prevent lockouts from physical injuries.
Lost keys = lost bitcoin. But consider the alternative: entrusting your life savings to entities with proven 8% annual failure rates among exchanges. Self-custody shifts responsibility from hoping institutions won’t fail to knowing your system can’t fail without your consent.
Take action today: Move one coin. Test one recovery. Share one xpub. The path to unchained wealth begins with a single satoshi under your control.
-
@ 57d1a264:69f1fee1
2025-06-07 05:38:49Every purchase we make ties us to a vast, hidden network of people, machines, and resources — whether we see it or not.
Supply chains are large industrial systems. They are composed of heterogeneous elements, such as ships, aircraft, trains, and trucks, but also systems of labor, information, and finance that build them and connect them together. Usually the goods flow in one direction and money flows in the opposite direction. Their physical substrates are themselves industrial products, relying on ships, trucks, cranes, fossil fuels, and electric power, tied together by skilled human operators, supervisors, managers, and other industrial roles.
Few of us would likely condone every moment of every supply chain for every product we consume.
Consider any product in your home. Where was it made? (That should be written on the label somewhere.) Where were the parts made? Who put them all together? How did it get to your doorstep?
Continue reading at https://thereader.mitpress.mit.edu/supply-chains-are-us/
https://stacker.news/items/999509
-
@ 57d1a264:69f1fee1
2025-06-07 05:28:26In the early days of computer vision, when memory was scarce and every byte counted, innovation thrived under constraint. “An Efficient Chain-Linking Algorithm,” developed at Inria in the late 1980s, is a brilliant example of this spirit. Now preserved and shared by Software Heritage, this compact yet powerful piece of C code showcases how elegance and efficiency went hand in hand in outlining the future of image processing—one pixel chain at a time.
The code resulted from research work carried out between 1985 and 1991 at Inria, by Gérard Giraudon (research and principal investigator), Philippe Garnesson (a PhD student), and Patrick Cipière (software engineer). Down in sunny Sophia Antipolis, a tech park 20 minutes inland from Antibes, the team tackled computer vision with a distinctly local flavor. They called themselves PASTIS, a playful nod to the anise drink. Still, the acronym – Scene Analysis and Symbolic Image Processing Project (Projet d’Analyse de Scène et de Traitement d’Image Symbolique) – hinted at their serious mission.
Continue reading at https://www.softwareheritage.org/2025/06/04/history_computer_vision/
https://stacker.news/items/999507
-
@ eb0157af:77ab6c55
2025-06-07 13:01:33A new step for the American bank in the digital asset space: Bitcoin ETFs cleared for use as collateral for financing.
JPMorgan Chase will allow clients to use spot Bitcoin ETFs as collateral to obtain loans. According to sources close to the project, cited by Bloomberg, the initiative will launch in the coming weeks and will involve trading and wealth management clients on a global scale.
The bank has decided to begin this new phase starting with crypto ETFs, beginning with the BlackRock iShares Bitcoin Trust (IBIT), which has already surpassed $70 billion in assets under management (AUM). The decision is part of a broader strategy aimed at enabling selected clients to access financing by using cryptocurrency-related assets as collateral. Before this change, JPMorgan only accepted crypto ETFs as loan collateral under specific conditions.
The American bank’s new approach will see Bitcoin ETFs treated like other traditional assets when calculating a client’s borrowing capacity. Just as is currently the case with stocks, cars, or works of art, crypto ETFs will become an integral part of standard wealth evaluations.
Although CEO Jamie Dimon has historically been known for his skeptical stance on Bitcoin, the bank announced last month that it would soon allow clients to purchase spot ETFs on the leading cryptocurrency — although without offering custody services.
The new rules will apply to all of JPMorgan’s wealth management clients worldwide, from retail customers to high-net-worth individuals. The bank will also integrate crypto holdings into the net worth assessments of clients managed by its wealth management division.
The post JPMorgan Chase: Bitcoin ETFs accepted as loan collateral appeared first on Atlas21.
-
@ cae03c48:2a7d6671
2025-06-07 12:01:20Bitcoin Magazine
Mapping Bitcoin’s Bull Cycle PotentialBitcoin’s Market Value to Realized Value, or MVRV ratio, remains one of the most reliable on-chain indicators for identifying local and macro tops and bottoms across every BTC cycle. By isolating data across different investor cohorts and adapting historical benchmarks to modern market conditions, we can generate more accurate insights into where Bitcoin may be headed next.
The Bitcoin MVRV Ratio
The MVRV Ratio compares Bitcoin’s market price to its realized price, essentially the average cost basis for all coins in the network. As of writing, BTC trades around $105,000 while the realized price floats near $47,000, putting the raw MVRV at 2.26. The Z-Score version of MVRV standardizes this ratio based on historical volatility, enabling clearer comparisons across different market cycles.
Figure 1: Historically, the MVRV Ratio and the MVRV Z-Score have accurately identified cycle peaks and bottoms. View Live Chart
Short-Term Holders
Short-term holders, defined as those holding Bitcoin for 155 days or less, currently have a realized price near $97,000. This metric often acts as dynamic support in bull markets and resistance in bear markets. Notably, when the Short Term Holder MVRV hits 1.33, local tops have historically occurred, as seen several times in both the 2017 and 2021 cycles. So far in the current cycle, this threshold has already been touched four times, each followed by modest retracements.
Figure 2: Short Term Holder MVRV reaching 1.33 in more recent cycles has aligned with local tops. View Live Chart
Long-Term Holders
Long-term holders, who’ve held BTC for more than 155 days, currently have an average cost basis of just $33,500, putting their MVRV at 3.11. Historically, Long Term Holder MVRV values have reached as high as 12 during major peaks. That said, we’re observing a trend of diminishing multiples each cycle.
Figure 3: Achieving a Long Term Holder MVRV value of 8 could extrapolate to a BTC price in excess of $300,000. View Live Chart
A key resistance band now sits between 7.5 and 8.5, a zone that has defined bull tops and pre-bear retracements in every cycle since 2011. If the current growth of the realized price ($40/day) continues for another 140–150 days, matching previous cycle lengths, we could see it reach somewhere in the region of $40,000. A peak MVRV of 8 would imply a price near $320,000.
A Smarter Market Compass
Unlike static all-time metrics, the 2-Year Rolling MVRV Z-Score adapts to evolving market dynamics. By recalculating average extremes over a rolling window, it smooths out Bitcoin’s natural volatility decay as it matures. Historically, this version has signaled overbought conditions when reaching levels above 3, and prime accumulation zones when dipping below -1. Currently sitting under 1, this metric suggests that substantial upside remains.
Figure 4: The current 2-Year Rolling MVRV Z-Score suggests more positive price action ahead. View Live Chart
Timing & Targets
A view of the BTC Growth Since Cycle Lows chart illustrates that BTC is now approximately 925 days removed from its last major cycle low. Historical comparisons to previous bull markets suggest we may be around 140 to 150 days away from a potential top, with both the 2017 and 2021 peaks occurring around 1,060 to 1,070 days after their respective lows. While not deterministic, this alignment reinforces the broader picture of where we are in the cycle. If realized price trends and MVRV thresholds continue on current trajectories, late Q3 to early Q4 2025 may bring final euphoric moves.
Figure 5: Will the current cycle continue to exhibit growth patterns similar to those of the previous two cycles? View Live Chart
Conclusion
The MVRV ratio and its derivatives remain essential tools for analyzing Bitcoin market behavior, providing clear markers for both accumulation and distribution. Whether observing short-term holders hovering near local top thresholds, long-term holders nearing historically significant resistance zones, or adaptive metrics like the 2-Year Rolling MVRV Z-Score signaling plenty of runway left, these data points should be used in confluence.
No single metric should be relied upon to predict tops or bottoms in isolation, but taken together, they offer a powerful lens through which to interpret the macro trend. As the market matures and volatility declines, adaptive metrics will become even more crucial in staying ahead of the curve.
For more deep-dive research, technical indicators, real-time market alerts, and access to a growing community of analysts, visit BitcoinMagazinePro.com.
Disclaimer: This article is for informational purposes only and should not be considered financial advice. Always do your own research before making any investment decisions.
This post Mapping Bitcoin’s Bull Cycle Potential first appeared on Bitcoin Magazine and is written by Matt Crosby.
-
@ b1ddb4d7:471244e7
2025-06-07 11:01:04Hosted at the iconic Palace of Culture and Science—a prominent symbol of the communist era—the Bitcoin FilmFest offers a vibrant celebration of film through the lens of bitcoin. The venue itself provides a striking contrast to the festival’s focus, highlighting bitcoin’s core identity as a currency embodying independence from traditional financial and political systems.
𝐅𝐢𝐱𝐢𝐧𝐠 𝐭𝐡𝐞 𝐜𝐮𝐥𝐭𝐮𝐫𝐞 𝐰𝐢𝐭𝐡 𝐩𝐨𝐰𝐞𝐫𝐟𝐮𝐥 𝐦𝐮𝐬𝐢𝐜 𝐯𝐢𝐛𝐞𝐬.
Warsaw, Day Zero at #BFF25 (European Bitcoin Pizza Day) with @roger__9000, MadMunky and the @2140_wtf squadpic.twitter.com/9ogVvWRReA
— Bitcoin FilmFest
(@bitcoinfilmfest) May 28, 2025
This venue represents an era when the state tightly controlled the economy and financial systems. The juxtaposition of this historical site with an event dedicated to bitcoin is striking and thought-provoking.
The event features a diverse array of activities, including engaging panel discussions, screenings of both feature-length and short films, workshops and lively parties. Each component designed to explore the multifaceted world of bitcoin and its implications for society, offering attendees a blend of entertainment and education.
The films showcase innovative narratives and insights into bitcoin’s landscape, while the panels facilitate thought-provoking discussions among industry experts and filmmakers.
Networking is a significant aspect of the festival, with an exceptionally open and friendly atmosphere that foster connections among participants. Participants from all over Europe gather to engage with like-minded individuals who share a passion for BTC and its implications for the future.
The open exchanges of ideas foster a sense of community, allowing attendees to forge new connections, collaborate on projects, and discuss the potential of blockchain technology implemented in bitcoin.
The organization of the festival is extraordinary, ensuring a smooth flow of information and an expertly structured schedule filled from morning until evening. Attendees appreciate the meticulous planning that allowed them to maximize their experience. Additionally, thoughtful touches such as gifts from sponsors and well-chosen locations for various events contribute to the overall positive atmosphere of the festival.
Overall, the Bitcoin FilmFest not only highlights the artistic expression surrounding bitcoin but also serves as a vital platform for dialogue—about financial freedom, the future of money, and individual sovereignty in a shifting world.
The event successfully bridges the gap between a historical symbol of control and a movement that celebrates freedom, innovation, and collaboration in the digital age, highlighting the importance of independence in financial systems while fostering a collaborative environment for innovation and growth.
Next year’s event is slated for June 5-7 2026. For further updates check: https://bitcoinfilmfest.com/
-
@ 5d4b6c8d:8a1c1ee3
2025-06-07 02:18:51This is the place to reflect on how well you met your ~HealthAndFitness goals today.
Where did you succeed? What do you need to keep working on?
I probably didn't get enough sleep and overcompensated with caffeine. Otherwise, today was pretty solid. Other than a big cookie, I ate well and kept it within a decent window. Activity level was good, not great.
I meant to stretch more today, which I didn't really do, but I suppose I can do now.
https://stacker.news/items/999453
-
@ 5d4b6c8d:8a1c1ee3
2025-06-07 00:40:06https://youtu.be/YA1Lkl3h9AQ
"...and then, like so many Pacers games, things just happened."
I think that's about as well as any of us understand what's going on.
https://stacker.news/items/999389
-
@ 7f6db517:a4931eda
2025-06-07 10:02:25
"Privacy is necessary for an open society in the electronic age. Privacy is not secrecy. A private matter is something one doesn't want the whole world to know, but a secret matter is something one doesn't want anybody to know. Privacy is the power to selectively reveal oneself to the world." - Eric Hughes, A Cypherpunk's Manifesto, 1993
Privacy is essential to freedom. Without privacy, individuals are unable to make choices free from surveillance and control. Lack of privacy leads to loss of autonomy. When individuals are constantly monitored it limits our ability to express ourselves and take risks. Any decisions we make can result in negative repercussions from those who surveil us. Without the freedom to make choices, individuals cannot truly be free.
Freedom is essential to acquiring and preserving wealth. When individuals are not free to make choices, restrictions and limitations prevent us from economic opportunities. If we are somehow able to acquire wealth in such an environment, lack of freedom can result in direct asset seizure by governments or other malicious entities. At scale, when freedom is compromised, it leads to widespread economic stagnation and poverty. Protecting freedom is essential to economic prosperity.
The connection between privacy, freedom, and wealth is critical. Without privacy, individuals lose the freedom to make choices free from surveillance and control. While lack of freedom prevents individuals from pursuing economic opportunities and makes wealth preservation nearly impossible. No Privacy? No Freedom. No Freedom? No Wealth.
Rights are not granted. They are taken and defended. Rights are often misunderstood as permission to do something by those holding power. However, if someone can give you something, they can inherently take it from you at will. People throughout history have necessarily fought for basic rights, including privacy and freedom. These rights were not given by those in power, but rather demanded and won through struggle. Even after these rights are won, they must be continually defended to ensure that they are not taken away. Rights are not granted - they are earned through struggle and defended through sacrifice.
If you found this post helpful support my work with bitcoin.
-
@ cae03c48:2a7d6671
2025-06-07 11:00:56Bitcoin Magazine
Bitcoin Life Insurer, Meanwhile, Becomes First Company to Publish Audited Financials Denominated in BitcoinMeanwhile Insurance Bitcoin (Bermuda) Limited (“Meanwhile”) announced it has become the first company in the world to release externally audited financial statements denominated entirely in Bitcoin. According to the announcement, the company reported 220.4 BTC in assets and 25.29 BTC in net income for 2024, a 300% year over year increase.
Today marks a global first & historic event for us, along with the public release of our 2024 audited financial statements, covering our 1st year of sales.
As the 1st company in the world to have Bitcoin-denominated financial statements externally audited, we are excited to…
— meanwhile | Bitcoin Life Insurance (@meanwhilelife) June 5, 2025
“We’ve just made history as the first company in the world to have Bitcoin-denominated financial statements externally audited,” said Zac Townsend, CEO of Meanwhile. “This is an important, foundational step in reimagining the financial system based on a single, global, decentralized standard outside the control of any one government.”
The financial statements were audited by Harris & Trotter LLP and its digital asset division ht.digital. Meanwhile’s financials also comply with Bermuda’s Insurance Act 1978, noting that their BTC denominated financials were approved and comply with official guidelines. The firm, fully licensed by the Bermuda Monetary Authority (BMA), operates entirely in BTC and is prohibited from liquidating Bitcoin assets except through policyholder claims, positioning it as a long term holder.
“As the first regulated Bitcoin life insurance company, we view the BTC held by Meanwhile as inherently long-term in nature—primarily held to support the Company’s insurance liabilities over decades,” Townsend added. “This makes it significantly ‘stickier’ and resistant to market pressures compared to the BTC held by other companies as part of their treasury management strategies.”
Meanwhile’s 2024 financials also revealed 23.02 BTC in net premiums and 4.35 BTC in investment income, showing that its model not only preserves Bitcoin, but earns it. The company’s reserves (also held in BTC) were reviewed and approved by Willis Towers Watson (WTW).
Meanwhile also offers a Bitcoin Whole Life insurance product that allows policyholders to save, borrow, and build legacy wealth—entirely in BTC, and has plans to expand globally in 2025.
“We are incredibly proud of today’s news as it underscores how Meanwhile is at the forefront of the next phase of the convergence between Bitcoin and institutional financial markets,” said Tia Beckmann, CFO of Meanwhile. “Now having generated net income in BTC, we have demonstrated that we are earning it through a sustainable insurance business model designed for the long term.”
This post Bitcoin Life Insurer, Meanwhile, Becomes First Company to Publish Audited Financials Denominated in Bitcoin first appeared on Bitcoin Magazine and is written by Jenna Montgomery.
-
@ 7f6db517:a4931eda
2025-06-07 13:01:54The former seems to have found solid product market fit. Expect significant volume, adoption, and usage going forward.
The latter's future remains to be seen. Dependence on Tor, which has had massive reliability issues, and lack of strong privacy guarantees put it at risk.
— ODELL (@ODELL) October 27, 2022
The Basics
- Lightning is a protocol that enables cheap and fast native bitcoin transactions.
- At the core of the protocol is the ability for bitcoin users to create a payment channel with another user.
- These payment channels enable users to make many bitcoin transactions between each other with only two on-chain bitcoin transactions: the channel open transaction and the channel close transaction.
- Essentially lightning is a protocol for interoperable batched bitcoin transactions.
- It is expected that on chain bitcoin transaction fees will increase with adoption and the ability to easily batch transactions will save users significant money.
- As these lightning transactions are processed, liquidity flows from one side of a channel to the other side, on chain transactions are signed by both parties but not broadcasted to update this balance.
- Lightning is designed to be trust minimized, either party in a payment channel can close the channel at any time and their bitcoin will be settled on chain without trusting the other party.
There is no 'Lightning Network'
- Many people refer to the aggregate of all lightning channels as 'The Lightning Network' but this is a false premise.
- There are many lightning channels between many different users and funds can flow across interconnected channels as long as there is a route through peers.
- If a lightning transaction requires multiple hops it will flow through multiple interconnected channels, adjusting the balance of all channels along the route, and paying lightning transaction fees that are set by each node on the route.
Example: You have a channel with Bob. Bob has a channel with Charlie. You can pay Charlie through your channel with Bob and Bob's channel with User C.
- As a result, it is not guaranteed that every lightning user can pay every other lightning user, they must have a route of interconnected channels between sender and receiver.
Lightning in Practice
- Lightning has already found product market fit and usage as an interconnected payment protocol between large professional custodians.
- They are able to easily manage channels and liquidity between each other without trust using this interoperable protocol.
- Lightning payments between large custodians are fast and easy. End users do not have to run their own node or manage their channels and liquidity. These payments rarely fail due to professional management of custodial nodes.
- The tradeoff is one inherent to custodians and other trusted third parties. Custodial wallets can steal funds and compromise user privacy.
Sovereign Lightning
- Trusted third parties are security holes.
- Users must run their own node and manage their own channels in order to use lightning without trusting a third party. This remains the single largest friction point for sovereign lightning usage: the mental burden of actively running a lightning node and associated liquidity management.
- Bitcoin development prioritizes node accessibility so cost to self host your own node is low but if a node is run at home or office, Tor or a VPN is recommended to mask your IP address: otherwise it is visible to the entire network and represents a privacy risk.
- This privacy risk is heightened due to the potential for certain governments to go after sovereign lightning users and compel them to shutdown their nodes. If their IP Address is exposed they are easier to target.
- Fortunately the tools to run and manage nodes continue to get easier but it is important to understand that this will always be a friction point when compared to custodial services.
The Potential Fracture of Lightning
- Any lightning user can choose which users are allowed to open channels with them.
- One potential is that professional custodians only peer with other professional custodians.
- We already see nodes like those run by CashApp only have channels open with other regulated counterparties. This could be due to performance goals, liability reduction, or regulatory pressure.
- Fortunately some of their peers are connected to non-regulated parties so payments to and from sovereign lightning users are still successfully processed by CashApp but this may not always be the case going forward.
Summary
- Many people refer to the aggregate of all lightning channels as 'The Lightning Network' but this is a false premise. There is no singular 'Lightning Network' but rather many payment channels between distinct peers, some connected with each other and some not.
- Lightning as an interoperable payment protocol between professional custodians seems to have found solid product market fit. Expect significant volume, adoption, and usage going forward.
- Lightning as a robust sovereign payment protocol has yet to be battle tested. Heavy reliance on Tor, which has had massive reliability issues, the friction of active liquidity management, significant on chain fee burden for small amounts, interactivity constraints on mobile, and lack of strong privacy guarantees put it at risk.
If you have never used lightning before, use this guide to get started on your phone.
If you found this post helpful support my work with bitcoin.
-
@ cae03c48:2a7d6671
2025-06-07 08:00:33Bitcoin Magazine
Mapping Bitcoin’s Bull Cycle PotentialBitcoin’s Market Value to Realized Value, or MVRV ratio, remains one of the most reliable on-chain indicators for identifying local and macro tops and bottoms across every BTC cycle. By isolating data across different investor cohorts and adapting historical benchmarks to modern market conditions, we can generate more accurate insights into where Bitcoin may be headed next.
The Bitcoin MVRV Ratio
The MVRV Ratio compares Bitcoin’s market price to its realized price, essentially the average cost basis for all coins in the network. As of writing, BTC trades around $105,000 while the realized price floats near $47,000, putting the raw MVRV at 2.26. The Z-Score version of MVRV standardizes this ratio based on historical volatility, enabling clearer comparisons across different market cycles.
Figure 1: Historically, the MVRV Ratio and the MVRV Z-Score have accurately identified cycle peaks and bottoms. View Live Chart
Short-Term Holders
Short-term holders, defined as those holding Bitcoin for 155 days or less, currently have a realized price near $97,000. This metric often acts as dynamic support in bull markets and resistance in bear markets. Notably, when the Short Term Holder MVRV hits 1.33, local tops have historically occurred, as seen several times in both the 2017 and 2021 cycles. So far in the current cycle, this threshold has already been touched four times, each followed by modest retracements.
Figure 2: Short Term Holder MVRV reaching 1.33 in more recent cycles has aligned with local tops. View Live Chart
Long-Term Holders
Long-term holders, who’ve held BTC for more than 155 days, currently have an average cost basis of just $33,500, putting their MVRV at 3.11. Historically, Long Term Holder MVRV values have reached as high as 12 during major peaks. That said, we’re observing a trend of diminishing multiples each cycle.
Figure 3: Achieving a Long Term Holder MVRV value of 8 could extrapolate to a BTC price in excess of $300,000. View Live Chart
A key resistance band now sits between 7.5 and 8.5, a zone that has defined bull tops and pre-bear retracements in every cycle since 2011. If the current growth of the realized price ($40/day) continues for another 140–150 days, matching previous cycle lengths, we could see it reach somewhere in the region of $40,000. A peak MVRV of 8 would imply a price near $320,000.
A Smarter Market Compass
Unlike static all-time metrics, the 2-Year Rolling MVRV Z-Score adapts to evolving market dynamics. By recalculating average extremes over a rolling window, it smooths out Bitcoin’s natural volatility decay as it matures. Historically, this version has signaled overbought conditions when reaching levels above 3, and prime accumulation zones when dipping below -1. Currently sitting under 1, this metric suggests that substantial upside remains.
Figure 4: The current 2-Year Rolling MVRV Z-Score suggests more positive price action ahead. View Live Chart
Timing & Targets
A view of the BTC Growth Since Cycle Lows chart illustrates that BTC is now approximately 925 days removed from its last major cycle low. Historical comparisons to previous bull markets suggest we may be around 140 to 150 days away from a potential top, with both the 2017 and 2021 peaks occurring around 1,060 to 1,070 days after their respective lows. While not deterministic, this alignment reinforces the broader picture of where we are in the cycle. If realized price trends and MVRV thresholds continue on current trajectories, late Q3 to early Q4 2025 may bring final euphoric moves.
Figure 5: Will the current cycle continue to exhibit growth patterns similar to those of the previous two cycles? View Live Chart
Conclusion
The MVRV ratio and its derivatives remain essential tools for analyzing Bitcoin market behavior, providing clear markers for both accumulation and distribution. Whether observing short-term holders hovering near local top thresholds, long-term holders nearing historically significant resistance zones, or adaptive metrics like the 2-Year Rolling MVRV Z-Score signaling plenty of runway left, these data points should be used in confluence.
No single metric should be relied upon to predict tops or bottoms in isolation, but taken together, they offer a powerful lens through which to interpret the macro trend. As the market matures and volatility declines, adaptive metrics will become even more crucial in staying ahead of the curve.
For more deep-dive research, technical indicators, real-time market alerts, and access to a growing community of analysts, visit BitcoinMagazinePro.com.
Disclaimer: This article is for informational purposes only and should not be considered financial advice. Always do your own research before making any investment decisions.
This post Mapping Bitcoin’s Bull Cycle Potential first appeared on Bitcoin Magazine and is written by Matt Crosby.
-
@ eb0157af:77ab6c55
2025-06-07 13:01:33The adoption of Bitcoin as a corporate reserve asset is accelerating: public companies have doubled their holdings in just two months.
The use of Bitcoin as a corporate treasury strategy is reaching unprecedented levels. According to a recent report from Standard Chartered, shared with several industry outlets, 61 publicly traded companies collectively hold 3.2% of all bitcoin in circulation.
Geoff Kendrick, global head of digital asset research at Standard Chartered, revealed that these 61 public firms — out of a total of 124 — now own 673,897 BTC.
The report highlights that 58 of the 61 companies analyzed have net asset value (NAV) multiples above 1, indicating that their market valuations exceed the value of their net assets.
The Strategy copycats
A significant takeaway from the report is the speed at which companies are accumulating bitcoin. The 60 companies considered “Strategy copycats” have doubled their holdings in the past two months, from under 50,000 BTC to about 100,000 BTC. Over the same period, Strategy added 74,000 BTC, compared to the 47,000 acquired by the other firms.
This movement continues to expand as new companies announce Bitcoin purchase plans via debt issuance. On June 3, Canadian renewable energy developer SolarBank officially announced its Bitcoin treasury strategy, filing an application to open an account with Coinbase Prime to secure custody services, manage USDC, and set up a non-custodial wallet for its Bitcoin holdings.
Meanwhile, Paris-based Blockchain Group announced a $68 million Bitcoin acquisition, while Norwegian crypto brokerage K33 raised $6.2 million to purchase BTC at the end of May.
The post Bitcoin treasury: 61 publicly listed companies now hold over 3% of total supply appeared first on Atlas21.
-
@ 7f6db517:a4931eda
2025-06-07 13:01:53Bank run on every crypto bank then bank run on every "real" bank.
— ODELL (@ODELL) December 14, 2022
The four main banks of bitcoin and “crypto” are Signature, Prime Trust, Silvergate, and Silicon Valley Bank. Prime Trust does not custody funds themselves but rather maintains deposit accounts at BMO Harris Bank, Cross River, Lexicon Bank, MVB Bank, and Signature Bank. Silvergate and Silicon Valley Bank have already stopped withdrawals. More banks will go down before the chaos stops. None of them have sufficient reserves to meet withdrawals.
Bitcoin gives us all the ability to opt out of a system that has massive layers of counterparty risk built in, years of cheap money and broken incentives have layered risk on top of risk throughout the entire global economy. If you thought the FTX bank run was painful to watch, I have bad news for you: every major bank in the world is fractional reserve. Bitcoin held in self custody is unique in its lack of counterparty risk, as global market chaos unwinds this will become much more obvious.
The rules of bitcoin are extremely hard to change by design. Anyone can access the network directly without a trusted third party by using their own node. Owning more bitcoin does not give you more control over the network with all participants on equal footing.
Bitcoin is:
- money that is not controlled by a company or government
- money that can be spent or saved without permission
- money that is provably scarce and should increase in purchasing power with adoptionBitcoin is money without trust. Whether you are a nation state, corporation, or an individual, you can use bitcoin to spend or save without permission. Social media will accelerate the already deteriorating trust in our institutions and as this trust continues to crumble the value of trust minimized money will become obvious. As adoption increases so should the purchasing power of bitcoin.
A quick note on "stablecoins," such as USDC - it is important to remember that they rely on trusted custodians. They have the same risk as funds held directly in bank accounts with additional counterparty risk on top. The trusted custodians can be pressured by gov, exit scam, or caught up in fraud. Funds can and will be frozen at will. This is a distinctly different trust model than bitcoin, which is a native bearer token that does not rely on any centralized entity or custodian.
Most bitcoin exchanges have exposure to these failing banks. Expect more chaos and confusion as this all unwinds. Withdraw any bitcoin to your own wallet ASAP.
Simple Self Custody Guide: https://werunbtc.com/muun
More Secure Cold Storage Guide: https://werunbtc.com/coldcard
If you found this post helpful support my work with bitcoin.
-
@ 7f6db517:a4931eda
2025-06-07 10:02:24Bank run on every crypto bank then bank run on every "real" bank.
— ODELL (@ODELL) December 14, 2022
Good morning.
It looks like PacWest will fail today. It will be both the fifth largest bank failure in US history and the sixth major bank to fail this year. It will likely get purchased by one of the big four banks in a government orchestrated sale.
March 8th - Silvergate Bank
March 10th - Silicon Valley Bank
March 12th - Signature Bank
March 19th - Credit Suisse
May 1st - First Republic Bank
May 4th - PacWest Bank?PacWest is the first of many small regional banks that will go under this year. Most will get bought by the big four in gov orchestrated sales. This has been the playbook since 2008. Follow the incentives. Massive consolidation across the banking industry. PacWest gonna be a drop in the bucket compared to what comes next.
First, a hastened government led bank consolidation, then a public/private partnership with the remaining large banks to launch a surveilled and controlled digital currency network. We will be told it is more convenient. We will be told it is safer. We will be told it will prevent future bank runs. All of that is marketing bullshit. The goal is greater control of money. The ability to choose how we spend it and how we save it. If you control the money - you control the people that use it.
If you found this post helpful support my work with bitcoin.
-
@ 9ca447d2:fbf5a36d
2025-06-07 07:01:18Wall Street is warming up to Bitcoin and getting closer and closer to it.
Cantor Fitzgerald, one of the oldest and most respected investment banks on Wall Street, has launched a $2 billion bitcoin-backed lending program.
They’ve reportedly already done their first deals, lending to two big digital asset companies: FalconX and Maple Finance.
This is a big step in connecting traditional finance to the fast-moving world of Bitcoin.
Cantor’s new service allows big investors, hedge funds and asset managers, to borrow money using bitcoin as collateral.
This is a game changer for institutions that hold bitcoin, as they can now access liquidity without having to sell their assets.
“Institutions holding bitcoin are looking to broaden their access to diverse funding sources,” said Christian Wall, co-CEO and global head of fixed income at Cantor Fitzgerald.
“And we are excited to support their liquidity needs to help them drive long term growth and success.”
The loans are not speculative or unsecured.
They are structured like traditional finance deals, backed by the borrower’s bitcoin. This reduces the risk for Cantor while giving bitcoin-holding companies new ways to grow and operate.
The first recipients of Cantor’s lending program are FalconX, a digital asset brokerage, and Maple Finance, a blockchain-based lending platform.
FalconX confirmed they secured a credit facility of over $100 million. Maple Finance also received the first tranche of their loan from Cantor.
This comes at a time when the bitcoin lending space is recovering after a tough period. Several big firms went under in 2022 and investor confidence was shaken.
Now with traditional finance on board, bitcoin-backed lending has returned. According to Galaxy Research the total size of the digital asset lending market grew to $36.5 billion in Q4 2024.
Cantor’s move into bitcoin-backed lending isn’t new. They announced their plans in July 2024 and have been building their presence in the Bitcoin space since then.
Earlier this year, they partnered with Tether, SoftBank and Bitfinex to launch Twenty One Capital, a $3.6 billion fund to buy over 42,000 bitcoin.
In May 2025 Cantor Equity Partners merged with Twenty One Capital and bought nearly $459 million worth of bitcoin.
They also own around $1.9 billion in shares of Strategy, a company that holds a lot of bitcoin. Clearly Cantor believes in bitcoin as a long-term asset.
Cantor is also a big player in the stablecoin space.
They manage U.S. Treasury reserves for Tether, the company behind the $142 billion USDT stablecoin. This adds another layer of trust and credibility to Cantor’s digital asset involvement.
To secure the bitcoin used as collateral, Cantor has partnered with digital asset custodians Anchorage Digital and Copper.co.
These companies are known for their robust security and institutional-grade infrastructure. Cantor hasn’t disclosed loan terms or interest rates but confirmed the lending will follow current regulations.
This also shows how traditional financial players are embracing DeFi.
Maple Finance for example allows undercollateralized lending using blockchain. By backing companies like Maple, Cantor is innovating while still having control and compliance.
For years, bitcoin-backed loans were only available through digital-asset-native companies like Genesis, BlockFi, and Ledn.
These loans were mostly for smaller clients and retail investors. But with Cantor’s entry, the scale and professionalism of bitcoin lending are expanding.
-
@ eb0157af:77ab6c55
2025-06-07 13:01:31Romania’s national postal service embraces digital assets by installing the first Bitcoin ATM at its Tulcea branch.
Romania has witnessed the inauguration of the first Bitcoin ATM within the offices of Poșta Română, the country’s national postal service.
The installation took place at the Tulcea branch, the result of a strategic collaboration between Poșta Română and Bitcoin Romania (BTR), one of the country’s leading exchanges. According to the official announcement from the postal service, this marks only the first step in a broader project.
Source: Poșta Română
The next locations set to host these ATMs will be Alexandria, Piatra Neamț, Botoșani, and Nădlac, confirming the postal service’s commitment to widespread distribution of these devices.
The integration of Bitcoin ATMs in post offices is part of a wider strategy to modernize the existing infrastructure through cutting-edge digital technologies. The initiative also aims to expand the range of services available in areas of the country traditionally underserved.
Global adoption
In recent months, global Bitcoin adoption has continued to grow through various channels: individual investors, companies accepting BTC as a payment method, corporations and institutions accumulating Bitcoin as a treasury asset, and nation-states acquiring BTC for strategic reserves.
According to Binance data from January, the number of Bitcoin wallets holding more than $100 in value reached nearly 30 million, marking a 25% year-on-year increase.
Despite this growth, overall Bitcoin adoption remains limited worldwide, even in countries with the highest adoption rates. A Q1 2025 report by River, a Bitcoin financial services company, found that only 4% of the global population owns Bitcoin.
The United States retains the highest concentration of Bitcoin holders, with around 14% of individuals holding BTC in 2025. The total addressable Bitcoin market remains below 1%, due to low retail adoption and under-allocation from institutions, the U.S.-based company noted.
According to River, Bitcoin could absorb 50% of the store-of-value market, equivalent to roughly $225 trillion in value. These asset classes include cash, stocks, real estate, precious metals, and art held for price appreciation or savings. With a current market capitalization slightly above $2 trillion, Bitcoin still has significant room for growth, River suggests.
The post Poșta Română launches the first Bitcoin ATM in post offices appeared first on Atlas21.
-
@ 88cc134b:5ae99079
2025-06-06 22:43:00content
-
@ 7f6db517:a4931eda
2025-06-07 10:02:24People forget Bear Stearns failed March 2008 - months of denial followed before the public realized how bad the situation was under the surface.
Similar happening now but much larger scale. They did not fix fundamental issues after 2008 - everything is more fragile.
The Fed preemptively bailed out every bank with their BTFP program and First Republic Bank still failed. The second largest bank failure in history.
There will be more failures. There will be more bailouts. Depositors will be "protected" by socializing losses across everyone.
Our President and mainstream financial pundits are currently pretending the banking crisis is over while most banks remain insolvent. There are going to be many more bank failures as this ponzi system unravels.
Unlike 2008, we have the ability to opt out of these broken and corrupt institutions by using bitcoin. Bitcoin held in self custody is unique in its lack of counterparty risk - you do not have to trust a bank or other centralized entity to hold it for you. Bitcoin is also incredibly difficult to change by design since it is not controlled by an individual, company, or government - the supply of dollars will inevitably be inflated to bailout these failing banks but bitcoin supply will remain unchanged. I do not need to convince you that bitcoin provides value - these next few years will convince millions.
If you found this post helpful support my work with bitcoin.
-
@ 8bad92c3:ca714aa5
2025-06-07 13:01:40Key Takeaways
Michael Goldstein, aka Bitstein, presents a sweeping philosophical and economic case for going “all in” on Bitcoin, arguing that unlike fiat, which distorts capital formation and fuels short-term thinking, Bitcoin fosters low time preference, meaningful saving, and long-term societal flourishing. At the heart of his thesis is “hodling for good”—a triple-layered idea encompassing permanence, purpose, and the pursuit of higher values like truth, beauty, and legacy. Drawing on thinkers like Aristotle, Hoppe, and Josef Pieper, Goldstein redefines leisure as contemplation, a vital practice in aligning capital with one’s deepest ideals. He urges Bitcoiners to think beyond mere wealth accumulation and consider how their sats can fund enduring institutions, art, and architecture that reflect a moral vision of the future.
Best Quotes
“Let BlackRock buy the houses, and you keep the sats.”
“We're not hodling just for the sake of hodling. There is a purpose to it.”
“Fiat money shortens your time horizon… you can never rest.”
“Savings precedes capital accumulation. You can’t build unless you’ve saved.”
“You're increasing the marginal value of everyone else’s Bitcoin.”
“True leisure is contemplation—the pursuit of the highest good.”
“What is Bitcoin for if not to make the conditions for magnificent acts of creation possible?”
“Bitcoin itself will last forever. Your stack might not. What will outlast your coins?”
“Only a whale can be magnificent.”
“The market will sell you all the crack you want. It’s up to you to demand beauty.”
Conclusion
This episode is a call to reimagine Bitcoin as more than a financial revolution—it’s a blueprint for civilizational renewal. Michael Goldstein reframes hodling as an act of moral stewardship, urging Bitcoiners to lower their time preference, build lasting institutions, and pursue truth, beauty, and legacy—not to escape the world, but to rebuild it on sound foundations.
Timestamps
00:00 - Intro
00:50 - Michael’s BBB presentation Hodl for Good
07:27 - Austrian principles on capital
15:40 - Fiat distorts the economic process
23:34 - Bitkey
24:29 - Hodl for Good triple entendre
29:52 - Bitcoin benefits everyone
39:05 - Unchained
40:14 - Leisure theory of value
52:15 - Heightening life
1:15:48 - Breaking from the chase makes room for magnificence
1:32:32 - Nakamoto Institute’s missionTranscript
(00:00) Fiat money is by its nature a disturbance. If money is being continually produced, especially at an uncertain rate, these uh policies are really just redistribution of wealth. Most are looking for number to go up post hyper bitcoinization. The rate of growth of bitcoin would be more reflective of the growth of the economy as a whole.
(00:23) Ultimately, capital requires knowledge because it requires knowing there is something that you can add to the structures of production to lengthen it in some way that will take time but allow you to have more in the future than you would today. Let Black Rockck buy the houses and you keep the sats, not the other way around.
(00:41) You wait until later for Larry Frink to try to sell you a [Music] mansion. And we're live just like that. Just like that. 3:30 on a Friday, Memorial Day weekend. It's a good good good way to end the week and start the holiday weekend. Yes, sir. Yes, sir. Thank you for having me here. Thank you for coming. I wore this hat specifically because I think it's I think it's very apppropo uh to the conversation we're going to have which is I hope an extension of the presentation you gave at Bitblock Boom Huddle for good. You were working on
(01:24) that for many weeks leading up to uh the conference and explaining how you were structuring it. I think it's a very important topic to discuss now as the Bitcoin price is hitting new all-time highs and people are trying to understand what am I doing with Bitcoin? Like you have you have the different sort of factions within Bitcoin.
(01:47) Uh get on a Bitcoin standard, get on zero, spend as much Bitcoin as possible. You have the sailors of the world are saying buy Bitcoin, never sell, die with your Bitcoin. And I think you do a really good job in that presentation. And I just think your understanding overall of Bitcoin is incredible to put everything into context. It's not either or.
(02:07) It really depends on what you want to accomplish. Yeah, it's definitely there there is no actual one-sizefits-all um for I mean nearly anything in this world. So um yeah, I mean first of all I mean there was it was the first conference talk I had given in maybe five years. I think the one prior to that uh was um bit block boom 2019 which was my meme talk which uh has uh become infamous and notorious.
(02:43) So uh there was also a lot of like high expectations uh you know rockstar dev uh has has treated that you know uh that that talk with a lot of reference. a lot of people have enjoyed it and he was expecting this one to be, you know, the greatest one ever, which is a little bit of a little bit of a uh a burden to live up to those kinds of standards.
(03:08) Um, but you know, because I don't give a lot of talks. Um, you know, I I I like to uh try to bring ideas that might even be ideas that are common. So, something like hodling, we all talk about it constantly. uh but try to bring it from a little bit of a different angle and try to give um a little bit of uh new light to it.
(03:31) I alsove I've I've always enjoyed kind of coming at things from a third angle. Um whenever there's, you know, there's there's all these little debates that we have in in Bitcoin and sometimes it's nice to try to uh step out of it and look at it a little more uh kind of objectively and find ways of understanding it that incorporate the truths of of all of them.
(03:58) uh you know cuz I think we should always be kind of as much as possible after ultimate truth. Um so with this one um yeah I was kind of finding that that sort of golden mean. So uh um yeah and I actually I think about that a lot is uh you know Aristotle has his his concept of the golden mean. So it's like any any virtue is sort of between two vices um because you can you can always you can always take something too far.
(04:27) So you're you're always trying to find that right balance. Um so someone who is uh courageous you know uh one of the vices uh on one side is being basically reckless. I I can't remember what word he would use. Uh but effectively being reckless and just wanting to put yourself in danger for no other reason than just you know the thrill of it.
(04:50) Um and then on the other side you would just have cowardice which is like you're unwilling to put yourself um at any risk at any time. Um, and courage is right there in the middle where it's understanding when is the right time uh to put your put yourself, you know, in in the face of danger um and take it on. And so um in some sense this this was kind of me uh in in some ways like I'm obviously a partisan of hodling.
(05:20) Um, I've for, you know, a long time now talked about the, um, why huddling is good, why people do it, why we should expect it. Um, but still trying to find that that sort of golden mean of like yes, huddle, but also what are we hodling for? And it's not we're we're not hodddling just merely for the sake of hodddling.
(05:45) There there is a a purpose to it. And we should think about that. And that would also help us think more about um what are the benefits of of spending, when should we spend, why should we spend, what should we spend on um to actually give light to that sort of side of the debate. Um so that was that was what I was kind of trying to trying to get into.
(06:09) Um, as well as also just uh at the same time despite all the talk of hodling, there's always this perennial uh there's always this perennial dislike of hodlers because we're treated as uh as if um we're just free riding the network or we're just greedy or you know any of these things. And I wanted to show how uh huddling does serve a real economic purpose.
(06:36) Um, and it does benefit the individual, but it also does uh it it has actual real social um benefits as well beyond merely the individual. Um, so I wanted to give that sort of defense of hodling as well to look at it from um a a broader position than just merely I'm trying to get rich. Um uh because even the person who uh that is all they want to do um just like you know your your pure number grow up go up moonboy even that behavior has positive ramifications on on the economy.
(07:14) And while we might look at them and have uh judgments about their particular choices for them as an individual, we shouldn't discount that uh their actions are having positive positive effects for the rest of the economy. Yeah. So, let's dive into that just not even in the context of Bitcoin because I think you did a great job of this in the presentation.
(07:36) just you've done a good job of this consistently throughout the years that I've known you. Just from like a first principles Austrian economics perspective, what is the idea around capital accumulation, low time preference and deployment of that capital like what what like getting getting into like the nitty-gritty and then applying it to Bitcoin? Yeah, it's it's a big question and um in many ways I mean I I even I barely scratched the surface.
(08:05) uh I I can't claim to have read uh all the volumes of Bombber works, you know, capital and interest and and stuff like that. Um but I think there's some some sort of basic concepts that we can look at that we can uh draw a lot out. Um the first uh I guess let's write that. So repeat so like capital time preference. Yeah. Well, I guess getting more broad like why sav -
@ 7f6db517:a4931eda
2025-06-07 10:02:23Nostr is an open communication protocol that can be used to send messages across a distributed set of relays in a censorship resistant and robust way.
If you missed my nostr introduction post you can find it here. My nostr account can be found here.
We are nearly at the point that if something interesting is posted on a centralized social platform it will usually be posted by someone to nostr.
We are nearly at the point that if something interesting is posted exclusively to nostr it is cross posted by someone to various centralized social platforms.
We are nearly at the point that you can recommend a cross platform app that users can install and easily onboard without additional guides or resources.
As companies continue to build walls around their centralized platforms nostr posts will be the easiest to cross reference and verify - as companies continue to censor their users nostr is the best censorship resistant alternative - gradually then suddenly nostr will become the standard. 🫡
Current Nostr Stats
If you found this post helpful support my work with bitcoin.
-
@ 3c7dc2c5:805642a8
2025-06-06 21:32:46🧠Quote(s) of the week:
"The real Bitcoin Strategic Reserve is the Bitcoin held in the wallets of individual citizens. A strong nation of citizens who have strong Bitcoin reserves is going to be okay." - Marty Bent https://i.ibb.co/rRNJWsJX/Gr4-W7-ZEXc-AAZ4i-U.jpg
🧡Bitcoin news🧡
"The premise required for the universe to function is the conservation of energy. A person without energy is a ghost. An object without energy is an image. Money without energy is credit." —Michael Saylor https://i.ibb.co/N61ZL8sv/Gr4-Xcwg-XQAI5m-Hz.png
On the 26th of May:
➡️'Bitcoin capital flows could exceed $120B by the end of 2025 and reach $300B in 2026, per Bitwise. U.S. spot Bitcoin ETFs attracted over $36.2B in net inflows during 2024, outperforming expectations and exceeding early SPDR Gold Shares (GLD) performance by 20x.' -Bitcoin News
https://i.ibb.co/TMx3mbV6/Gr3kg-LZW8-AAj-TN3.jpg
➡️Michael Saylor's STRATEGY becomes the first company to hold over 500,000 Bitcoin on its balance sheet. Over the last 64 days, Saylor has purchased approximately 80,000 Bitcoin.
➡️River: '2-3% inflation per year sounds harmless... until you zoom out. Every line on this chart is a reason Bitcoin exists.'
https://i.ibb.co/fYPW6RRh/Gr6-LXts-Ww-AEj4no.jpg
➡️State Street Corporation has bought 1.13 million Strategy₿ $MSTR stocks for 344.78 million dollars at an average price of $304.41 per share in Q1 2025. Their total holdings are 4.98 million shares worth over 1.84 billion dollars.
On the 27th of May:
➡️Cantor Fitzgerald officially launches $2 BILLION Bitcoin-backed lending with first loans, partnering with Anchorage Digital and Copper. - Bloomberg
➡️Trump Media Announces Approximately $2.5 Billion Bitcoin Treasury Deal. Trump Media is following the MSTR playbook. With that amount, you can now buy over 22,500 BTC. TMTG would then enter the list of largest corporate Bitcoin holders in fourth place.
Pledditor: "Trump just sabotaged Cynthia Lummis's BITCOIN ACT by doing this I see no future where Trump buys billions of dollars of bitcoin and then Congress codifies SBR into law. The corruption is just too brazen." Spot on! Considering the brazen corruption so far this actually makes it more likely.
➡️'Jack Dorsey’s Block to launch Bitcoin Lightning Payments on all Square terminals!' -Bitcoin Archive
Jack Dorsey’s Block is launching Bitcoin payments on Square at the Bitcoin Conference. Merchants can choose to hold the BTC or automatically convert it to fiat. The feature will expand to more sellers later this year.
➡️Sminston With: "But yes, I'm sure this cycle has peaked."
'Bitcoin cycles @ power law fit, a la 365-day SMA At ~$110,000/coin today, the 365-dSMA is only touching the trendline; History shows each cycle moving 2-3x higher than this. Have a nice day!'
https://i.ibb.co/gMHhq3FP/Gr9rka-ZXg-AAI5-Ck.jpg
➡️Whales have shifted to net distribution with a score around 0.3, reversing their earlier accumulation pattern during this year's price rallies, according to data from Glassnode.
➡️Fast food giant Steak 'n Shake announced they're saving 50% in processing fees accepting Bitcoin payments '#Bitcoin is faster than credit cards'
➡️BlackRock increases Bitcoin exposure for their own funds. The Strategic Income Opportunities Portfolio now holds 2,123,592 shares of IBIT as of March 31 (worth $99.4M) up from 1,691,143 shares on December 31.
➡️Interesting, so Michael Saylor is refusing to publish on-chain proof of Bitcoin reserves...
If Metaplanet and El Salvador can do proof of reserves, why not Strategy? At the end of the day, it's investors' money that is being used to buy Bitcoin. What am I missing?
Arkham: 'SAYLOR SAID HE WOULD NEVER REVEAL HIS ADDRESSES ... SO WE DID We have identified an additional 70,816 BTC belonging to Strategy, bringing our total identified MSTR BTC holdings to $54.5 Billion. We are the first to identify these holdings publicly. This represents 87.5% of total MSTR holdings (including assets in Fidelity Digital’s omnibus custody).'
https://intel.arkm.com/explorer/entity/microstrategy
Don't Trust, Verify!
On the 28th of May:
➡️GameStop CEO says the company bought 4,700 #Bitcoin because it's better than gold. "It has asymmetric upside."
Parker Lewis: Gamestop bought 4,710 Bitcoin (or 471 billion bitcoins) and the CEO says things like "if the thesis is correct." That is a scary place to be, relying on some thesis. "But, we'll see what happens."
Zero vision, great. This pretty much sums up the Bitcoin conference from last week: a repetitive parroting of Bitcoin fundamentals with zero substance beyond “buy Bitcoin, it’s the future.”
Most of the time these people will do the following thing. Sell low after buying high. Anyway, Gamestop is up 4.20% in pre-market after announcing a purchase of 4,710 Bitcoin. They're now the 13th largest public company holder of BTC in the world.
➡️IMF says "efforts will continue" to prevent El Salvador from acquiring more Bitcoin.
➡️The U.S. Department of Labor has officially reversed its 2022 guidance on Bitcoin and crypto in retirement plans.
➡️ UK MP @EmmaforWycombe writes that the “UK government currently has no plans to adopt a strategic bitcoin reserve.” She believes Bitcoin’s “properties as an asset nonetheless remain inconsistent with the objectives and investment principles that govern the Government's foreign exchange reserves.” The UK government appears dead set on fumbling a bag of 61,000 BTC. HFSP! https://i.ibb.co/1tMHmqKw/Gs-C3-D54-Wc-AAdg0d.jpg
➡️Ryan Gentry: 'The biggest news at @TheBitcoinConf just dropped. @milessuter shared that the c= routing node is earning 9.7% APR on its bitcoin liquidity (which I’d estimate at ~$10M, 50% of its 184 BTC of public capacity). True non-custodial yield based on the utility of bitcoin payments.'
Great response on the matter by Sam Callahan: "Imagine a treasury company with 1,000 BTC earning ~10% annual yield. Sovereign, Bitcoin-native yield without counterparty risk that’s tied to the economic activity of Lightning instead of interest rate policy. At $1M per BTC, that’s $100M in annual recurring revenue."
9.7% REAL yield on a payment network while holding the keys to their BTC the entire time!! Madness! The constant claims that no one uses lightning are ridiculous.
On the 29th of May:
➡️ Investors are selling gold for Bitcoin - Bloomberg Gold ETF outflows: -$2.8 billion Bitcoin ETF inflows: +$9 billion.
➡️'Spanish banking giant Banco Santander looking to make Bitcoin and stablecoins available to retail clients. Santander has 175 million customers worldwide and is the BIGGEST lender in the Eurozone.' - Bitcoin Archive
➡️The U.S. Department of Labor rescinded 2022 guidance discouraging 401(k) plans from including Bitcoin and cryptocurrency, allowing retirement plans to potentially include Bitcoin and other digital assets. If just 1% of the $8 trillion in 401k funds flows into Bitcoin, that’s $80 billion of new demand, and 2x more than what’s flowed into Bitcoin ETFs.
➡️ Blockstream launches the Blockstream App, enabling users to buy Bitcoin directly and store it in a self-custodial wallet, eliminating the need for third-party custodians.
➡️$550 billion DBS bank says Bitcoin mining could help stabilize the grid and reduce emissions.
➡️Tether reveals that it owns over 100,000 Bitcoin & +50 tons of gold.
➡️Paris Saint Germain adopts Bitcoin as a Treasury Reserve asset.
➡️'The supply of BTC held by long-term holders has now increased by OVER 1.4 MILLION in under 3 months! The market's most experienced participants are refusing to sell Bitcoin at these prices, and soon there won't be enough $BTC left for those late to the party...' - Bitcoin Magazine Pro
On the 30th of May:
➡️Joe Consorti:
It was foretold. Should Bitcoin follow global M2 all the way down on this correction, we may see $97,500. May not happen, may see lower, nobody knows. The only certainty is that the global aggregate of fiat denominated in USD will rise, and so too will BTC follow it in time.
https://i.ibb.co/5gpq4c53/Gs-Pp-SWua-MAUwzj-T.jpg
➡️Buy Real Bitcoin, and NOT:
⇒ BTC Companies,
⇒ Wrapped BTC
⇒ BTC IOU's
⇒ ...
Bitcoin in self-custody is the only way you get all the benefits of BTC.
https://i.ibb.co/0pZgdQjP/Gs-ND795-Xs-AA23-Yx.jpg
And please, as Wicked described it perfectly: 'Don’t run a node for Bitcoin, run and use it for yourself. Your humble little node isn’t saving the network, but it can protect your privacy and verify that the coins you receive are legit…if you’re actually using it.'
On the 31st of May:
➡️The Texas legislature has passed the Strategic Bitcoin Reserve bill. It now goes to Governor Abbott who is expected to sign it into law. This is a historic moment for Bitcoin and Texas, one of the largest (8th largest) economies in the world.
➡️Bitcoin News: 'Norwegian digital asset firm K33 has raised 60 million SEK (about $5.6 million) to expand its Bitcoin treasury. The funds were secured from insiders and strategic investors, including Klein Group and Modiola AS. CEO Torbjørn Bull Jenssen said the move reflects K33’s belief in Bitcoin’s long-term role in global finance and strengthens the company’s balance sheet as it grows its presence as a leading crypto broker in Europe.'
➡️ IMF raises concern over Pakistan‘s Bitcoin mining power plans. They want everyone under their control. They can't do it with Bitcoin. They might be losing another 'customer'. The IMF sees all the debt slaves becoming financially sovereign and independent by embracing Bitcoin.
https://i.ibb.co/BV0V1c6S/Gs-Sj-NP5-WIAAZv-Fo.jpg
I have rewritten Daniel Batten's quote/post on this matter:
**
'Why Pakistan’s Bitcoin Plans May Not Survive the IMF"
**
While I’m an optimist by nature—and I truly hope I’m wrong—I believe Pakistan will struggle to follow through on its Bitcoin and Bitcoin mining ambitions.
Short Answer: The IMF
Mid-Length Explanation:
- Bitcoin poses a significant threat to the IMF’s influence—on at least five fronts.
- Pakistan is heavily indebted to the IMF, and history shows a clear pattern: the IMF has already derailed or scaled back Bitcoin initiatives in all of the three countries that attempted adoption—El Salvador, Argentina, and the Central African Republic.
- Pakistan will likely face similar pushback.
- And given Pakistan’s economic vulnerabilities, it’s equally likely that the IMF will succeed.
What the IMF’s Next Steps Might Look Like
-
Manufacturing Doubt and Delay The IMF will likely begin by generating fear, uncertainty, and doubt (FUD) around the viability of Pakistan’s Bitcoin program. Expect references to:
-
“Energy shortages”
- “High electricity costs”
- “Unclear regulatory frameworks”
- “Anti-money laundering (AML) concerns”
These will be framed as responsible concerns by a seasoned financial guardian. The IMF may also imply that Pakistan acted prematurely, noting the country did not consult the IMF before announcing its Bitcoin initiative—suggesting a lack of due diligence. However, these objections are highly debatable. Multiple peer-reviewed studies show that Bitcoin mining can improve grid stability and lower electricity costs. Moreover, examples like Bhutan and El Salvador demonstrate how Bitcoin can enhance economic sovereignty. But that’s precisely the issue: economic sovereignty reduces the IMF’s lending relevance, and that’s not in the IMF’s institutional interest.
- Weaponizing Debt and Conditionality
Under its $7 billion Extended Fund Facility program, the IMF is likely to:
- Demand FATF-compliant crypto regulation
- Prohibit state-level Bitcoin accumulation
- Tie loan disbursements to rollbacks on Bitcoin and mining-related policies
This approach exploits Pakistan’s financial dependence on IMF loans to meet external debt obligations and maintain its foreign exchange reserves.
- Enforcing Compliance Through Vulnerability
Pakistan’s financial position leaves little room for defiance:
- It faces $12.7 billion in debt repayments in FY 2025.
- Without IMF support, reserves could fall below $4 billion, covering less than one month of imports—far below the threshold needed for macroeconomic stability.
- A repeat of early 2023, when reserves fell to $2.92 billion, would likely trigger another balance-of-payments crisis.
This would pressure the Pakistani rupee, already having depreciated from PKR 100 to over 330 per USD since 2017, and could push the country closer to default. Given its past FATF grey-listing, Pakistan cannot afford another multilateral funding freeze.
So What Does This All Mean?
It means the gloves are off.
The IMF is no longer merely advising—it’s actively resisting. Bitcoin threatens its long-standing monopoly over financially vulnerable nations, and Pakistan is shaping up to be the fourth test case of this resistance. If the IMF pressures Pakistan into reversing course, it will mark a 4-for-4 track record in blocking Bitcoin adoption efforts by countries under its financial umbrella.
The Bigger Picture
This is how entrenched institutions behave when facing disruption. They won’t stand aside—they’ll use every tool available to defend the system they control.
If a nation wants to adopt Bitcoin, it must either:
- Be financially independent, like Bhutan or even the United States, or
- Secure alternative funding, so IMF leverage becomes ineffective.
Bitcoin isn’t just a financial network. It’s a threat to the debt-based global order—and that means those invested in the status quo will fight back.'
➡️'Recent analysis by market research firm Alphractal suggests that, based on its current Sharpe Ratio, a key measure of risk-adjusted returns, Bitcoin still has room to run. The metric, which compares excess returns to volatility, is trending upward but remains well below the historical levels that have marked past market tops in 2013, 2017, and 2021.' - Bitcoin News
https://i.ibb.co/r245Smsm/Gs-PZ3f-XXMAATui8.jpg
➡️Publicly-listed Brazilian fintech Méliuz to raise $78m to buy more Bitcoin, after buying $26.5m Bitcoin yesterday.
On the 1st of June:
➡️Bitcoin made its Highest Monthly Close ever last night!
➡️ Someone just donated 300 Bitcoin worth +$30m to Ross Ulbricht, founder of SilkRoad.
https://intel.arkm.com/explorer/entity/ross-ulbricht
ZakeXBT: 'Interestingly the 300 BTC appears to come from Jambler outputs (sketchy centralized mixing service) Whereas normal privacy enthusiasts use decentralized mixers (Wasabi, Samourai, etc).'
Even if he is washing his own Bitcoin, (I don't think he is that stupid) not everyone is a sheep what he does is his own business no need to attract attention to it. I really don't give a damn if he still had those funds, or if it's donations. Good for him in any case.
➡️ New Record Bitcoin Hashrate 920,000,000,000,000,000,000x per second.
https://i.ibb.co/YFSWWYfD/Gs-W829f-XAAAr-KI5.jpg
Bitcoin's global hashrate has reached a new all-time high, with data from Hashrate Index showing a 7-day simple moving average peak of 943 EH/s.
➡️Top Bitcoin holders: 1. Satoshi Nakamoto: 1.1M BTC ($114B) 2. Coinbase: 983K BTC ($103B) 3. Binance: 619K BTC ($65B) 4. BlackRock: 600K BTC ($63B) 5. Strategy: 580K BTC ($47B) 6. Fidelity: 346K BTC ($36B) 7. Grayscale: 218K BTC ($23B) 8. U.S. Government: 196K BTC ($20B)
On the 2nd of June:
➡️IG Group becomes the first UK-listed firm to offer Bitcoin trading to retail investors - Financial Times “Customer demand [for bitcoin] is reaching a tipping point,” says MD Michael Healy
➡️Tether moved 14,000 Bitcoin worth +$1.4 BILLION to Twenty-One Capital (XXI) as part of its investment.
➡️Hong Kong-based Reitar Logtech announces they will buy $1.5 billion Bitcoin for their reserves — SEC filing The logistics and real estate company says the move strengthens its financial foundation as it scales its global tech platform.
➡️Russia's largest bank Sberbank launches structured bonds tied to Bitcoin. Source
"No power on earth can stop an idea whose time has come"
https://i.ibb.co/pvk8dMrM/Gsc-Vld-Ww-AACSLI.png
➡️Australian Bitcoin ETFs took in 60x more funds thant Gold ETFs in May - AFR Bitcoin = $87.3m Gold = $1.5m
💸Traditional Finance / Macro:
👉🏽No news
🏦Banks:
On the 21st of May: 👉🏽No news
🌎Macro/Geopolitics:
So last week we received the latest Google Veo 3 AI videos. Prompt Theory (Made with Veo 3). What if AI-generated characters refused to believe they were AI-generated?
People were going nuts online with statements like: "Inevitably, this is going to end up destroying life as we know it. AI growth from just two years ago to now is insane. We are dooming ourselves. I promise you, this all ends badly for humanity."
I don't think so. Yes, in some cases it will be a bad thing. But as Guy Swann said: "They said even worse about photography No it won’t end the world. You just won’t trust anything online because you see it. We know what the solution to that is already, build local communities and use cryptographic signatures online. It just makes trust a much more valuable commodity. Which is a good thing, imo."
In the end, it will be a good thing to use Bitcoin. Build again trust, and build local communities.
On the 26th of May:
👉🏽'Japan's bond market is EXPLODING: Japan's 40-year government bond yield has SKYROCKETED over the last 3 years and is trading at record highs. In 45 days, Japan's 30Y Government Bond Yield rose a MASSIVE +100 basis points, to a record 3.20%. Over $500 BILLION worth of "safe" 40Y Japanese Government Bonds have lost 20%+ in 6 weeks.
Will this trigger bank failures? Is carry trade at risk? Is the Bank of Japan going to step in? The financial system is fragile.' - Global Markets Investor
https://i.ibb.co/CKbmNDQx/Gr6-Ud-WOW8-AA3-Vj0.png
On the 27th of May:
👉🏽Michael A. Arouet: 'Many people will lose their well-paid jobs. Investment bankers, lawyers, consultants, accountants, doctors, designers, architects, and others. It will be brutal folks, buckle up.'
https://i.ibb.co/Zz0rMyM5/Gr8p6u-Xg-AA-Mp5.jpg
👉🏽38% of the U.S. debt maturity needs to be rolled over into long-term Treasuries by 2026.
https://i.ibb.co/8np5KF04/Gr6-Iupi-XYAArmx6.jpg
👉🏽'Unrealized losses on domestic bond holdings for 4 of Japan’s largest life insurers rose to a record $60 billion in Q1 2025. This is 4 TIMES more than the unrealized losses seen in Q1 2024. Nippon Life, the largest Japanese insurer and the world’s sixth-largest life insurance company posted $25 billion in paper losses, marking a +260% jump YoY. This comes as Japan’s 30-year and 40-year bonds have seen one of their most violent price declines in history. Japan’s financial system is on the edge.' -TKL
https://i.ibb.co/nqHCKFGn/Gr0-KYx-MX0-AA0-BCo.png
👉🏽 'Gold's funds posted $2.9 billion net OUTFLOW last week, the biggest since April 2013 and the 3rd-largest on record. This comes after a massive rally year-to-date. Much needed correction has finally come.' -Global Markets Investor
👉🏽Japan's bond market liquidity has currently dropped to 2008 Lehman crisis levels. Remember when troubles started in Iceland in 2007? Today we have Japan, the UK, and Switzerland in a similar spot…
On the 28th of May:
👉🏽France Running Out Of Money? Auditors Warn State Has "Lost Control" Of Welfare Spending, IMF Demands Cuts
https://www.zerohedge.com/economics/france-running-out-money-auditors-warn-state-has-lost-control-welfare-spending-imf
👉🏽The US M2 money supply hits a new all-time high in April for the first in three years. Got Bitcoin?
https://i.ibb.co/GQLzsjgt/Gr-2ihc-Xg-AAy-D4-U.jpg
👉🏽McKinsey terminates 10% of staff (largest in 100 years) due to a sharp slowdown in revenue growth across the consulting market. It’s actually over for MBA consultants. McKinsey said: “Generative AI enables new levels of productivity for our teams.” Source: https://archive.ph/Q2zm8
👉🏽What a graph. The median age of first-time home buyers is spiking, now approaching 40.
https://i.ibb.co/QFdnCf9V/Gs-Cm-YUv-XAAAI0ck.jpg
Russ Greene: "When boomers are done, the median first-time home buyer will be 48, the national debt will be 60 trillion, the code of federal regulations will be a quarter million pages long, and they will not at any point have been vaguely aware of what they did to this nation."
Unfortunately, this is also happening in the Netherlands.
👉🏽'Saving becomes impossible in the Netherlands with the new draconian Box 3 regulation.
Monthly contribution: €150
Investment horizon: 40 years
Annual return: 10%
Model 1: 1.2% wealth tax per year on total assets (the old tax system) Model 2: 36% tax per year on unrealized gains
The difference between having enough saved for retirement or not…
Due to the compound interest effect, you miss out on it. Even if you never sell over those 40 years and only invest in S&P 500 ETFs, you still miss out on hundreds of thousands of euros…
No rights can be derived from these calculations. Obviously, I'm too lazy to do the math myself, so all calculations were done by AI.' - Tsartoshi
https://i.ibb.co/nsnTZV08/Gs-Cbc-CW0-AA0-Qe-I.jpg https://i.ibb.co/DD72kNsS/Gs-Cc-Fet-Wg-AA7g-W5.png
👉🏽The White House says there will be no increase in the US deficit under President Trump’s tax bill. Recent estimates have suggested the bill would increase the US deficit by $3.8 trillion.
On the 29th of May:
👉🏽Alex Recouso: 'The recent capital gains tax increase in the UK was expected to bring additional tax revenue. Instead, high-net-worth individuals and families are leaving the country, leading to a 10% fall in net capital gains tax revenue. Welcome to the Laffer curve, suckers.'
https://i.ibb.co/KjbtDNwT/Gs-Ij-Ay-Ua-UAEz-Cbm.jpg
Amazing how so many people in governments around the world don’t understand human nature. Same story in every country that tries this. Socialists are a strange species, they always repeat the same mistakes and are surprised that the results are always the same. Why are they so detached from reality? I suspect future attempts will include banning people from leaving entirely.
Another example...
👉🏽North Sea electricity grid leads to a sharp increase in energy bills. Source NOS 'The construction of infrastructure for offshore wind farms in the North Sea could lead to significantly higher energy bills for Dutch households. Over the next 15 years, a staggering €88 billion will be spent on laying cables and building platforms, according to government calculations made earlier this year. While energy companies currently receive no subsidies for building wind farms, that doesn’t mean it won’t cost us money.'
That makes sense, right?
Sun and wind are free. So the more we invest in that free energy, the more expensive energy becomes.
The climate…
The following I have asked chat GPT:
What Could €88 Billion Buy in Nuclear Energy?
Let’s take a closer look at what €88 billion could achieve if invested in nuclear power, using realistic and conservative estimates.
Average Cost of a Nuclear Power Plant
The construction of a modern nuclear power plant—such as an EPR or AP1000—typically ranges between €8 and €12 billion, depending on factors like location, scale, regulatory environment, and potential delays.
For this estimate, we'll use a conservative average of:
👉 €10 billion per plant How Many Plants for €88 Billion? Dividing the total investment by the average cost: €88 billion ÷ €10 billion = 8.8 nuclear plants
👉 This means approximately 8 to 9 large-scale nuclear power plants could be built. Electricity Output Comparison
A single 1.6 GW nuclear plant generates around 12 to 13 TWh annually. Therefore, 8 plants would produce approximately 100 TWh per year. This output would cover roughly 50% of the Netherlands’ current annual electricity consumption—and do so with a stable, low-carbon baseload supply.
Now as you might already know I am apolitical. But sjeezzzz
'How is this possible, Frans Timmerman? “You hardly need any public money to invest in renewables,” he said! Was this ignorance or deliberate misinformation? Socialist “solutions” should always come with a clear warning label:
🚨 Warning: Past socialist outcomes guarantee deep misery for the future.
Plenty of examples. Everyone is equally poor! “Climate justice.” Who comes up with this stuff?'
Sources: https://www.euronews.com/2021/11/26/you-hardly-need-any-public-money-to-invest-in-renewables-frans-timmermans
Again, I am not picking a political side, just stating the obvious... Check out the next example...
On the 30th of May:
👉🏽'It’s really time for the West to rethink its economic model, moving to a service-based economy creates security and geopolitical risks. We need to rebuild our manufacturing base.' - Michael A. Arouet Chart @econovisuals
https://i.ibb.co/QvFTQrtx/Gs-Lf-Wl5-XMAALw6t.jpg
Funny isn't it how regulatory burden distorts incentives away from manufacturing and atoms to services and bytes? We traded short-term corporate profits for long-term civilizational power. Is this the point of no return, or can the West still rebuild what it systematically dismantled?
👉🏽The European dream. Work 40 hours per week and get taxed close to 50%, if not more, to fund a bloated government and mass immigration. And because it's so much fun, you get to do it until you're 70. https://i.ibb.co/YF0HZzMs/Gs-Mm-Ti-HWUAAf-IRb.png
👉🏽Argentina's economy expands 8% year-over-year in april according to EMAE
👉🏽TKL: 'The US government's default risk is rising: 1-year US credit default swaps (CDS) have risen to 52 basis points, near the highest since 2023.
Excluding the 2023 debt ceiling crisis, the cost of insurance against the US government's default is at its highest in 12 years. Furthermore, the outstanding volume of credit default swaps has risen by ~$1 billion this year, to $3.9 billion, the second-highest since 2014. This comes as investors are increasingly concerned about the US government's rising deficit.
The US reached its statutory borrowing limit in January and employed “extraordinary measures” to avoid a default. The debt ceiling crisis has never truly been resolved.'
On the 31st of May:
👉🏽'Global debt just hit $324 TRILLION. That’s 3x the size of the world’s entire economy. This isn’t just a number, it’s a ticking time bomb.' - Stockmarket News
Why Bitcoin, well this:
https://i.ibb.co/MkT77MDD/Gs-TWuir-WQAAr3-Q6.jpg
👉🏽Japanese Stocks just saw a weekly outflow of almost $12 Billion, the largest in history.
On the 2nd of June:
👉🏽JEROME POWELL: "The end of the Breton-Woods era fundamentally changed monetary policy" He just told you "WTF Happened in 1971?".
The end of the Bretton Woods system in 1971, as Jerome Powell noted, shifted global monetary policy from fixed exchange rates, where currencies were pegged to the U.S. dollar (tied to gold at $35/ounce), to floating rates driven by market forces. This gave central banks like the Federal Reserve more flexibility to manage domestic issues like inflation and jobs but made global economic ties more complex. The collapse happened due to U.S. dollar surpluses from spending on the Vietnam War and trade deficits, leading to gold reserve losses as countries like France swapped dollars for gold. Nixon ended dollar-gold convertibility to protect reserves. This shift caused trends like higher inflation and inequality, often linked to "WTF Happened in 1971?" debates.
Here is the video: https://x.com/RadarHits/status/1929611410100937125
Meanwhile...
👉🏽The US will never default on its debt, says Treasury Secretary Scott Bessent. "We are on the warning track and we will never hit the wall."
👉🏽Gold prices surge above $3400/oz as markets react to rising geopolitical tensions between Russia and Ukraine.
👉🏽Sminston With: "Nothing stops this (already completely derailed) train. - - - If you haven't seen this, you should: the correlation between M2 money supply and US total debt (USD). In the early COVID-19 days, the money supply was way ahead of debt, and now the debt is way ahead of the money supply. Can you say "mean reversion?".
https://i.ibb.co/zHN91wsR/Gsaw-Hy-Zag-AAo-HHV.jpg
🎁If you have made it this far, I would like to give you a little gift:
Lysander: "Lyn Alden gave one of the clearest breakdowns of why the U.S. is on an unstoppable fiscal path—and why Bitcoin matters more than ever because of it.
Lyn Alden walks through the numbers behind the federal deficit, interest expenses, Social Security, and the structural changes that happened post-2008. The short version? We’re in a new era. One where the government can’t slow down even if it wants to.
The debt is compounding. The interest expense is rising. The trust funds are running dry. And the political will to do anything about it doesn’t exist.
Her phrase: “Nothing stops this train.” Not because of ideology, but because of math—and human nature.
This isn’t hyperinflation doom-talk. It’s a sober look at what happens when a system built on ever-growing debt reaches its limits—and why Bitcoin, with its fixed supply and transparent rules, is the opposite of that system.
Highly recommend watching this one all the way through."
https://x.com/UnderCoercion/status/1928280669764931860
Credit: I have used multiple sources!
My savings account: Bitcoin The tool I recommend for setting up a Bitcoin savings plan: PocketBitcoin especially suited for beginners or people who want to invest in Bitcoin with an automated investment plan once a week or monthly.
Use the code SE3997
Get your Bitcoin out of exchanges. Save them on a hardware wallet, run your own node...be your own bank. Not your keys, not your coins. It's that simple. ⠀ ⠀
⠀⠀ ⠀ ⠀⠀⠀
Do you think this post is helpful to you?
If so, please share it and support my work with a zap.
▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃
⭐ Many thanks⭐
Felipe - Bitcoin Friday!
▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃
-
@ 9ca447d2:fbf5a36d
2025-06-07 13:01:28Trump Media & Technology Group (TMTG), the company behind Truth Social and other Trump-branded digital platforms, is planning to raise $2.5 billion to build one of the largest bitcoin treasuries among public companies.
The deal involves the sale of approximately $1.5 billion in common stock and $1.0 billion in convertible senior secured notes.
According to the company, the offering is expected to close by the end of May, pending standard closing conditions.
Devin Nunes, CEO of Trump Media, said the investment in bitcoin is a big part of the company’s long-term plan.
“We view Bitcoin as an apex instrument of financial freedom,” Nunes said.
“This investment will help defend our Company against harassment and discrimination by financial institutions, which plague many Americans and U.S. firms.”
He added that the bitcoin treasury will be used to create new synergies across the company’s platforms including Truth Social, Truth+, and the upcoming financial tech brand Truth.Fi.
“It’s a big step forward in the company’s plans to evolve into a holding company by acquiring additional profit-generating, crown jewel assets consistent with America First principles,” Nunes said.
The $2.5 billion raise will come from about 50 institutional investors. The $1 billion in convertible notes will have 0% interest and be convertible into shares at a 35% premium.
TMTG’s current liquid assets, including cash and short-term investments, are $759 million as of the end of the first quarter of 2025. With this new funding, the company’s liquid assets will be over $3 billion.
Custody of the bitcoin treasury will be handled by Crypto.com and Anchorage Digital. They will manage and store the digital assets.
Earlier this week The Financial Times reported Trump Media was planning to raise $3 billion for digital assets acquisitions.
The article said the funds would be used to buy bitcoin and other digital assets, and an announcement could come before a major related event in Las Vegas.
Related: Bitcoin 2025 Conference Kicks off in Las Vegas Today
Trump Media denied the FT report. In a statement, the company said, “Apparently the Financial Times has dumb writers listening to even dumber sources.”
There was no further comment. However, the official $2.5 billion figure, which was announced shortly after by Trump Media through a press release, aligns with its actual filing and investor communication.
Trump Media’s official announcement
This comes at a time when the Trump family and political allies are showing renewed interest in Bitcoin.
President Donald Trump who is now back in office since the 2025 election, has said he wants to make the U.S. the “crypto capital of the world.”
Trump Media is also working on retail bitcoin investment products including ETFs aligned with America First policies.
These products will make bitcoin more accessible to retail investors and support pro-Trump financial initiatives.
But not everyone is happy.
Democratic Senator Elizabeth Warren recently expressed concerns about Trump Media’s Bitcoin plans. She asked U.S. regulators to clarify their oversight of digital-asset ETFs, warning of investor risk.
Industry insiders are comparing Trump Media’s plans to Strategy (MSTR) which has built a multi-billion dollar bitcoin treasury over the last year. They used stock and bond sales to fund their bitcoin purchases.
-
@ eb0157af:77ab6c55
2025-06-07 13:01:30Uber’s CEO has revealed the company’s interest in stablecoins as a solution to reduce the costs of cross-border payments.
The multinational transport giant is currently in an exploratory phase regarding the integration of stablecoins into its global payment systems. The disclosure came during a speech by CEO Dara Khosrowshahi at the Bloomberg Tech conference in San Francisco.
“We’re still in the study phase, I’d say, but stablecoin is one of the, for me, more interesting instantiations of crypto that has a practical benefit other than crypto as a store of value.” Khosrowshahi stated.
The Uber CEO explained how stablecoins could represent a cost-effective alternative to traditional payment systems for international transactions. According to Khosrowshahi, these digital currencies could significantly reduce the company’s operational expenses by eliminating high fees and delays typically associated with conventional bank transfers.
Implementing stablecoins could streamline Uber’s global payment operations, with particularly significant benefits in markets burdened by high remittance costs or unstable local currencies — enabling faster and more reliable payments to the company’s business partners. However, Uber has yet to specify which stablecoins or blockchain networks it might adopt, nor has it provided a precise timeline for implementation.
Uber’s interest in stablecoins comes as the legislative landscape continues to evolve. The U.S. Congress is currently reviewing two major legislative proposals: the GENIUS Act and the STABLE Act, both aimed at establishing a clear regulatory framework for dollar-pegged digital currencies. These bills focus on reserve standards and anti-money laundering requirements but have yet to be finalized.
The post Uber eyes stablecoins to optimize international payments appeared first on Atlas21.
-
@ 523a8281:fc94329a
2025-06-07 05:11:07The Darkest Hour of the GameFi Market and the Glimmer of Hope Amid the prolonged downturn of the cryptocurrency market, the GameFi sector is undergoing an unprecedented trial. According to CoinGecko data, the total market capitalization of the GameFi sector shrank by 35% from its peak in the first half of 2024. DappRadar statistics further confirm the industry's decline—numerous projects have struggled to maintain sustainable economic models, leading to severe user attrition. Although the number of daily active users has grown by 18%, this "volume up, price down" phenomenon reflects the market's painful transition from speculation-driven to value-driven development.
Even more alarming is that 93% of projects in the industry have either stagnated or perished, with the average project lifespan lasting a mere four months. Token prices have fallen more than 95% from their historical highs, extinguishing the enthusiasm of countless investors and players. The once-glorious "Play-to-Earn" and "X to Earn" models collapsed after the profit bubbles burst, exposing the fatal flaws of over-reliance on financial speculation while neglecting the essence of gaming.
However, crises often breed opportunities. The GameFi sector has not been crushed by the bear market but has instead started to clarify its future direction amid the turbulence. This deep market adjustment acts as a brutal filter, leaving only those projects that abandon token speculation, focus on player experience, and build sustainable economic systems to stand out during this industry-wide reshuffle.
- Neo Fantasy: A Game-Changer Breaking the Deadlock Neo Fantasy is not just a blockchain game; it is a gateway to the ACGN metaverse. In the mysterious land of Loren, players become brave adventurers tasked with reclaiming wealth from the forces of darkness. The game seamlessly integrates compelling storylines with cutting-edge blockchain technology, allowing players to immerse themselves in epic adventures while earning significant rewards through diverse gameplay. From the moment players step into the game, they are captivated by its unique charm—whether it's the vividly designed characters or the grand battle scenes, everything reflects Neo Fantasy's relentless pursuit of quality.
Looking back at the development trajectory of the GameFi industry, its collapse was no accident. Many past projects focused entirely on speculative financial incentives, neglecting the refinement of game content and the construction of community ecosystems. Complex and obscure tokenomics and flashy but impractical DeFi concepts attracted attention in the short term but failed to mask the lack of gameplay. Once token rewards diminished, users quickly scattered, leading to the project's rapid decline. This blind pursuit of short-term gains ultimately triggered a full-blown industry crisis, serving as a wake-up call for future projects.
Neo Fantasy has keenly identified these industry pitfalls and introduced a series of innovative measures to break the deadlock:
Enhancing User Experience: The team accurately addressed traditional gamers' aversion to complex blockchain interfaces by developing an independent application that combines the seamless operation of traditional games with the "play-to-earn" features of Web3. New players can easily get started without deep knowledge of blockchain technology. This low-barrier design significantly broadens the user base, attracting many players who were previously deterred by blockchain games.
Community and Market Expansion: Neo Fantasy has demonstrated strong strategic foresight by establishing deep collaborations with renowned platforms like Nextype, quickly amassing a large user base. Moreover, its plan to launch on mainstream app stores such as Google Play and the App Store aims to tap into the billion-user Web2 gaming market. This move will undoubtedly break the barriers of blockchain gaming, allowing more ordinary players to experience Neo Fantasy's unique charm and paving the way for broader growth.
Innovative Gameplay: Sustained innovation in gameplay is key to Neo Fantasy's vitality. The team has abandoned the outdated model of solely relying on token-driven user engagement and continuously introduces new features. PvE dungeons are filled with challenges and surprises, requiring strategic cooperation to overcome; the PvP arena is packed with skilled players, offering intense real-time battles; auto chess combines strategy and luck, making each match unpredictable; and guild tournaments emphasize teamwork, fostering strong bonds among players. Future plans for open-world and virtual-world experiences will further expand the game's boundaries, delivering unprecedented immersive experiences.
Sustainable Tokenomics: The construction of the token economy showcases the team's wisdom and vision. Centered around the ERT token, the system serves as both a governance tool and a utility token. Through a carefully designed economic cycle model, every in-game action—whether upgrading heroes, enhancing equipment, or participating in events—is closely tied to ERT. This design ensures the token's utility while avoiding unsustainable high-yield promises, achieving self-sufficient and healthy economic circulation. Additionally, offering free hero characters to new players lowers the participation barrier, attracting a diverse and loyal community of traditional gamers.
-
Breaking Through the Bear Market: Neo Fantasy's Keys to Success and Industry Insights Under the severe challenges of the bear market, Neo Fantasy's development strategy has pointed the way forward for GameFi projects. Gameplay is the foundation of survival; only with outstanding fun and playability can players truly immerse themselves. A strong community is the cornerstone of development; an active player community not only enhances user retention but also injects continuous vitality into the project. Leveraging mainstream platforms to expand the market is the necessary path to breaking through barriers and achieving large-scale growth. Meanwhile, a sustainable and transparent tokenomics model is the core element to ensure the long-term stability of the project. Continuous innovation is the key to standing out in a fiercely competitive market; only by consistently introducing new features can a project retain players' attention and maintain its competitiveness.
-
Looking Ahead: Concrete Actions to Lead the Next GameFi Revolution While the GameFi sector has suffered significant losses during the bear market, Neo Fantasy's rise offers hope for the industry's recovery. In the future, Neo Fantasy will take a series of practical actions to solidify its strengths and drive industry transformation:
Expanding Community Collaboration and Listening to Players: Neo Fantasy will broaden its community partnerships, working with global gaming forums, blockchain communities, and player groups. By hosting regular online and offline events and conducting surveys, the project will gather feedback on gameplay, economic systems, and social features. These insights will guide targeted improvements to ensure the game aligns with player needs, enhancing satisfaction and loyalty.
Optimizing Game Content for Premium Experiences: Resources will continue to be invested in developing and refining game content. This includes enriching storylines for immersive narratives, fine-tuning PvE dungeon difficulty curves and reward mechanisms, and improving PvP balance and fairness. The development of open-world and virtual-world features will also be accelerated, introducing innovative gameplay and interaction elements to provide players with more opportunities for exploration and creativity.
Strengthening Guild Systems to Promote Ecosystem Prosperity: Neo Fantasy will actively support in-game guild development by offering exclusive benefits and activities such as guild quests and rewards. A guild ranking system will incentivize growth, while cross-game and cross-platform collaborations will encourage interaction among players from different communities, expanding the game's influence and ecosystem.
Expanding the Ecosystem and Exploring New Possibilities: Beyond core gameplay, Neo Fantasy will actively expand its ecosystem. On the technical side, it will accelerate cross-chain compatibility to enable seamless flow of $ERT tokens and game assets across networks, attracting more external resources and users. In content creation, the project will support an ACGN creator program, encouraging community members to produce comics, novels, animations, and other content related to Neo Fantasy, enriching the game's cultural value and building a diverse ecosystem.
By focusing on player experience, community building, and sustainable development, Neo Fantasy has proven that GameFi can thrive even in a bear market. The future belongs to projects that prioritize high-quality gaming content and earn players' trust. Neo Fantasy not only survives but actively positions itself as a leader, driving the next GameFi revolution. For the GameFi industry, abandoning hype and focusing on quality is the key to standing out in a fiercely competitive market. Neo Fantasy is steadfastly walking this path, writing its own legend.
Follow Neo Fantasy on: Twitter: https://x.com/NeoFantasy_Game
Telegram: https://t.me/NeoFantasy2024
Youtube: https://www.youtube.com/@NeoFantasy2024
Medium: https://medium.com/@neofantasy419
-
@ 7f6db517:a4931eda
2025-06-06 23:02:25People forget Bear Stearns failed March 2008 - months of denial followed before the public realized how bad the situation was under the surface.
Similar happening now but much larger scale. They did not fix fundamental issues after 2008 - everything is more fragile.
The Fed preemptively bailed out every bank with their BTFP program and First Republic Bank still failed. The second largest bank failure in history.
There will be more failures. There will be more bailouts. Depositors will be "protected" by socializing losses across everyone.
Our President and mainstream financial pundits are currently pretending the banking crisis is over while most banks remain insolvent. There are going to be many more bank failures as this ponzi system unravels.
Unlike 2008, we have the ability to opt out of these broken and corrupt institutions by using bitcoin. Bitcoin held in self custody is unique in its lack of counterparty risk - you do not have to trust a bank or other centralized entity to hold it for you. Bitcoin is also incredibly difficult to change by design since it is not controlled by an individual, company, or government - the supply of dollars will inevitably be inflated to bailout these failing banks but bitcoin supply will remain unchanged. I do not need to convince you that bitcoin provides value - these next few years will convince millions.
If you found this post helpful support my work with bitcoin.
-
@ dfa02707:41ca50e3
2025-06-07 10:02:22Contribute to keep No Bullshit Bitcoin news going.
- The latest firmware updates for COLDCARD devices introduce two major features: COLDCARD Co-sign (CCC) and Key Teleport between two COLDCARD Q devices using QR codes and/or NFC with a website.
What's new
- COLDCARD Co-Sign: When CCC is enabled, a second seed called the Spending Policy Key (Key C) is added to the device. This seed works with the device's Main Seed and one or more additional XPUBs (Backup Keys) to form 2-of-N multisig wallets.
- The spending policy functions like a hardware security module (HSM), enforcing rules such as magnitude and velocity limits, address whitelisting, and 2FA authentication to protect funds while maintaining flexibility and control, and is enforced each time the Spending Policy Key is used for signing.
- When spending conditions are met, the COLDCARD signs the partially signed bitcoin transaction (PSBT) with the Main Seed and Spending Policy Key for fund access. Once configured, the Spending Policy Key is required to view or change the policy, and violations are denied without explanation.
"You can override the spending policy at any time by signing with either a Backup Key and the Main Seed or two Backup Keys, depending on the number of keys (N) in the multisig."
-
A step-by-step guide for setting up CCC is available here.
-
Key Teleport for Q devices allows users to securely transfer sensitive data such as seed phrases (words, xprv), secure notes and passwords, and PSBTs for multisig. It uses QR codes or NFC, along with a helper website, to ensure reliable transmission, keeping your sensitive data protected throughout the process.
- For more technical details, see the protocol spec.
"After you sign a multisig PSBT, you have option to “Key Teleport” the PSBT file to any one of the other signers in the wallet. We already have a shared pubkey with them, so the process is simple and does not require any action on their part in advance. Plus, starting in this firmware release, COLDCARD can finalize multisig transactions, so the last signer can publish the signed transaction via PushTX (NFC tap) to get it on the blockchain directly."
- Multisig transactions are finalized when sufficiently signed. It streamlines the use of PushTX with multisig wallets.
- Signing artifacts re-export to various media. Users are now provided with the capability to export signing products, like transactions or PSBTs, to alternative media rather than the original source. For example, if a PSBT is received through a QR code, it can be signed and saved onto an SD card if needed.
- Multisig export files are signed now. Public keys are encoded as P2PKH address for all multisg signature exports. Learn more about it here.
- NFC export usability upgrade: NFC keeps exporting until CANCEL/X is pressed.
- Added Bitcoin Safe option to Export Wallet.
- 10% performance improvement in USB upload speed for large files.
- Q: Always choose the biggest possible display size for QR.
Fixes
- Do not allow change Main PIN to same value already used as Trick PIN, even if Trick PIN is hidden.
- Fix stuck progress bar under
Receiving...
after a USB communications failure. - Showing derivation path in Address Explorer for root key (m) showed double slash (//).
- Can restore developer backup with custom password other than 12 words format.
- Virtual Disk auto mode ignores already signed PSBTs (with “-signed” in file name).
- Virtual Disk auto mode stuck on “Reading…” screen sometimes.
- Finalization of foreign inputs from partial signatures. Thanks Christian Uebber!
- Temporary seed from COLDCARD backup failed to load stored multisig wallets.
Destroy Seed
also removes all Trick PINs from SE2.Lock Down Seed
requires pressing confirm key (4) to execute.- Q only: Only BBQr is allowed to export Coldcard, Core, and pretty descriptor.
-
@ bf47c19e:c3d2573b
2025-06-06 21:07:19Originalni tekst na bitcoin-balkan.com
Dobrodošli u Bitcoin Q+A
Naša misija je jednostavna, da vam pružimo kratke i lako svarljive odgovore na najčešće postavljana pitanja o Bitcoin-u. Ako ne možete da pronađete odgovor, obavezno nas kontaktirajte. Postoji jako puno informacija o Bitcoin-u i lako je zaglaviti se u gužvi i postati zbunjen. Da bismo se borili protiv toga, naše odgovore u ovom vodiču održavamo kratkim i preciznim. Predlažemo da započnete sa vrha stranice i prođete jedan po jedan kroz odeljke.
Kao i kod svih stvari vezanih za tehnologiju, stvari se brzo kreću, ali nastojaćemo da informacije ovde uvek budu ažurne. S tim u vezi, i mi smo ljudi, pa ako primetite nešto netačno, obratite nam se.
- Uobičajena pitanja - Odgovori na najčešća pitanja o Bitcoin-u
- Uobičajene greške - Naveli smo uobičajene zamke da bismo vam pomogli da ih izbegnete
- Novčanici - Šta su novčanici? Čemu služe? Koji su različiti tipovi?
- Nodes (Čvorovi) - Šta je to čvor? Zašto pokrenuti jedan? Koji su različiti tipovi?
- Lightning - Odgovori na vaša uobičajena pitanja o Lightning Network-u
- Coinjoin - Odgovori na vaša uobičajena pitanja o Coinjoin-u
- Mitovi - Uobičajeni mitovi o Bitcoin-u, razotkriveni
- Rečnik - Bitcoin žargoni, pojednostavljeno
Uobičajena pitanja
Jednostavni odgovori na vaša Bitcoin pitanja
Šta je Bitcoin?
Bitcoin je peer to peer mreža u kojoj svako može da učestvuje. Omogućava vam da bezbedno čuvate vrednost tokom vremena i da je prenesete bilo kome drugom u bilo kom trenutku bez potrebe za trećom stranom. Ima fiksni i transparentni raspored inflacije koji se ne može menjati po volji poput „običnog“ novca. To je novac, za internet.
Zašto je Bitcoin važan?
Omogućava kriptografski sigurna prekogranična plaćanja koja su otporna na cenzuru. To je prvi i jedini oblik apsolutne digitalne nestašice i njime ne upravlja nijedna osoba ili grupa. Kao rezultat toga, nijedna svetska vlada se ne može mešati u njega.
Kako Bitcoin funkcioniše?
Ana šalje transakciju iz svog novčanika koju prima 1000 učesnika mreže, koji jedni drugima govore da Ana želi da pošalje Marku. Transakciju vidi rudar (majner) koji posvećuje računarsku snagu grupišući Aninu transakciju u blok, zajedno sa puno drugih transakcija. Jednom kada se Anina transakcija iskopa u blok, Marko će u novčaniku imati odgovarajuću količinu Bitcoin-a.
Ko je izumeo Bitcoin?
Svet je saznao za Bitcoin 2008. godine kada je anonimni mrežni entitet pod nazivom „Satoshi Nakamoto“ podelio Bitcoin White Paper na online mailing listu. Satoshi je nestao 2011. godine i od tada nikada nije viđen online. Tokom godina, stotine programera širom sveta nastavili su da doprinose i poboljšavaju Bitcoin protokol.
Šta daje vrednost Bitcoinu?
Oskudan je (biće ih samo 21 milion) i to može da proveri svako ko ima običan računar od 30 dolara. Ima ogromnu količinu računarske snage posvećene osiguranju svoje distribuirane knjige. Mreža doslovno plaća ljudima da zaštite njen integritet i deluju u dobroj nameri. „Cena“ Bitcoin-a u $ ili € određuje se jednostavnom tržišnom ponudom i potražnjom.
Ko kontroliše mrežu?
Pojednostavljeno, svi i niko. Svako kontroliše sopstveno učešće u mreži i mreža je strukturirana tako da loši akteri ne mogu uspeti. Nijedan programer ne može da podstakne bilo kakve promene koda. Nijedan rudar ne može cenzurisati određene transakcije. Nijedan korisnik ne može prevariti sistem i trošiti Bitcoin koji nema ili koji mu ne pripada.
Da li je Bitcoin anoniman?
Na mrežnom nivou, Bitcoin-i nisu ’označeni’ ni za jedan javni identitet. Protokol zna samo za nizove slova i brojeva poznate kao adresa. Međutim, preduzeća izgrađena na vrhu Bitcoin-a, poput KYC menjačnica, na kojima je moguće kupiti Bitcoin, mogu povezati vaš stvarni identitet sa Bitcoin-om kupljenim preko njih. Knjiga transakcija Bitcoin-a je potpuno javna, tako da je moguće pratiti poznate javne entitete preko mreže.
Šta je to blockchain?
Blockchain (lanac blokova) je javna knjiga koja sadrži kopiju svake pojedinačne bitcoin transakcije koja je ikada završena. Rudari se takmiče ko će proizvoditi blokove za naknade za transakcije i blok subvencije. Svaki uspešni blok je kriptografski povezan ili „vezan lancem” za svog prethodnika.
Mogu li vlade to zaustaviti?
Vlade bi apsolutno mogle učiniti Bitcoin nezakonitim u njihovoj nadležnosti. U stvari, Kina i Nigeria su to već učinile, više puta, ali ekosistem i dalje cveta. Distribuirana priroda Bitcoin-a znači da bi u stvarnosti bio potreban monumentalni koordinirani napad mnogih svetskih sila da zaustavi njegov rast.
Zar ga ne koriste kriminalci?
Bitcoin je novac, i bilo koji novac može biti korišćen od strane kriminalaca. U 2017. godini procenjeno je da celokupno tržište trgovine drogom vredi $500,000,000,000 (500 biliona) dolara. Po trenutnim cenama to bi moglo kupiti celokupnu Bitcoin mrežu! Verovatno je pošteno reći da se ogromna većina nelegalnih aktivnosti finansira iz tradicionalnih valuta.
Zar ne troši energiju?
Tačno je da Bitcoin mreža troši mnogo energije, ali trošenje energije za obezbeđivanje i upravljanje globalnom mrežom za plaćanja koja pružaju ogromne vrednosti milionima ljudi ne bi trebalo smatrati „rasipnim“. Rudarstvo Bitcoin-a je već počelo da podstiče inovacije u korišćenju alternativnih (često rasipanih) izvora energije kao što je gorivi gas ili obnovljivi izvori energije. Bitcoin mreža u 2021 godini troši 0.1% energije koja se proizvede.
Koliko ima bitcoin-a?
U vreme pisanja ovog dokumenta, iskopano je nešto manje od 19 miliona bitcoin-a. Može postojati samo 21 milion, a poslednji će se iskopati oko 2140. godine. Svaki bitcoin može se podeliti na 100 miliona Satošija ili "sats-ova", tako da ima mnogo toga u ponudi.
Kako nastaju bitcoin-i?
Novi bitcoin-i nastaju kao rezultat globalno distribuiranog i visoko konkurentnog rudarskog procesa. Svaki novo izrudareni blok nagrađuje uspešnog rudara subvencijom. U vreme pisanja ovog teksta, ova subvencija je 6,25 bitcoin-a. Ponovo će se prepoloviti 2024. godine na 3,125 bitcoin-a nakon još 210 000 blokova (otprilike svake 4 godine).
Šta je to rudarenje?
Proces učesnika koji doprinose velikim količinama računarske snage za obradu transakcija u blokove. Jednom kada grupišu ove transakcije, rudar izvršava ponavljajući računski zadatak na njima, pokušavajući da pronadje odgovor koji je ispod određenog cilja. Ako su uspešni, blok je iskopan - majnovan, i rudar prima naknade za transakcije i subvenciju bloka. Proces zatim započinje ponovo, kao i sledeća grupa transakcija.
Gde ga mogu kupiti?
Postoji mnoštvo online menjačnica na kojima možete kupiti bitcoin-e, mada biste trebali da obratite pažnju kada tražite mesto za kupovinu. Najbolji način da dobijete vaš prvi deo bitcoin-a je da ga kupite od pouzdanog prijatelja ili člana porodice. Zapamtite - Možete kupiti delić bitcoin-a (u svakom je 100 miliona sats-ova)! Pogledajte ovde neke od preporuka.
Uobičajene greške
Saveti kako ne biste napravili iste greške kao i mi
Bitcoin alternative
„Kripto“ prostor je preplavljen alternativnim valutama, takozvanim aplikacijama „decentralizovanog finansiranja“, i nekim čistim prevarama. Može izgledati vrlo primamljivo da se uključite u ove projekte jer oni imaju puno zvučnih reči i izgledaju „jeftino“ u poređenju sa Bitcoin-om. Gotovo svi ovi projekti nisu ništa drugo do marketinške i modne priče i treba ih istraživati sa oprezom.
Kupovina KYC bitcoin-a
Kupovina KYC bitcoin-a od nekih kao što je ECD menjačnica je dosta brz i jednostavan način kupovine bitcoin-a. Ne kažemo da to apsolutno ne bi trebalo da radite, ali želimo da znate koji su kompromisi. Kada se registrujete kod ovih kompanija, moraćete da dostavite neki oblik foto-ID-a koji označava bitcoin koji kupujete za vaš javni identitet. Zbog javne prirode Bitcoin bloka, nadzorne kompanije mogu da vas ‘prate’ i gledaju vaše buduće transakcije.
Neistraživanje drugih mogućnosti kupovine
Dakle, ne sviđa vam se zvuk KYC bitcoin-a, i koje su druge opcije? To su Peer to Peer menjačnice kao što su Bisq i HodlHodl koje koriste uslugu pratnje kako bi vam omogućile da kupujete bitcoin-e od nekoga bilo gde u svetu, ali one uglavnom nisu tako jednostavne za upotrebu kao alternative KYC. Ubedljivo najlakša opcija za počinjanje je da kupite neku količinu od prijatelja ili člana porodice. Raspitajte se, napolju je mnogo više Bitcoin-era nego što mislite!
Ne pokrećete svoj Node
Jednostavno, ako ne koristite svoj čvor (eng. node), onda koristite tuđi, bilo da ga poznajete ili ne. Tako Bitcoin funkcioniše. Povezivanje novčanika sa sopstvenim čvorom znači da se ne oslanjate na bilo koga drugog da izvršava transakcije, što daje ogromne prednosti privatnosti. Korišćenjem sopstvenog čvora takođe možete biti uvereni da su podaci prikazani u novčaniku tačni i da se pridržavaju pravila vašeg Bitcoin čvora.
Ostavljanje Bitcoin-a na menjačnicama
Da, kupio sam KYC Bitcoin i pošto nisam znao kako da upravljam novčanikom, ostavio sam ga na menjačnici. Ako imate bitcoin na menjačnici, nemate bitcoin. Imate IOU (zadužnica) i trebali biste naučiti dovoljno (uz našu pomoć, nadamo se) da taj bitcoin izvadite sa menjačnice i prebacite u novčanik nad kojim vi kontrolišete privatne ključeve. U prošlosti je bilo više slučajeva hakovanja na menjačnici, i ljudi su izgubili velike količine bitcoin-a, zato ne dozvolite da to budete vi.
Slanje vaših privatnih ključeva nekome
Srećom ja nikada nisam pao na ovo, ali mnogi ljudi jesu. Sasvim je uobičajeno u javnim čet grupama poput telegrama, da se prevaranti predstavljaju kao neko iz zajednice Bitcoin-a koji nude podršku nekome ko možda traži pomoć. NIKADA.....ALI NIKADA ne dajte svoje privatne ključeve ili seed reči nikome, posebno ne na Internetu.
Nesigurno čuvanje seed reči
Vaše seed reči su ključevi vašeg bitcoin-a, i svako ko ima kontrolu nad njima može pristupiti vašim sredstvima. Trebalo bi da ih čuvate na siguran način, ali imajte na umu da ih ne čuvate tako sigurno, da i vi zaboravite gde su. Verovali ili ne, to se jako često dešava. Nije dobra ideja da ih čuvate na računaru.
Slanje na pogrešnu adresu
Zahvaljujući QR kodovima koji se mogu skenirati i funkcijama za otkrivanje grešaka koje su implementirane u novčanike, ovo danas postaje prilično teško učiniti. Bitcoin adrese su dugi nizovi brojeva i slova, tako da je uvek dobra praksa koristiti QR kodove ili u najmanju ruku copy/paste kada šaljete nekome. Takođe je dobar savet da bar jednom vizuelno proverite adresu pre slanja.
Postajete uzbudjeni
Što više naučite, to ćete biti više uzbuđeni zbog Bitcoin-a. Meni se još uvek to dešava! Ovo se može desiti ako provedete dosta vremena na Bitcoin Twitter-u, tamo je vrlo lako postati previše uzbudjen, i kupiti više nego što možete priuštiti sebi. Bitcoin je mlada i izuzetno nestabilna imovina, trebalo bi sami da je istražite i nikada ne kupujete više nego što možete priuštiti da izgubite. Postoji izreka u zajednici koja je vrlo dobro pravilo za život ... ‘Ostanite skromni, skupljajte sats-ove’.
Pokušavaš da trguješ
Bitcoin je izuzetno nestabilan, nije neobično kada se cena od 20% kreće u bilo kom smeru u jednom danu. Ako niste iskusni i pokušate da igrate na ovim tržištima, GUBIĆETE novac. Hodajte pažljivo.
Ne tražite pomoć
Bitcoin zajednica je živahna i korisna. Postoje stotine različitih telegram grupa, GitHub ili reddit stranica i ljudi na Twitteru koji su spremni da pomognu. Slobodno nas pitajte ako vas nešto zanima. Zapamtite, ako niste sigurni, pitajte.
Nekorišćenje 2FA
Sve što danas radimo online dolazi sa nalogom povezanim sa našim e-mailom. Ako vaš nalog e-maila postane ugrožen, to mogu biti otvorena vrata u vaš život za prevarante. Dvofaktorska autentifikacija pruža i dodatni sigurnosni sloj koji vas štiti od hakovanja. Izbegavajte upotrebu SMS autentikacije, puno bolja opcija je aplikacija ili ključ. Uobičajeni primeri uključuju Authy ili Google Authenticator.
Govoriti ljudima koliko imate Bitcoina
Bitcoin živi na Internetu, koji je, slično kao što je stvarni svet, prepun ljudi voljnih da vam uzmu vaše stvari. Govoreći o posedovanju Bitcoin-a online ili u stvarnom svetu možete sasvim bukvalno da postavite metu na svoja leđa za lopove ili prevarante. Uobičajeni pristup za ljude koji komuniciraju sa mrežom Bitcoin zajednice je stvaranje online ličnosti potpuno odvojene od njihovog stvarnog identiteta.
Novčanici Q+A
Jednostavni odgovori na vaša uobičajena pitanja o Bitcoin novčaniku
Šta je to novčanik?
Bitcoin novčanik je baš kao i vaš pravi novčanik, to je način čuvanja vrednosti. Glavna razlika sa bitcoin novčanikom je u tome što on zapravo ne skladišti bitcoin u sebi, jer Bitcoin-i postoje samo na distribuiranoj knjizi (blockchain). Bitcoin novčanik čuva ključeve potrebne za slanje i primanje vašeg Bitcoin-a preko blockchain-a.
Šta su to seed reči?
Seed reči (ili backup reči) su nizovi od 12 ili 24 engleskih nasumično generisanih reči stvorenih kada se napravi novi novčanik. Ove reči su vaša glavna rezervna kopija za čitav novčanik i ne smeju se deliti ni sa kim, niti čuvati bilo gde, gde bi mogle biti ugrožene. Svako ko ima pristup ovim rečima može vam ukrasti vaš bitcoin.
Šta je to pristupna fraza?
Pristupna fraza (eng. passphrase), često se naziva i 13./25. reč, je korisnički definisana dodatna reč ili fraza dizajnirana da doda dodatni nivo zaštite vašoj rezervnoj kopiji. Ako vaše početne reči postanu ugrožene, a vi ste definisali dodatnu pristupnu frazu, napadaču će biti potrebna vaša pristupna fraza da bi dobio pristup vašem bitcoin-u. Nikada ne čuvajte svoje seed reči i pristupnu frazu zajedno.
Šta je to privatni ključ? (private key)
Generisan iz vaših seed reči, privatni ključ je dokaz da subjekt koji ga kontroliše ima pristup trošenju sa odgovarajuće adrese. Novčanik će generisati privatni ključ za svaku adresu koju kreira. Većina korisnika Bitcoin-a danas nikada neće direktno stupiti u interakciju sa privatnim ključem, njime se automatski upravlja softverom novčanika.
Šta je to javni ključ? (public key)
Javni ključevi se koriste u transakciji da bi se verifikovalo da je vlasnik odgovarajućeg privatnog ključa kreirao važeći potpis kao dokaz o vlasništvu nad sredstvima. Opet, iz opšte perspektive korisnika, javni ključevi se nikada neće direktno koristiti ili videti.
Šta je to prošireni javni ključ? (Xpub)
Prošireni javni ključ (ili Xpub) može se gledati kao glavni pogled u vaš bitcoin novčanik. Xpub je sposoban da generiše i pregleda svaku adresu koja se nalazi u novčaniku, tako da treba da imate na umu sa kime i sa kojima delite proširene javne ključeve. Ako niste povezani sa sopstvenim node-om, velika je verovatnoća da neko drugi zna vaš Xpub. Varijacije Xpub-a uključuju Ipub i Zpub, svi rade isti posao.
Šta je to mobilni novčanik?
Mobilni novčanik je onaj koji radi na vašem mobilnom telefonu. Omogućuju brz pristup vašem bitcoin-u, ali nose rizik da ćete izgubiti svoj bitcoin ako izgubite ili slomite vaš telefon. Ovo ne bi trebalo da predstavlja problem pod uslovom da imate bezbedno spremljene seed reči kako biste mogli da vratite novčanik na drugi uređaj. Nikad ne koristite novčanik koji vam ne pruža opciju da sačuvate svoj private key (backup reči).
Šta je to desktop novčanik?
Desktop novčanik je onaj novčanik koji se pokreće na računaru. Desktop novčanici uglavnom imaju više funkcionalnosti od mobilnih, ali mogu biti i složeniji. Budući da su računari uređaji povezani na Internet i koji su podložni zlonamernim softverima, budite oprezni sa softverima koje instalirate, ne čuvajte velike količine Bitcoina na novčanicima koji su povezani sa internetom.
Šta je to hardware novčanik?
Hardverski, eng. hardware, novčanik (HWW) je uređaj posvećen stvaranju i čuvanju vaših privatnih ključeva. Većina HWW-a se smatra sigurnijim od hardvera opšte namene, poput računara ili mobilnih telefona. To je zato što je površina napada mnogo manja za uređaj napravljen za jedan određeni zadatak. HWW je još sigurniji kada je air-gapped, što znači da uređaj nikada nije priključen na računar. Kada je air-gapped, kod slanja transakcija koriste se QR kodovi ili prenosna datoteka na SD kartici.
Šta je to multi-sig novčanik?
Multi-signature novčanik je novčanik kojem je potrebno više od jednog privatnog ključa za potpisivanje transakcije. Ovo može biti bilo šta, 2 od moguća 3 ključa zbog potpisa ili 15 od 20, a to je na korisniku kada kreira novčanik. Multi-sig je sigurniji od single-siga, ali je mnogo komplikovaniji kada je reč o kreiranju, pravljenju rezervnih kopija i transakcijama. Novi korisnici bi trebali biti pažljivi sa ovim.
Šta je to watch only novčanik?
Watch only novčanik je kreiran pomoću vašeg proširenog javnog ključa (Xpub) koji vam omogućava da pratite stanje novčanika. Watch only novčanici ne sadrže privatne ključeve i sa njih se ne mogu trošiti Bitcoin-i. Budite pažljivi sa kime delite svoje Xpub, svako ko ima pristup ovome može pratiti vaše bitcoin stanje.
Šta je to custodial novčanik?
Custodial novčanik je novčanik u kome vi ne kontrolišete privatne ključeve. Custodial novčanici su često u stanju da prikriju neku složenost bitcoin novčanika, ali to dolazi sa rizikom da ne kontrolišete svoj bitcoin. Custodial novčanicima uglavnom upravljaju menjačnice i korisnici ne bi trebalo da drže velike količine bitcoin-a u njima.
Šta je to non custodial novčanik?
Non custodial novčanik je novčanik u kome imate kontrolu nad svojim privatnim ključevima. To je način na koji je bitcoin dizajniran za upotrebu i uvek treba da se pobrinite da novčanik koji koristite bude non custodial. Brzi način da saznate - da li ste morali da zapišete svoje seed reči kada ste otvorili novčanik? Ako je odgovor da, onda imate novčanik koji je non custodial.
Kako da znam koje naknade da koristim?
Ovo u potpunosti zavisi od toga koliko brzo treba da vaša transakcija bude obrađena i koliko je mreža zauzeta u trenutku kada želite da pošaljete bitcoin. Većina novčanika će vam dati procenu na osnovu ovih parametara i omogućiti vam da se prilagodite prema vašoj potrebi.
Šta je to QR kod?
QR kod je vizuelni prikaz podataka. Najčešće se koriste u Bitcoin-u za pretvaranje dugačkih i teško čitljivih adresa u oblik bar-koda koji može da se skenira pomoću novčanika pošiljalaca. Ovo uklanja potrebu za unošenjem adrese koja bi mogla dovesti do grešaka i slanja bitcoin-a na pogrešnu adresu.
Šta je to block explorer?
Istraživač blokova, eng. block explorer, je website ili aplikacija koja vam omogućava da pronađete detalje bilo kog bloka na blockchain-u. Možete pronaći podatke kao što su broj transakcija u bloku, adresa pošiljaoca, adresa primaoca, plaćene naknade, poslati iznos, visina bloka i vreme bloka.
Čvorovi - Nodes Q+A
Jednostavni odgovori na uobičajena pitanja o Bitcoin čvorovima
Ovde možete saznati više o različitim vrstama čvorova
Šta je to čvor?
Čvor, eng. node, je računar koji pokreće Bitcoin softver. Vaš čvor je vaša verzija Bitcoin blockchain-a i skupa pravila. Zamislite to kao sopstveni ulaz u ekosistem Bitcoin-a. Emituje transakcije, potvrđuje da su bitcoin-i koje primate legitimni i održava vašu privatnost, omogućavajući vam da učestvujete bez oslanjanja na bilo koga drugog.
Kako pokrenuti čvor?
Vaš čvor = vaša pravila. Kada povežete vaš novčanik sa vašim čvorom, ne verujete nikome drugom da će verifikovati vaše transakcije. Čvor vas štiti od loših aktera i takođe održava mrežu decentralizovanom. Ako nemate svoj, vi verujete u tuđi čvor, koji vam govori koliko imate bitcoin-a, i da biste slali/primali svoje transakcije.
Šta treba razmotriti pre pokretanja čvora?
Čvorovi su dizajnirani da rade 24/7, tako da će u zavisnosti od korištenog hardvera biti i neki troškovi napajanja. Većina čvorova radi na računarima sa jednom pločom male snage kao što je Raspberry Pi, tako da su troškovi rada zanemarljivi. Takođe bi trebalo da imate konstantnu internet vezu, jer će čvor koristiti oko 20 GB mesečno. Obavezno kupite ili napravite čvor koji dovršava početni blok ispočetka, inače verujete nečijim tudjim blockchain podacima.
Koje vrste čvorova postoje?
Moguće je pokrenuti čvor na računaru koji trenutno posedujete, jednostavnim preuzimanjem Bitcoin Core softvera. Najčešći čvorovi ‘plug + play’ su MyNode ili Nodl. Oni dolaze sa svime što je potrebno za početak. Mnogi korisnici se odluče da kupe sopstveni hardver i sami instaliraju Bitcoin softver. Uobičajeni izbor softvera su Umbrel, MyNode, Ronin Dojo ili Raspiblitz. Kliknite ovde da biste videli čvorove koje ja preporučujem.
Šta još čvor može da uradi?
Ovo veoma zavisi od konfiguracije koju imate. Neke uobičajene „dodatne funkcije“ uključuju lightning node, electrum server, block explorer, mempool viewer, whirlpool implementation i infrastrukturu plaćanja, poput BTC Pay Server-a.
Šta je to inicijalno preuzimanje blokova?
Inicijalno preuzimanje blokova, eng. initial block download (IBD), odvija se kada prvi put pokrenete čvor. Vaš softver preuzima čitav Bitcoin blockchain i proverava celokupnu istoriju transakcija(410gb). Kada se sinhronizuje, ovo omogućava vašem čvoru da potvrdi da su bitcoin-i koje primate legitimni i odbijaju svakoga ko pokušava da prevari sistem. Vreme sinhronizacije će se razlikovati u zavisnosti od brzine hardvera i interneta, ali u proseku postupak traje oko 4-7 dana.
Šta je to pruned čvor?
Pruning čvor je opcija za vaš čvor da odbaci sve stare podatke koji mu nisu potrebni, nakon što u potpunosti potvrdi čitav blockchain. To može biti korisno ako imate ograničenja za skladištenje, ali to znači da kada je omogućen, vaš čvor ne podržava mrežu, i ne dopušta novim čvorovima koji dolaze na mrežu da preuzimaju informacije iz vašeg blockchain-a.
Šta je to lightning node?
Lightning node je vaš ulaz u lightning network, što je eksperimentalno rešenje za skaliranje izgrađeno na vrhu Bitcoin-a. Obično se pokreće na istom uređaju kao i vaš Bitcoin čvor, i slično kao i vaš Bitcoin čvor koristi se za interakciju sa drugim ljudima na toj mreži slanjem i primanjem uplata.
Mogu li ja da koristim tuđi čvor?
Da, možete se povezati sa tuđim čvorom. Ovo je podrazumevano za veliki broj novčanika, ali treba da budete oprezni iz gore navedenih razloga. Ako imate prijatelja kome verujete, a koji ima pokrenut čvor, ovo bi bila bolja alternativa od davanja vašeg poverenja nekoj nezavisnoj kompaniji. Krajnji način da učestvujete u Bitcoin mreži je pokretanje sopstvenog čvora.
Lightning Q+A
Jednostavni odgovori na uobičajena pitanja o Lightning Network-u
Za detaljniji pregled Lightning Network-a, pogledajte ovde
Šta je to Lightning Network?
Lightning Network je rešenje za skaliranje izgrađeno na vrhu Bitcoin protokola. Omogućava manja, skoro trenutna plaćanja između korisnika po vrlo niskim troškovima. Sprečava potrebu da se svaka izvršena transakcija odvija na „osnovnom sloju“ Bitcoin-a, istovremeno osiguravajući da vrednost koja se šalje poštuje osnovna pravila i vrednosti Bitcoin mreže. Ne možete obavljati transakcije na Lightning-u bez posedovanja bitcoin-a.
Zašto nam je potreban Lightning?
Trenutno nam zaista NE treba Lightning network, jer su normalne bitcoin transakcije (obično se nazivaju „on chain transakcijama“) relativno jeftine, čak i ako želite brzo vreme potvrde. Lightning zaista počinje da blista kada se naknade za ‘on chain’ povećavaju kako se baza korisnika Bitcoin povećava, a subvencija blokova smanjuje. Lightning takođe odlično obećava u manjim, češćim slučajevima plaćanja za stvari poput otključavanja online sadržaja.
Kako Lightning Network radi?
Ana otvara kanal za plaćanje sa Markom pravljenjem on chain „finansijske transakcije“. Veličina ove finansijske transakcije diktira koliku vrednost Ana može da prenese koristeći Lightning. Jednom kada se finansijska transakcija potvrdi na osnovnom sloju, Ana može slobodno da trguje s Markom preko Lightning-a onoliko puta koliko želi, dok jedan ili oboje ne odluče da žele da zatvore kanal. Svaka Lightning transakcija ažurira trenutno stanje kanala tako da jedna strana ne može da prevari drugu za bilo kakva sredstava. Kada se kanal zatvori, najnovije „stanje kanala“ emituje se na Bitcoin mrežu i obe strane će dobiti odgovarajuće stanje natrag u svoj novčanik.
Ali šta ako Ana želi da plati nekome drugom?
Ovde Lightning zaista blista. Kanali za plaćanje mogu biti povezani zajedno da bi se pronašao put do primaoca. Ana ne treba da ima otvoren kanal sa Davidom da bi mu poslala nekoliko sats-ova, mreža će pronaći optimalan put za usmeravanje plaćanja preko drugih kanala. Moglo bi izgledati otprilike ovako Ana> Marko> Petar> David. Tokom čitave rute uplata je kriptografski osigurana tako da bilo koji posrednik ne može ukrasti bilo koje sredstvo koje im ne pripada.
Ko poseduje i kontroliše Lightning Network?
Kao i Bitcoin, Lightning Network je u potpunosti otvorenog koda i nije u vlasništvu nijednog entiteta. Svako može pokrenuti čvor i učestvovati u mreži sa potpunom dozvolom. Postoji više popularnih primena Lightning -a koje uključuju LND, C Lightning i Eclair. Sve ove implementacije su gotovo 100% interoperabilne.
Ima li rudara na Lightning Network-u?
Ne, Lightning Network je izgrađen na vrhu osnovnog sloja Bitcoin-a i zadržava sve iste sigurnosne funkcije. Minimalne naknade koje plaćate na Lightning-u idu učesnicima mreže koji čine deo rute kojom ide vaša uplata, tako da to može biti bukvalno svako ko pokreće Lightning čvor.
Da li Lightning ima svoj blockchain?
Ne, Lightning je mreža kanala za plaćanja u kojoj su svi međusobno povezani. Sve transakcije otvaranja i zatvaranja Lightning kanala odvijaju se na osnovnom Bitcoin protokolu. Lightning nasleđuje sigurnost Bitcoin blockchain-a.
Koje su loše strane Lightning-a?
Za nekoga ko često koristi Lightning Network sa više kanala, upravljanje likvidnošću može postati zamorno. Mreža je relativno mlada i neka plaćanja ponekad mogu propasti, ali kako se razvoj nastavlja ovi slučajevi postaju daleko ređi. Zbog strukture mreže, nije toliko pogodna za veća plaćanja zbog ograničenja likvidnosti svakog kanala. To bi se moglo promeniti kako mreža raste, a ljudi dobijaju poverenje u njenu pouzdanost.
Da li mi treba čvor da bih koristio Lightning?
Slično kao i Bitcoin, nije vam potreban čvor za interakciju sa Lightning mrežom, ali je preporučljivo. Zapamtite, ako ne pokrećete svoj čvor, oslanjate se na tuđi. Dobra vest je da većina Bitcoin čvorova danas dolazi sa ugrađenim Lightning čvorom, tako da ne biste trebali imati previše dodatnog posla da biste se postavili na Lightning.
Šta je to dolazna likvidnost?
Dolazna likvidnost, eng. inbound liquidity, je mera koliko bitcoin-a možete dobiti preko Lightning Network-a. Ako jednostavno otvorite kanal prema nekom drugom, u početku možete samo da šaljete bitcoin-e. To je zato što su sva sredstva na vašoj strani kanala. Ako otvorite kanal za 100k sats-ova, a zatim potrošite 25k, vaša dolazna likvidnost bi bila 25k sats-ova. Bolji način za postizanje dolazne likvidnosti je ako vam neko otvori kanal ka vama, tako da bi sav bilans bio na njihovoj strani kanala.
Šta je to odlazna likvidnost?
Odlazna likvidnost, eng. outbound liquidity, je mera koliko bitcoin-a možete poslati preko Lightning Network-a. Ako otvorite kanal za 100k sats-ova i potrošite 75k, tada vaša odlazna likvidnost iznosi 25k sats-ova. Dobijanje odlazne likvidnosti je jednostavno poput primanja sats-ova na postojećim kanalima ili otvaranja novog kanala sa još sats-ova. Zapamtite, nikada ne možete potrošiti više od ukupne veličine vašeg najvećeg kanala. Mada, ovo će se promeniti kada se uvedu Multi Path Payments.
Gde da počnem?
Pogledajte našu preporučenu stranicu za čvorove koje treba pokrenuti, a zatim odlučite da li želite mobilni ili desktop Lightning novčanik. Naš lični favorit je Zap koji nudi i mobilne i desktop, u kombinaciji sa vrlo dobrim korisničkim interfejsom. Pogledajte Lightning Network guide za detaljniji pogled na Lightning.
Coinjoin Q+A
Jednostavni odgovori na uobičajena Coinjoin pitanja
Šta je to Coinjoin?
Coinjoin (ponekad se naziva i mešanje) je on chain rešenje za privatnost za Bitcoin, koje je prvi put 2013. predložio Gregory Maxwell. Dizajniran je da razbije „heuristiku zajedničkog vlasništva“, koja pretpostavlja da svi unosi u transakciju pripadaju istom entitetu. Bitcoin adrese nisu direktno povezane sa stvarnim identitetima, ali svako ko ima dovoljno vremena i resursa (poput firmi za analizu lanca), mogu početi da prave ove veze gledajući javnu knjigu Bitcoin-a. Coinjoin pomaže da se ovo spreči.
Zašto nam je potreban Coinjoin?
Bitcoin blockchain je potpuno javan, pa ako imate bitcoin koji je vezan za vaš lični identitet (recimo sa KYC menjačnice), može vas na lancu pratiti bilo ko raspolaže sa pravim resursima, a koji nadgleda blockchain. Ovaj problem se pogoršava ako nehotice kombinujete bitcoin-e iz različitih izvora prilikom obavljanja transakcija. Može vam izgledati kao da ovo nije problem i da nemate šta da krijete, ali ako ne biste dozvolili da nepoznati čovek pogleda vaš izvod iz banke, pa zašto onda to dozvoliti sa Bitcoin-om?
Kako CoinJoin funkcioniše?
Postoje različite vrste implementacija Coinjoin-a, svaka sa svojim vlastitim mišljenjem oko iste osnovne ideje. Dva ili više korisnika udružuju svoje UTXO-ove u zajedničku transakciju koja se formira na jedinstven način. Način na koji je transakcija konstruisana otežava nadzornim firmama da tačno znaju čija izlazna transakcija pripada kom ulaznom vlasniku. U najboljem slučaju, svako ko posmatra transakciju može da smisli niz mogućih scenarija ko poseduje koji deo bitcoin-a, ali nikada ne može biti 100% siguran.
Postoje li različiti tipovi Coinjoin-a?
Postoje tri popularne primene Coinjoin-a, 1) Joinmarket koji deluje na strukturi tvorca/primaoca, gde tvorac nudi svoje bitcoin-e (uz naknadu) da bi postao deo transakcije primaoca. 2) Wasabi novčanik koji koristi aplikaciju za desktop računare i nudi velike coinjoin-ove. 3) Samourai Whirlpool nudi male, ali efikasne Coinjoin-ove zajedno sa mobilnim interfejsom koji je lak za upotrebu. To je jedini protokol koji koristim.
Da li je mixer isto što i Coinjoin?
Ne, mixer se obično smatra centralizovanom uslugom kojoj vi šaljete bitcoin-e, a on ih zatim meša i vraća vam tuđi bitcoin. Ove usluge treba izbegavati jer svoje potpuno poverenje stavite u entitet za mešanje da vam u stvari pošalje neki bitcoin nazad nakon što ga vi pošaljete. Uvek biste trebali da imate kontrolu nad svojim privatnim ključevima!
Da li moram da platim za Coinjoin?
Da, sve gore navedene usluge Coinjoin naplaćuju naknade. Svaka od njih ima malo drugačiju strukturu naknada, pa biste uvek trebali sami da istražite pre nego što počnete da koristite bilo koju od njih.
Mogu li izgubiti svoj bitcoin učestvujući u Coinjoin-u?
Kada koristite uslugu Coinjoin poput onih gore navedenih, oni su strukturirani na takav način da uvek imate kontrolu nad svojim privatnim ključevima. Trenutno nismo upoznati sa slučajem da su korisnici izgubili bitcoin kao rezultat greške u protokolu ili zbog bilo kog lošeg aktera koji stoji iza jednog od njih.
Sa kojim problemima mogu da se suočim kada koristim Coinjoin?
Bilo je nekoliko slučajeva kada je menjačnica označila korisnike koji su praćeni do, ili iz usluge Coinjoin. To je rezultiralo time da su neki morali da pruže KYC informacije, a drugima je njihov nalog stavljen na crnu listu, što znači da nisu mogli da koriste menjačnicu. Radi transparentnosti moramo navesti da su svi ovi korisnici povezani sa implementacijom Wasabi novčanika. Nisu zabeleženi problemi sa označenim korisnicima Joinmarket ili Samourai Whirlpool-a. Često zanemareni aspekt Coinjoin-a je ono šta radite nakon što se coinjoin dogodi. Vaše navike trošenja nakon udruživanja, ako se ne urade pravilno mogu u potpunosti poništiti svu stečenu privatnost. Potrošnja nakon mešanja može biti složena tema, ali alati kao što su Stonewall i Stowaway, koje primenjuje Samourai novčanik, čine ovaj postupak mnogo lakšim.
Šta je to Payjoin?
Ponekad nazvan Pay-to-end-point (P2EP), Payjoin je posebna vrsta Coinjoin-a između dve strane kod kojih jedna zapravo plaća drugoj. Zbog strukture transakcije nemoguće je tačno odrediti iznos kojim se transakcija obavlja. Još jedna sjajna stvar u vezi sa Payjoin-om je da Payjoin za firme za nadzor blockchain-a izgleda baš kao redovna Bitcoin transakcija. Ako se široko usvoji, Payjoin će zauvek uništiti zajedničku heuristiku vlasništva nad ulazima.
Šta je to analiza chain-a?
Analiza chain-a je praksa entiteta koji nadgleda blockchain kako bi tražio klastere i obrasce u transakcijama, kako bi pokušao da prati ljude ili da razume njihove navike trošenja. Firme za analizu chain-a to rade pod maskom da pokušavaju da zaustave kriminalce ili terorizam. Iako se slažemo sa sentimentom borbe protiv ilegalnih aktivnosti koje bi mogle naneti štetu drugima, ne slažemo se sa drag net alatima za nadzor koje koriste i koji narušavaju privatnost uobičajenog korisnika bitcoin-a.
Gde mogu da saznam više o Coinjoin-u?
Coinjoin je vrlo složena tema sa puno nijansi, tako da je marljivo istraživanje apsolutno neophodno. Slušajte ovaj podcast Stephan Livera o „zašto“ Coinjoin-a. Ovaj repository od @6102Bitcoin je sjajan niz od tri glavne Coinjoin implementacije.
Bitcoin Mitovi
Otklanjanje najčešćih zabluda o Bitcoin-u.
Bitcoin nema suštinsku vrednost
Parker Lewis najbolje sumira ovaj odgovor u svom članku. „Kao i sav novac, i Bitcoin je podržan kredibilitetom svojih monetarnih svojstava“. Bitcoin je vredan jer je pouzdano oskudan, svako može tačno da proveri koliko je bitcoin-a u opticaju u bilo kom trenutku. Vredan je jer je osiguran sredstvima vrednim milionima dolara širom sveta putem svojih distribuiranih rudarskih i konsenzusnih mehanizama. Vredan je jer je prvi i jedini oblik novca u kojem može učestvovati svako ko ima internet vezu. Ne diskriminiše i ne cenzuriše.
Bitcoin je anoniman
To nije tačno, Bitcoin je ‘pseudonim’. To znači da na mrežnom nivou novčanik ili adresa nisu direktno povezani sa stvarnim identitetom. To znači da firme za nadzor chain-a mogu da prate i povezuju ‘Bitcoin identitete’, a da ne znaju ko su pojedinci koji stoje iza njih. Ali, ako bitcoin kupujete preko entiteta koji zahteva lične podatke, te kompanije mogu povezati stvarnu osobu i bitcoin adresu. Uvek imajte na umu kome dajete ove informacije.
Bitcoin kod se može lako promeniti
Ovo je jednostavno netačno. Bitcoin je postao poznat (i ponekad kritikovan) zbog vremena koje je potrebno da se primene promene u njegovoj bazi kodova. To je zato što sve veće promene Bitcoin-ovog koda moraju da prođu kroz rigorozni postupak stručne provere pre primene. Ako bi ova promena koda rezultirala nedostatkom povratne kompatibilnosti (što znači da stariji softver možda nije kompatibilan), tada proces postaje još sporiji i rigorozniji.
Bitcoin se može kopirati
Na mrežnom nivou vi možete, a mnogo ljudi i jeste. Postoji bukvalno stotine kopija Bitcoin-a, od kojih svaka obično ima malo podešavanja svog koda da bi ga ‘poboljšala’. Gotovo uvek ova ‘poboljšanja‘ dolaze sa ogromnim kompromisima koji im sprečavaju da steknu bilo kakvu privlačnost na ogromnim mrežnim efektima Bitcoin-a. Ove kopije obično imaju nepravedno lansiranje koje se generalno obavljaja radi obogaćivanja njihovih osnivača. Njihov dizajn obično otežava prosečnom korisniku pokretanje čvora. To znači da projekat postaje veoma centralizovan i da nekoliko strana ima veliki uticaj nad bilo kakvim promenama.
Nema dovoljno Bitcoin-a za sve na zemlji
Postojaće samo 21 milion bitcoin-a. Svaki bitcoin sadrži 100 miliona satoshis-a. Što znači da će biti dostupno ukupno 2,1 kvadriliona satoshis-a (to je 2,100,000,000,000,000) na raspolaganju za cirkulaciju oko Bitcoin mreže. Na populaciju sveta od 8 biliona (zaokruženo) to iznosi 262,500 sats-ova za svaku osobu na planeti. Prilično dosta u opticaju, zar ne?
Bitcoin je novac za kriminalce
Bitcoin je novac, i kao i svaki drugi novac mogu ga koristiti i kriminalci. U 2017. godini procenjeno je da celokupno tržište trgovine drogom vredno 500,000,000,000 (500 biliona) dolara. Po trenutnim cenama, to bi umalo moglo kupiti celokupnu Bitcoin mrežu! Verovatno je pošteno reći da se ogromna većina nelegalnih aktivnosti finansira iz normalnih „tradicionalnih“ valuta. Takođe bi se moglo tvrditi da ga javna priroda Bitcoin-ovog blockchain-a može zapravo učiniti manje poželjnim za kriminalce.
Naknade će učiniti Bitcoin neupotrebljivim u budućnosti
Bitcoin mreža ima vrlo efikasno tržište naknada. Bilo je nekih kratkotrajnih skokova kada je obim transakcija eksponencijalno rastao što je rezultiralo višim naknadama. Prosečna naknada za Bitcoin transakciju za poslednjih 12 meseci iznosi $4.77. Kako cena bitcoin-a i broj koristinka raste, tako bitcoin transakcije na mreži (on-chain) postaju vrednije i skuplje u dollar vrednosti, kada one neizbežno porastu, imamo Lightning koji je rešenje za skaliranje. Više o Lightning-u možete pročitati ovde.
Rudari kontrolišu Bitcoin
Iako je istina da rudari igraju ključnu ulogu u radu Bitcoin-a, reći da oni kontrolišu mrežu, nije. Rudari su finansijski podstaknuti da deluju u dobroj nameri, a mreža zahteva samo nešto više od 50% rudara koji su iskreni da bi mreža i dalje funkcionisala. U krajnje malo verovatnom slučaju da većina "podlih" rudara dobije kontrolu nad mrežom, koštaće ih preko 3.6M dolara na sat da bi je održavali. Ako bi uspeli, ne samo da bi to bilo izuzetno skupo, već bi i cena bitcoin-a verovatno naglo pala, čineći njihove napore još manje plodonosnim.
Rudari će prestati sa kopanjem kada padne subvencija za blokove
Očigledno niko ne može biti siguran u ovo, jer je to buduća pojava. Ali zajedničko očekivanje je da će, kako opada subvencija za blokove, naknade će rasti, a rudari će i dalje dobijati kompenzaciju za svoje transakcije obrade posla i obezbeđivanje mreže. Do tog trenutka, verovatnoća postojanja opšteprihvaćenog rešenja za skaliranje, kao što je Lightning, biće daleko veća. Čak i ako bi neki rudari prestali da kopaju, zahvaljujući mrežnom pravilu ‘difficulty adjustment‘, i dalje bi funkcionisalo sasvim u redu i blokovi bi se i dalje proizvodili u proseku svakih 10 minuta. Da difficulty adjustment sjajno funkcionise i kad su veliki procenti u pitanju (27 %) smo videli u Junu 2021 godine kad su Kineski majneri morali ugasiti masine zbog bana bitcoin mininga u kini.
Rudarenje je loše za životnu sredinu
Tačno je da Bitcoin-ov dokaz o radu, eng. proof of work, rudarskog procesa troši ogromne količine energije, ali većina toga sada dolazi iz obnovljivih izvora. Bitcoin takođe podstiče razvoj korišćenja energije iz izvora koji bi inače bili bačeni, poput gorivog prirodnog gasa. Bitcoin troši energiju samo za apetit tržišta. Ako se više ljudi odluči da vrednuje i koristi Bitcoin-e, tada će se više energije posvetiti njegovom obezbeđivanju. Suprotno je takodje tačno. Više o tome dali je bitcoin rudarenje štetno možete pročitati ovdje.
Bitcoin je previše nestabilan
Svakako nije tajna da Bitcoin ima volatilno kretanje cene. To je relativno novo finansijsko sredstvo koje tržište još uvek pokušava da razume. Zbog toga je uvek dobar savet da ne pokušavate da trgujete marketom radi zarade. Usvajanjem strategije obavljanja manjih ali češćih kupovina, vi efektivno ignorišete volatilnost cena Bitcoin-a i dobijate cenu ‘prosečnog tržišta‘. Nefinansijski savet.
Bitcoin je previše spor
Ako bi Starbucks sutra prihvatio bitcoin-e, onda da, čekanje od 10 minuta na potvrdu za plaćanje vašeg lattea možda nije idealna situacija. Za skoro trenutne uplate poput te imamo Lightning. Iako korisničko iskustvo nije toliko uglađeno kao CashApp ili Venmo, ono sigurno stiže. Recimo da želite da prebacite 50,000 USD na drugi kraj sveta, u poređenju sa trenutno dostupnim opcijama, 10 minuta ne deluje tako sporo?
Bitcoin je previše težak za upotrebu
Ovo je krajnje subjektivno gledište i zavisi od svakog pojedinca. Ali da, trenutno se slažem da je lakše dodirnuti bankovnu karticu na terminalu nego izvaditi telefon, skenirati QR kod i sačekati potvrdu. Mislimo da je dodatnih nekoliko koraka za izvršavanje Bitcoin transakcije mala cena koju treba platiti za beneficije koje mreža nudi. Postoje hiljade developera širom sveta koji rade danonoćno kako bi olakšali korisničko iskustvo. Kao i u svim tehnologijama, potrebno je vreme za razvoj i usavršavanje.
Bitcoin Rečnik
Jednostavna objašnjenja uobičajenih Bitcoin termina.
-
Adresa - Bitcoin adresa je niz slova i brojeva. Vaš novčanik može da ih generiše beskonačno mnogo,i svaka je jedinstvena
-
Bip - Predlog za poboljšanje bitkoina, eng. 'Bitcoin Improvement Proposal‘ predstavlja način na koji se promene protokola podnose, odobravaju i označavaju
-
bitcoin (malo ‘b’) - Kada se izrazi sa malim „b“, reč bitcoin odnosi se na jedinicu valute
-
Blok - Skup transakcija koje je rudar grupisao i uspešno iskopao
-
Blockchain - Lanac uspešnih blokova koji se grade jedan na drugom. Svaka je vezana za svog prethodnika
-
Hladno Skladištenje (cold storage) - Metoda čuvanja privatnih ključeva bitcoin-a u okruženju koje nije povezano sa Internetom
-
Potvrda (Confirmation) - Kada se transakcija rudari, deo bloka je jedna potvrda. Svaki sledeći blok je dodatna potvrda
-
Pravila konsenzusa (Consensus rules) - Skup pravila koje mora da poštuje svako ko želi da učestvuje u mreži
-
Težina (Difficulty) - Podesiva vrednost koja diktira kolika je računarska snaga potrebna rudarima za kopanje novih blokova.
-
Naknade (Fees) - Vrednost koja se plaća rudaru za uključivanje transakcije u blok
-
Hardware novčanik - Namenski sigurni uređaj za čuvanje bitcoin privatnih ključeva u oflajn okruženju
-
Hash - Termin dat radnji pretvaranja podataka. Hashing koriste rudari za obradu transakcija
-
Brzina Hasha (Hash Rate) - Ukupan broj hashova koje je izvršio rudar ili grupa rudara, eng. mining pool, izražen u hashovima u sekundi
-
KYC - ‘Znajte svog kupca, eng. Know Your Customer‘ je propis koji zahteva od preduzeća koja prodaju bitcoin-e da prikupljaju identifikacione informacije o kupcu
-
Lightning Network - Dodatni sloj izgrađen na vrhu Bitcoin-a koji omogućava korisnicima da šalju/primaju male uplate sa vrlo niskim naknadama
-
Mempool - Grupa transakcija koja čeka da ih rudar uključi u blok
-
Rudar - Učesnik mreže koji doprinosi računarskoj snazi za obradu transakcija u želji da zaradi naknade i blok nagradu
-
Multisig - Multi-Signature je postavka novčanika koja može zahtevati više privatnih ključeva za autorizaciju transakcije
-
Čvor (Node) - Računar povezan na Bitcoin mrežu koji koristi softver potreban za emitovanje, prenošenje i verifikaciju transakcija
-
Papirni novčanik - Komad papira koji sadrži neophodne podatke za skladištenje Bitkoina zaštićenog od pristupa internetu
-
Privatni ključ - Jedinstveni niz slova i brojeva potreban za čuvanje i transakciju bitcoin-a. Ovo ne biste trebali da delite ni sa kim
-
Proof of Work - Metod kojim rudari nastoje da osiguraju mrežu i uključuju transakcije u blokove
-
Javni ključ - Izveden iz privatnog ključa, javni ključ se koristi prilikom provere potpisa u transakciji
-
Block Reward - Blok nagrada se dodeljuje prvom rudaru koji postigne dovoljan dokaz o radu, eng. Proof of Work. Nagrada = Blok subvencija + sve naknade za transakcije za taj blok. Trenutna blok subvencija je 6,25 BTC.
-
Satoshi or ‘sat’ - Nazvan po anonimnom tvorcu Bitcoin-a i ponekad skraćenici „sat“, Satoshi je najmanja jedinica bitcoin-a. 1 bitcoin = 100 miliona satoshis
-
Satoshi Nakamoto - Pseudonim koji je koristio Bitcoin-ov tvorac (ili tvorci) pre nego što je nestao sa interneta
-
SegWit - Odvojeni svedok, eng. Segregated Witness, je poboljšanje napravljeno 2017. godine kako bi se povećala skalabilnost mreže. Segwit transakcije su jeftinije.
-
Subvencija (Subsidy) - Subvencija se isplaćuje rudaru koji postigne dovoljan dokaz o radu za svaki blok. Trenutna subvencija je 6,25 BTC. Ona se prepolovljava na svakih 210.000 blokova (otprilike 4 godine)
-
Testnet - Odvojena mreža sa gotovo identičnim dizajnom kao Bitcoin, koja služi programerima za testiranje poboljšanja
-
Tor - The Onion Router je alternativna mreža koju koriste korisnici koji žele da sačuvaju svoju privatnost na mreži
-
Txid - Identifikator transakcije, eng. Transaction Identifier, je jedinstveni niz brojeva i slova koji se koristi za označavanje transakcije
-
UTXO - Nepotrošeni izlaz transakcije, eng. Unspent Transaction Output, je deo bitcoin-a potrošen na novu adresu koji se može koristiti kao ulaz u budućim transakcijama
-
@ 9ca447d2:fbf5a36d
2025-06-07 13:01:26Wall Street is warming up to Bitcoin and getting closer and closer to it.
Cantor Fitzgerald, one of the oldest and most respected investment banks on Wall Street, has launched a $2 billion bitcoin-backed lending program.
They’ve reportedly already done their first deals, lending to two big digital asset companies: FalconX and Maple Finance.
This is a big step in connecting traditional finance to the fast-moving world of Bitcoin.
Cantor’s new service allows big investors, hedge funds and asset managers, to borrow money using bitcoin as collateral.
This is a game changer for institutions that hold bitcoin, as they can now access liquidity without having to sell their assets.
“Institutions holding bitcoin are looking to broaden their access to diverse funding sources,” said Christian Wall, co-CEO and global head of fixed income at Cantor Fitzgerald.
“And we are excited to support their liquidity needs to help them drive long term growth and success.”
The loans are not speculative or unsecured.
They are structured like traditional finance deals, backed by the borrower’s bitcoin. This reduces the risk for Cantor while giving bitcoin-holding companies new ways to grow and operate.
The first recipients of Cantor’s lending program are FalconX, a digital asset brokerage, and Maple Finance, a blockchain-based lending platform.
FalconX confirmed they secured a credit facility of over $100 million. Maple Finance also received the first tranche of their loan from Cantor.
This comes at a time when the bitcoin lending space is recovering after a tough period. Several big firms went under in 2022 and investor confidence was shaken.
Now with traditional finance on board, bitcoin-backed lending has returned. According to Galaxy Research the total size of the digital asset lending market grew to $36.5 billion in Q4 2024.
Cantor’s move into bitcoin-backed lending isn’t new. They announced their plans in July 2024 and have been building their presence in the Bitcoin space since then.
Earlier this year, they partnered with Tether, SoftBank and Bitfinex to launch Twenty One Capital, a $3.6 billion fund to buy over 42,000 bitcoin.
In May 2025 Cantor Equity Partners merged with Twenty One Capital and bought nearly $459 million worth of bitcoin.
They also own around $1.9 billion in shares of Strategy, a company that holds a lot of bitcoin. Clearly Cantor believes in bitcoin as a long-term asset.
Cantor is also a big player in the stablecoin space.
They manage U.S. Treasury reserves for Tether, the company behind the $142 billion USDT stablecoin. This adds another layer of trust and credibility to Cantor’s digital asset involvement.
To secure the bitcoin used as collateral, Cantor has partnered with digital asset custodians Anchorage Digital and Copper.co.
These companies are known for their robust security and institutional-grade infrastructure. Cantor hasn’t disclosed loan terms or interest rates but confirmed the lending will follow current regulations.
This also shows how traditional financial players are embracing DeFi.
Maple Finance for example allows undercollateralized lending using blockchain. By backing companies like Maple, Cantor is innovating while still having control and compliance.
For years, bitcoin-backed loans were only available through digital-asset-native companies like Genesis, BlockFi, and Ledn.
These loans were mostly for smaller clients and retail investors. But with Cantor’s entry, the scale and professionalism of bitcoin lending are expanding.
-
@ dfa02707:41ca50e3
2025-06-07 10:02:20Contribute to keep No Bullshit Bitcoin news going.
- RoboSats v0.7.7-alpha is now available!
NOTE: "This version of clients is not compatible with older versions of coordinators. Coordinators must upgrade first, make sure you don't upgrade your client while this is marked as pre-release."
- This version brings a new and improved coordinators view with reviews signed both by the robot and the coordinator, adds market price sources in coordinator profiles, shows a correct warning for canceling non-taken orders after a payment attempt, adds Uzbek sum currency, and includes package library updates for coordinators.
Source: RoboSats.
- siggy47 is writing daily RoboSats activity reviews on stacker.news. Check them out here.
- Stay up-to-date with RoboSats on Nostr.
What's new
- New coordinators view (see the picture above).
- Available coordinator reviews signed by both the robot and the coordinator.
- Coordinators now display market price sources in their profiles.
Source: RoboSats.
- Fix for wrong message on cancel button when taking an order. Users are now warned if they try to cancel a non taken order after a payment attempt.
- Uzbek sum currency now available.
- For coordinators: library updates.
- Add docker frontend (#1861).
- Add order review token (#1869).
- Add UZS migration (#1875).
- Fixed tests review (#1878).
- Nostr pubkey for Robot (#1887).
New contributors
Full Changelog: v0.7.6-alpha...v0.7.7-alpha
-
@ 7f6db517:a4931eda
2025-06-07 13:01:53The newly proposed RESTRICT ACT - is being advertised as a TikTok Ban, but is much broader than that, carries a $1M Fine and up to 20 years in prison️! It is unconstitutional and would create massive legal restrictions on the open source movement and free speech throughout the internet.
The Bill was proposed by: Senator Warner, Senator Thune, Senator Baldwin, Senator Fischer, Senator Manchin, Senator Moran, Senator Bennet, Senator Sullivan, Senator Gillibrand, Senator Collins, Senator Heinrich, and Senator Romney. It has broad support across Senators of both parties.
Corrupt politicians will not protect us. They are part of the problem. We must build, support, and learn how to use censorship resistant tools in order to defend our natural rights.
The RESTRICT Act, introduced by Senators Warner and Thune, aims to block or disrupt transactions and financial holdings involving foreign adversaries that pose risks to national security. Although the primary targets of this legislation are companies like Tik-Tok, the language of the bill could potentially be used to block or disrupt cryptocurrency transactions and, in extreme cases, block Americans’ access to open source tools or protocols like Bitcoin.
The Act creates a redundant regime paralleling OFAC without clear justification, it significantly limits the ability for injured parties to challenge actions raising due process concerns, and unlike OFAC it lacks any carve-out for protected speech. COINCENTER ON THE RESTRICT ACT
If you found this post helpful support my work with bitcoin.
-
@ 9ca447d2:fbf5a36d
2025-06-07 13:01:19El Salvador – June 3, 2025 — The grassroots Bitcoin community of El Salvador is proud to announce the return of Bitcoin Week, taking place this November with five dynamic events celebrating Bitcoin adoption, education, and community-led innovation.
Join us for a week of inspiration, collaboration, and impact.
Bitcoin Week 2025 calendar
📍 November 12 – Bitcoin Education Celebration Gala: Kick off the week in style with a luxurious and intimate evening at a high-class dinner, celebrating “proof of work” and the achievements of the Bitcoin education movement.
Expect major plans for the year(s) ahead but also a reflection to past proof-of-work—and don’t miss out on the Great Grassroots Giveaway, included with every ticket.📍 November 13 – Bitcoin Educators Unconference: Hosted for the third time in San Salvador at Cadejo Montaña, this sixth edition of the Educators Unconference embodies our commitment to provide a space for decentralized, community-led conversations.
Join educators and leaders shaping the global Bitcoin conversation!📍 November 14–15 – Adopting Bitcoin: The Network Effect: Now in its fifth year, Adopting Bitcoin returns with a powerful focus on real-world Bitcoin usage across global communities.
This year’s theme—The Network Effect—explores how interconnected local initiatives can spark exponential growth in adoption.📍 November 16 – Visit Bitcoin Beach, El Zonte: Make your way to Bitcoin Beach, the heart of El Salvador’s Bitcoin story. Enjoy a day of connection and discovery in this iconic beachside town. Full details coming soon.
📍 November 22–23 – Economía Bitcoin, Berlín: Head to the town of Berlín, El Salvador for the second edition of Economía Bitcoin, a powerful, small-scale conference and festival focused on circular economies and practical Bitcoin use.
Spend sats freely in town and see how local action drives global impact.With five unique events across three regions in Bitcoin Country, this edition of Bitcoin Week is your chance to experience El Salvador’s Bitcoin journey up close. Whether you’re an educator, builder, Bitcoiner, or simply curious—you’re invited.
Join us this November. Be part of the movement.
-
@ 523a8281:fc94329a
2025-06-07 04:53:12As the global financial landscape continues to evolve, the interaction between the cryptocurrency market and traditional financial systems is becoming increasingly intertwined. Crypto payment cards, serving as a critical bridge between the two, are emerging as a new force in the payments sector. According to a report by The Brainy Insights, the global crypto credit card market was valued at $25 billion in 2023 and is projected to surpass $400 billion by 2033, showcasing astonishing growth potential. Behind this rapid development is the relentless effort of payment providers to bridge the gap between crypto and traditional payment methods, striving to meet users' diverse payment needs. Currently, crypto payment card products are springing up like mushrooms after a rain and have already integrated with mainstream payment methods like Google Pay, Apple Pay, and Alipay, greatly enhancing their usability. Products like the Crypto. com Visa Card, Binance Card, Bybit Card, and Bitget Card, mostly launched by major cryptocurrency exchanges, hold significant influence in the market. In terms of technological innovation, some card issuers have even integrated DeFi protocols such as Ethena, Morpho, and USUAL, offering asset appreciation services to users and successfully building a comprehensive financial service ecosystem that extends from payments to wealth management. This further expands the application scope and value of crypto payment cards. Despite the unique advantages of cryptocurrency payments in terms of speed (46% of users choose it), cross-border cost efficiency (37% value low fees), and financial autonomy (32% pursue decentralization), a survey by Bitget Wallet reveals that their actual application scale still lags significantly behind traditional payment systems. The traditional payment market, worth trillions of dollars, covers the vast majority of daily transactions globally, while crypto payments occupy only a small share, mainly concentrated in niche scenarios like cross-border remittances and digital asset transactions. Users' preference for traditional payment methods primarily stems from concerns about trust and security. The security risks of crypto payments (e.g., hacking and fraud) leave users apprehensive, while traditional payments, backed by mature banking systems, legal protections, and dispute resolution mechanisms, significantly reduce transaction risks. Additionally, the price volatility of cryptocurrencies makes them unsuitable as stable transaction mediums, whereas the stability of traditional fiat currencies better aligns with daily consumer needs. Traditional payments also achieve seamless coverage through extensive POS terminals and online integrations, whereas the limited merchant acceptance of crypto payments restricts their practicality. Furthermore, the low operational barriers of traditional payment tools and the habitual usage formed over time, combined with the complexity and technical barriers of crypto wallets, pose challenges to the widespread adoption of crypto payments. Against this market backdrop, the VooPay digital asset card stands out, showcasing core advantages such as multi-chain technology integration, global compliance frameworks, and real-time payment innovations, redefining the crypto payment experience: 1. Breaking Efficiency Barriers with Multi-Chain Interoperability and Real-Time Payment Technology The VooPay digital asset card supports major cryptocurrencies like Bitcoin, Ethereum, USDT, and BNB (compatible with multi-chain protocols such as BEP-20 and TRC-20). Through an integrated cross-chain bridge, users can freely transfer assets across major blockchains like Ethereum, BNB Chain, and TRON without manual conversion. For instance, a freelancer in the UK receiving USDT payments from a U.S. client can directly convert it to GBP for consumption via the card, with the entire process settling in minutes and fees as low as 1.8%-2%. This represents a more than 90% improvement in efficiency and a 60%-80% reduction in costs compared to traditional bank cross-border transfers (5%-10% fees + 3-5 days settlement). The platform employs Layer 2 scaling technologies (e.g., zk-Rollups) to further optimize transaction throughput, supporting high-frequency, low-value payment scenarios. Additionally, its dynamic exchange rate locking feature helps users mitigate cryptocurrency price volatility risks, ensuring payment amount stability—for example, even if Bitcoin drops from $101,867 in January 2025 to $94,500 in February, users can still settle payments at the real-time exchange rate during consumption without needing to pre-convert to fiat currency. 2. Building Trust with a Global Payment Network and Compliance System Leveraging deep collaborations with Visa and MasterCard, the VooPay digital asset card covers 210 countries/regions and 150 million merchants (including offline retail, online e-commerce, and ATM networks). It supports integration with third-party platforms like Alipay, WeChat Pay, and Apple Pay, enabling seamless transitions between "crypto-to-fiat" payment scenarios. For instance, in the $20.5 billion spent by Canadians in the U.S. in 2024, using the VooPay card could bypass traditional bank exchange rate losses (averaging about 3%) and high fees, requiring only a fixed rate of 1.8%-2%. In terms of compliance, VooPay holds financial licenses in Europe and North America, strictly adhering to KYC (Know Your Customer) and AML (Anti-Money Laundering) standards. Users must complete identity verification to activate their cards. The digital asset cards are issued by banks in Hong Kong and the U.S., with funds segregated from platform operating assets and regularly audited by third-party institutions to ensure security. This ensures that every transaction complies with global regulatory requirements, especially under the backdrop of tightened financial regulations driven by Trump-era policies, providing users with reliable safeguards. 3. Revolutionizing User Experience and Extending the Ecosystem to Make Crypto Payments Mainstream The VooPay card is designed to balance high spending limits and operational convenience: the Gold Card has a daily spending limit of $7,500 and a monthly limit of $50,000, while the virtual card can be activated with as little as 10 USDT. It supports instant card issuance and multilingual interfaces (including Chinese). Users can view multi-chain asset distributions, transaction records, and real-time exchange rates via the app, significantly lowering the operational barriers compared to traditional crypto wallets. Moreover, the card integrates Zero-Knowledge Proof (ZKP) technology, protecting transaction privacy while meeting compliance requirements, allowing users to complete payment verification without disclosing sensitive information. On the ecosystem front, VooPay's native token, VOO, has diverse use cases, including payment fee discounts (20%), participation in liquidity mining, and community governance voting. Future plans include deep integration with DeFi protocols, enabling users to directly participate in staking, lending, and other financial activities via the card, building an integrated ecosystem of "payments-wealth management-governance." As a core project incubated by M3 DAO, VooPay is deeply embedded in its community ecosystem, which spans over 100 countries and includes more than 200,000 members. It serves as the designated payment hub for incubated projects like Rocket and MetaMars. Rocket, an IDO platform in the DeFi space, collaborates with VooPay to achieve seamless integration of crypto asset subscriptions and payments. Users can invest in Rocket projects using the VooPay card and enjoy VOO token fee discounts and priority benefits. MetaMars, on the other hand, extends VooPay's practical applications in metaverse scenarios, enabling users to purchase NFTs or virtual services with cryptocurrencies stored in their cards, with the system automatically converting to platform tokens at low fees. Together, the three entities drive VooPay's construction of an integrated ecosystem of "payments + investments + applications," promoting the adoption of cryptocurrencies in diverse scenarios. 4. Differentiated Competitiveness to Address Market Challenges Compared to traditional payments and competitors, VooPay's core advantages lie in: ●Dual-Driven by Technology and Compliance: Enhancing efficiency through cross-chain interoperability and Layer 2 technologies while building trust with financial licenses in Europe and North America and segregated fund custody. ●Deep Integration of Scenarios and Ecosystems: Covering diverse scenarios such as personal consumption, enterprise cross-border acquiring, and DeFi finance, rather than being limited to single-use transaction functions. ●Accurate Matching of User Needs: Addressing pain points in cross-border payments (low cost, real-time), privacy and security demands (ZKP technology), and operational barriers (one-click integration with mainstream payments) with systematic solutions. Looking ahead, as blockchain technology matures and global regulatory environments gradually open up, VooPay is poised to carve out a larger space in the crypto payment card market with its triple advantages of "technological innovation + compliance framework + ecosystem expansion." It aims to drive cryptocurrencies from "marginal payments" to "daily necessities," becoming a mainstream gateway connecting Web3 and the real economy.
-
@ 84b0c46a:417782f5
2025-06-07 10:21:09やること
- [ ] るみ 初期のわかりにくごちゃ設定を何とかする
- [x] るみ シーンおんのやつみなおしてみる
- [ ] やってることまとめるやつ
- [ ] びうあ publishのリレー状態チェック
- [ ] るみ 10002並べ替え
- [ ] るみ 10030の並べ替え?
- [ ] カスタム絵文字のやつ
- [x] まきもの naddrを渡して編集画面開く
- [ ] るみ naddrの更新ボタン
- [ ] ニーサ
- [ ] クレカのポイント使い切って、他のクレカ契約できたら、今のクレカ解約する(アマゾンかなんか)
- [ ] るみ 書き込むたびにチェックマークが増えてくよ nostr:nevent1qvzqqqqqqypzpp9sc34tdxdvxh4jeg5xgu9ctcypmvsg0n00vwfjydkrjaqh0qh4qyxhwumn8ghj77tpvf6jumt9qys8wumn8ghj7un9d3shjtt2wqhxummnw3ezuamfwfjkgmn9wshx5uqpz9mhxue69uhkuenjv4kxz7fwv9c8qqgnwaen5te0xyerwt3s9cczuvf6xsurvwgpzdmhxue69uhhwmm59ehx7um5wghxuet5qythwumn8ghj7mn0wd68ytnfw36xzmndduhx6etwqywhwumn8ghj7un9d3shjtnwdaehgu3wwa5hyetydejhgtn2wqqzpzatskhfw95aj6g0tex2c5wy0ydlrnts8lk7du60t906d23p7ch4whv3xm
デイリー
- うめちぇっく
- 薬飲む
- 生姜接種
-
@ 97c70a44:ad98e322
2025-06-06 20:48:33Vibe coding is taking the nostr developer community by storm. While it's all very exciting and interesting, I think it's important to pump the brakes a little - not in order to stop the vehicle, but to try to keep us from flying off the road as we approach this curve.
In this note Pablo is subtweeting something I said to him recently (although I'm sure he's heard it from other quarters as well):
nostr:nevent1qvzqqqqqqypzp75cf0tahv5z7plpdeaws7ex52nmnwgtwfr2g3m37r844evqrr6jqy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yh8qunfd4skctnwv46z7qg6waehxw309ac8junpd45kgtnxd9shg6npvchxxmmd9uqzq0z48d4ttzzkupswnkyt5a2xfkhxl3hyavnxjujwn5k2k529aearwtecp4
There is a naive, curmudgeonly case for simply "not doing AI". I think the intuition is a good one, but the subject is obviously more complicated - not doing it, either on an individual or a collective level, is just not an option. I recently read Tools for Conviviality by Ivan Illich, which I think can help us here. For Illich, the best kind of tool is one which serves "politically interrelated individuals rather than managers".
This is obviously a core value for bitcoiners. And I think the talks given at the Oslo Freedom Forum this year present a compelling case for adoption of LLMs for the purposes of 1. using them for good, and 2. developing them further so that they don't get captured by corporations and governments. Illich calls both the telephone and print "almost ideally convivial". I would add the internet, cryptography, and LLMs to this list, because each one allows individuals to work cooperatively within communities to embody their values in their work.
But this is only half the story. Illich also points out how "the manipulative nature of institutions... have put these ideally convivial tools at the service of more [managerial dominance]."
Preventing the subversion and capture of our tools is not just a matter of who uses what, and for which ends. It also requires an awareness of the environment that the use of the tool (whether for virtuous or vicious ends) creates, which in turn forms the abilities, values, and desires of those who inhabit the environment.
The natural tendency of LLMs is to foster ignorance, dependence, and detachment from reality. This is not the fault of the tool itself, but that of humans' tendency to trade liberty for convenience. Nevertheless, the inherent values of a given tool naturally gives rise to an environment through use: the tool changes the world that the tool user lives in. This in turn indoctrinates the user into the internal logic of the tool, shaping their thinking, blinding them to the tool's influence, and neutering their ability to work in ways not endorsed by the structure of the tool-defined environment.
The result of this is that people are formed by their tools, becoming their slaves. We often talk about LLM misalignment, but the same is true of humans. Unreflective use of a tool creates people who are misaligned with their own interests. This is what I mean when I say that AI use is anti-human. I mean it in the same way that all unreflective tool use is anti-human. See Wendell Berry for an evaluation of industrial agriculture along the same lines.
What I'm not claiming is that a minority of high agency individuals can't use the technology for virtuous ends. In fact, I think that is an essential part of the solution. Tool use can be good. But tools that bring their users into dependence on complex industry and catechize their users into a particular system should be approached with extra caution. The plow was a convivial tool, and so were early tractors. Self-driving John Deere monstrosities are a straightforward extension of the earlier form of the technology, but are self-evidently an instrument of debt slavery, chemical dependency, industrial centralization, and degradation of the land. This over-extension of a given tool can occur regardless of the intentions of the user. As Illich says:
There is a form of malfunction in which growth does not yet tend toward the destruction of life, yet renders a tool antagonistic to its specific aims. Tools, in other words, have an optimal, a tolerable, and a negative range.
The initial form of a tool is almost always beneficial, because tools are made by humans for human ends. But as the scale of the tool grows, its logic gets more widely and forcibly applied. The solution to the anti-human tendencies of any technology is an understanding of scale. To prevent the overrun of the internal logic of a given tool and its creation of an environment hostile to human flourishing, we need to impose limits on scale.
Tools that require time periods or spaces or energies much beyond the order of corresponding natural scales are dysfunctional.
My problem with LLMs is:
- Not their imitation of human idioms, but their subversion of them and the resulting adoption of robotic idioms by humans
- Not the access they grant to information, but their ability to obscure accurate or relevant information
- Not their elimination of menial work, but its increase (Bullshit Jobs)
- Not their ability to take away jobs, but their ability to take away the meaning found in good work
- Not their ability to confer power to the user, but their ability to confer power to their owner which can be used to exploit the user
- Not their ability to solve problems mechanistically, but the extension of their mechanistic value system to human life
- Not their explicit promise of productivity, but the environment they implicitly create in which productivity depends on their use
- Not the conversations they are able to participate in, but the relationships they displace
All of these dysfunctions come from the over-application of the technology in evaluating and executing the fundamentally human task of living. AI work is the same kind of thing as an AI girlfriend, because work is not only for the creation of value (although that's an essential part of it), but also for the exercise of human agency in the world. In other words, tools must be tools, not masters. This is a problem of scale - when tool use is extended beyond its appropriate domain, it becomes what Illich calls a "radical monopoly" (the domination of a single paradigm over all of human life).
So the important question when dealing with any emergent technology becomes: how can we set limits such that the use of the technology is naturally confined to its appropriate scale?
Here are some considerations:
- Teach people how to use the technology well (e.g. cite sources when doing research, use context files instead of fighting the prompt, know when to ask questions rather than generate code)
- Create and use open source and self-hosted models and tools (MCP, stacks, tenex). Refuse to pay for closed or third-party hosted models and tools.
- Recognize the dependencies of the tool itself, for example GPU availability, and diversify the industrial sources to reduce fragility and dependence.
- Create models with built-in limits. The big companies have attempted this (resulting in Japanese Vikings), but the best-case effect is a top-down imposition of corporate values onto individuals. But the idea isn't inherently bad - a coding model that refuses to generate code in response to vague prompts, or which asks clarifying questions is an example. Or a home assistant that recognized childrens' voices and refuses to interact.
- Divert the productivity gains to human enrichment. Without mundane work to do, novice lawyers, coders, and accountants don't have an opportunity to hone their skills. But their learning could be subsidized by the bots in order to bring them up to a level that continues to be useful.
- Don't become a slave to the bots. Know when not to use it. Talk to real people. Write real code, poetry, novels, scripts. Do your own research. Learn by experience. Make your own stuff. Take a break from reviewing code to write some. Be independent, impossible to control. Don't underestimate the value to your soul of good work.
- Resist both monopoly and "radical monopoly". Both naturally collapse over time, but by cultivating an appreciation of the goodness of hand-crafted goods, non-synthetic entertainment, embodied relationship, and a balance between mobility and place, we can relegate new, threatening technologies to their correct role in society.
I think in all of this is implicit the idea of technological determinism, that productivity is power, and if you don't adapt you die. I reject this as an artifact of darwinism and materialism. The world is far more complex and full of grace than we think.
The idea that productivity creates wealth is, as we all know, bunk. GDP continues to go up, but ungrounded metrics don't reflect anything about the reality of human flourishing. We have to return to a qualitative understanding of life as whole, and contextualize quantitative tools and metrics within that framework.
Finally, don't believe the hype. Even if AI delivers everything it promises, conservatism in changing our ways of life will decelerate the rate of change society is subjected to and allow time for reflection and proper use of the tool. Curmudgeons are as valuable as technologists. There will be no jobspocalypse if there is sufficient political will to value human good over mere productivity. It's ok to pump the breaks.
-
@ 9ca447d2:fbf5a36d
2025-06-07 13:01:14CANNES, FRANCE – May 2025 — Bitcoin mining made its mark at the world’s most prestigious film gathering this year as Puerto Rican director and producer Alana Mediavilla introduced her feature documentary Dirty Coin: The Bitcoin Mining Documentary at the Marché du Film during the Cannes Film Festival.
The film puts bitcoin mining at the center of a rising global conversation about energy, technology, and economic freedom.
Dirty Coin is the first feature-length documentary to explore bitcoin mining through immersive, on-the-ground case studies.
From rural towns in the United States to hydro-powered sites in Latin America and the Congo, the film follows miners and communities navigating what may be one of the most misunderstood technologies of our time.
The result is a human-centered look at how bitcoin mining is transforming local economies and energy infrastructure in real ways.
To mark its Cannes debut, Mediavilla and her team hosted a packed industry event that brought together leaders from both film and finance.
Dirty Coin debut ceremony at the Marché du Film
Sponsors Celestial Management, Sangha Renewables, Nordblock, and Paystand.org supported the program, which featured panels on mining, energy use, and decentralized infrastructure.
Attendees had the rare opportunity to engage directly with pioneers in the space. A special session in French led by Seb Gouspillou spotlighted mining efforts in the Congo’s Virunga region.
Dirty Coin builds on Mediavilla’s award-winning short film Stranded, which won over 20 international prizes, including Best Short Documentary at Cannes in 2024.
That success helped lay the foundation for the feature and positioned Mediavilla as one of the boldest new voices in global documentary filmmaking.
Alana Mediavilla speaks at the Marché du Film — Cannes Film Festival
“If we’ve found an industry that can unlock stranded energy and turn it into real power for people—especially in regions with energy poverty—why wouldn’t we look into it?” says Mediavilla. “Our privilege blinds us.
“The same thing we criticize could be the very thing that lifts the developing world to our standard of living. Ignoring that potential is a failure of imagination.”
Much like the decentralized network it explores, Dirty Coin is spreading globally through grassroots momentum.
Local leaders are hosting independent screenings around the world, from Roatán and Berlin to São Paulo and Madrid. Upcoming events include Toronto and Zurich, with more cities joining each month.
Mediavilla, who previously worked in creative leadership roles in the U.S. — including as a producer at Google — returned to Puerto Rico to found Campo Libre, a studio focused on high-caliber, globally relevant storytelling from the Caribbean.
She was also accepted into the Cannes Producers Network, a selective program open only to producers with box office releases in the past four years.
Mediavilla qualified after independently releasing Dirty Coin in theaters across Puerto Rico. Her participation in the network gave her direct access to meetings, insights, and connections with the most active distributors and producers working today.
The film’s next public screening will take place at the Anthem Film Festival in Palm Springs on Saturday, June 14 at 2 PM. Additional screenings and market appearances are planned throughout the year at Bitcoin events and international film platforms.
Dirty Coin at the Cannes Film Festival
Watch the Trailer + Access Press Materials
📂 EPK
🎬 Screener
🌍 Host a Screening
Follow the Movement
Instagram: https://www.instagram.com/dirty_coin_official/
Twitter: https://x.com/DirtyCoinDoc
Website: www.dirtycointhemovie.com -
@ 7f6db517:a4931eda
2025-06-06 23:02:25Bank run on every crypto bank then bank run on every "real" bank.
— ODELL (@ODELL) December 14, 2022
Good morning.
It looks like PacWest will fail today. It will be both the fifth largest bank failure in US history and the sixth major bank to fail this year. It will likely get purchased by one of the big four banks in a government orchestrated sale.
March 8th - Silvergate Bank
March 10th - Silicon Valley Bank
March 12th - Signature Bank
March 19th - Credit Suisse
May 1st - First Republic Bank
May 4th - PacWest Bank?PacWest is the first of many small regional banks that will go under this year. Most will get bought by the big four in gov orchestrated sales. This has been the playbook since 2008. Follow the incentives. Massive consolidation across the banking industry. PacWest gonna be a drop in the bucket compared to what comes next.
First, a hastened government led bank consolidation, then a public/private partnership with the remaining large banks to launch a surveilled and controlled digital currency network. We will be told it is more convenient. We will be told it is safer. We will be told it will prevent future bank runs. All of that is marketing bullshit. The goal is greater control of money. The ability to choose how we spend it and how we save it. If you control the money - you control the people that use it.
If you found this post helpful support my work with bitcoin.
-
@ da8b7de1:c0164aee
2025-06-07 04:42:05Nukleáris technológiai és projektfejlesztési hírek
Több jelentős nemzetközi fejlemény történt a nukleáris energia területén. A Westinghouse Electric Company megkapta az amerikai Energiaügyi Minisztériumtól a kulcsfontosságú biztonsági jóváhagyást az eVinci mikroreaktorához, ami fontos lépés ennek az innovatív nukleáris technológiának a bevezetése felé. A vállalat Idaho államban tervezi egy tesztreaktor létesítését, ami jól mutatja, hogy a mikroreaktorok piaca egyre nagyobb lendületet kap.
Eközben a nukleáris kapacitás gyors bővítéséhez szükséges ellátási lánc felkészültsége volt a fő témája a World Nuclear Association első konferenciájának. Jelentős projektfrissítések között szerepel a kritikus turbinakomponensek beszerelése a kínai Haiyang atomerőműben, az indiai Mahi Banswara Rajasthan Atomerőmű négy blokkjára vonatkozó szabályozói engedély, valamint egy új olaszországi partnerség, a Nuclitalia, amely fejlett nukleáris technológiákra fókuszál. Belgiumban a Nukleáris Kutatóközpont hivatalos konzultációkat indított egy ólom-hűtésű kis moduláris reaktor (SMR) ügyében, Brazília pedig bejelentette, hogy Oroszországgal közösen fejleszt SMR-projektet.
Szabályozási és biztonsági aktualitások
A Nemzetközi Atomenergia-ügynökség (IAEA) meghosszabbította a tanulmányok benyújtási határidejét a közelgő, nukleáris létesítmények ellenállóképességéről szóló konferenciájára, hangsúlyozva a nukleáris létesítmények alkalmazkodásának fontosságát a klímaváltozás jelentette növekvő kockázatokhoz. A konferenciát 2025 októberében rendezik Bécsben, és fő témája a nukleáris létesítmények biztonságának és ellenállóképességének növelése lesz, különös tekintettel a külső eseményekre, mint az árvizek és földrengések.
Kanadában a Nukleáris Biztonsági Bizottság engedélyezte az Ontario Power Generation számára, hogy megkezdje egy BWRX-300 típusú reaktor építését a Darlington New Nuclear Project helyszínén, ami a nukleáris építkezések folyamatos szabályozói támogatását mutatja. Az Egyesült Államokban a Nukleáris Szabályozási Bizottság további 20 évvel meghosszabbította a Duke Energy Oconee atomerőművi blokkjainak üzemeltetési engedélyét, valamint támogatást nyújtott a michigani Palisades atomerőmű újraindításához.
Iparági és gazdasági trendek
Az iparági vezetők optimistán nyilatkoztak a nukleáris energia jelenlegi helyzetéről, kiemelve az Egyesült Államokban zajló aktív projekteket (például a TerraPower Wyomingban és az X-energy együttműködése a Dow vállalattal), valamint a fejlett nukleáris üzemanyaggyártásba irányuló magánbefektetések növekedését. Felmerült az is, hogy a Világbank nukleáris projekteket is finanszírozhatna, ami tovább ösztönözhetné a globális beruházásokat, és megerősítené a nukleáris energia szerepét az energetikai átmenetben.
Belgiumban a kormány és az Engie közüzemi vállalat végleges megállapodást kötött a Tihange 3 és Doel 4 reaktorok üzemidejének tíz évvel történő meghosszabbításáról, amely az energiabiztonságot és a radioaktív hulladék kezelését is szolgálja. Németországban a nukleáris technológiai szövetség hangsúlyozta, hogy akár hat, nemrégiben leállított reaktor újraindítása technikailag megvalósítható, és a nukleáris energia biztonságos, gazdaságos, valamint klímabarát alternatívát jelent.
Nemzetközi együttműködés és kutatás
Kanadában a Prodigy Clean Energy és a Serco közel jár a szállítható atomerőművek tesztprogramjának befejezéséhez, amelynek középpontjában a biztonság és az extrém helyzetekben való ellenállóképesség áll. Az EnergySolutions és a WEC Energy Group új nukleáris kapacitás létesítését vizsgálja a wisconsini Kewaunee helyszínen, és előzetes engedélyeket kívánnak szerezni a jövőbeni telepítéshez.
Az IAEA ismételten hangsúlyozta, hogy kész támogatni a Zaporizzsjai Atomerőműre vonatkozó megállapodásokat, amely továbbra is orosz katonai ellenőrzés alatt áll, kiemelve a térségben fennálló geopolitikai és biztonsági kihívásokat.
Források:
world-nuclear-news.org
nucnet.org
iaea.org
ans.org -
@ 7f6db517:a4931eda
2025-06-07 13:01:53@matt_odell don't you even dare not ask about nostr!
— Kukks (Andrew Camilleri) (@MrKukks) May 18, 2021
Nostr first hit my radar spring 2021: created by fellow bitcoiner and friend, fiatjaf, and released to the world as free open source software. I was fortunate to be able to host a conversation with him on Citadel Dispatch in those early days, capturing that moment in history forever. Since then, the protocol has seen explosive viral organic growth as individuals around the world have contributed their time and energy to build out the protocol and the surrounding ecosystem due to the clear need for better communication tools.
nostr is to twitter as bitcoin is to paypal
As an intro to nostr, let us start with a metaphor:
twitter is paypal - a centralized platform plagued by censorship but has the benefit of established network effects
nostr is bitcoin - an open protocol that is censorship resistant and robust but requires an organic adoption phase
Nostr is an open communication protocol that can be used to send messages across a distributed set of relays in a censorship resistant and robust way.
- Anyone can run a relay.
- Anyone can interact with the protocol.
- Relays can choose which messages they want to relay.
- Users are identified by a simple public private key pair that they can generate themselves.Nostr is often compared to twitter since there are nostr clients that emulate twitter functionality and user interface but that is merely one application of the protocol. Nostr is so much more than a mere twitter competitor. Nostr clients and relays can transmit a wide variety of data and clients can choose how to display that information to users. The result is a revolution in communication with implications that are difficult for any of us to truly comprehend.
Similar to bitcoin, nostr is an open and permissionless protocol. No person, company, or government controls it. Anyone can iterate and build on top of nostr without permission. Together, bitcoin and nostr are incredibly complementary freedom tech tools: censorship resistant, permissionless, robust, and interoperable - money and speech protected by code and incentives, not laws.
As censorship throughout the world continues to escalate, freedom tech provides hope for individuals around the world who refuse to accept the status quo. This movement will succeed on the shoulders of those who choose to stand up and contribute. We will build our own path. A brighter path.
My Nostr Public Key: npub1qny3tkh0acurzla8x3zy4nhrjz5zd8l9sy9jys09umwng00manysew95gx
If you found this post helpful support my work with bitcoin.
-
@ 9ca447d2:fbf5a36d
2025-06-07 13:01:10Ten years in Bitcoin can feel like an eternity. Just ask Sergej Kotliar, Founder and CEO of Bitrefill, who recently celebrated a decade of turning Bitcoin into something you can actually use in your everyday life.
“We started Bitrefill back in 2014,” Sergej reflects, thinking back to the early excitement around Bitcoin.
“The promise of internet money as a workaround to how cumbersome money was online motivated me. Imagine sending money as easily as sending an email. That’s still the vision driving us today.”
Bitrefill has evolved from a straightforward gift card provider into a full-fledged e-commerce powerhouse, allowing Bitcoiners to buy gift cards, eSIMs, mobile top-ups, and even prepaid debit cards.
From Netflix binges and Uber rides to topping up your phone in the middle of nowhere, Bitrefill supports more than 10,000 brands and over 900 phone carriers in more than 170 countries.
check out all the products and services at www.bitrefill.com
One challenge Sergej has navigated successfully is steering clear of hype-driven pitfalls. “We’ve always been a little bit better at building actual usage than at building hype,” he explains.
Instead of chasing every altcoin trend or speculative frenzy, Bitrefill has focused on the real-world, day-to-day use of bitcoin.
“The biggest challenge has always been finding the actual users of Bitcoin, not investors, but the ones who really want to use bitcoin in their everyday lives,” he emphasizes.
Bitrefill, he says proudly, has become the starting point for many users looking to spend bitcoin seamlessly.
“I think that people that use bitcoin transactionally and are looking to buy something with their coins. Very often, their customer journey starts with Bitrefill.”
Sergej isn’t shy about critiquing popular Bitcoin memes either. One particularly notable example is the “two S-curves” chart suggesting bitcoin first serves as a store of value, then as a medium of exchange.
“It’s maybe my least favorite chart,” Sergej laughs.
Bitcoin adoption curves — Source
While the chart lacks empirical data, notably missing any values on the y-axis, it does visualize a conceptual framework that many in the Bitcoin community find compelling.
The illustration suggests a natural progression where Bitcoin’s adoption follows two sequential S-curves:
first establishing itself as a store of value (the yellow curve peaking around 2029), followed by widespread adoption as a medium of exchange (the green curve peaking around 2037).
Despite its speculative nature, some argue this visualization effectively communicates the potential evolutionary path that many Bitcoiners envision, even if it wasn’t created with rigorous technical analysis.
What makes the Bitcoin ecosystem truly remarkable though is that builders like Sergej and his team at Bitrefill aren’t waiting for theoretical adoption curves to play out. They’re actively accelerating them.
By creating practical solutions for everyday Bitcoin transactions now, Bitrefill is working towards pulling that “medium of exchange” S-curve forward.
They aim to demonstrate that Bitcoin’s utility doesn’t have to follow a delayed timeline where store of value comes first.
Indeed, Sergej sees a more nuanced reality: Bitcoin serves different purposes for different people, simultaneously.
“There’s different people that use bitcoin for different things, and some want to invest in it and some use it as a tool,” Sergej clarifies.
“You can’t say that one of them is better than the other… it just is. Different people will use the same thing and they engage in the same market with different purposes.”
The Bitrefill philosophy is simple: practicality over hype. “Selling bitcoin to people is clearly a much bigger business than letting people shop with bitcoin,” Sergej acknowledges candidly.
Yet Bitrefill stands proudly as a market leader by volume for transactional bitcoin use. When YouTube travelers share their global adventures “living on bitcoin,” it’s Bitrefill powering most of those purchases. He notes with pride:
“If you watch these YouTubers ‘I spent a month traveling the world living on Bitcoin,’ there’s been quite a few of those… around 50 to 80 [percent], that a good chunk of their bitcoin usage ends up being with Bitrefill.”
And Bitrefill is not done innovating. Recently, they introduced the Bitrefill reloadable Visa card in Europe, designed for ease of use. Sergej explains:
“It’s a regulated product, you need to have an account and go through KYC and all of that, but once you have it, it’s a very simple straightforward no bulls*** method.
“you send in your bitcoin, Lightning works, and then you can just go and blip and pay, and then you don’t have to think about anything.”
Bitrefill offers reloadable Visa cards
To promote it, they’ve even been hiring people specifically to travel around Europe spending bitcoin and documenting the journey.
“We put up these ads and we hire someone and then we record them having the best day of their life spending money,” he says.
While acknowledging it’s partly a marketing stunt, he adds, “Paying some of our customers instead to spend the day having a blast and then record it and make content is a better choice than traditional advertising.”
Bitrefill on X
But Sergej has his eyes firmly on an even more futuristic horizon: a world where robots pay each other seamlessly.
“We’ve built an online monetary system that discriminates against bots because they’re usually associated with fraud,” Sergej notes.
“But soon, we’ll rely on AI to shop automatically for us. Having a fraud-free online payment method like Bitcoin could revolutionize how robotic agents transact.”
“In a world where everybody has a bunch of agents being robotic secretaries and so on, and given the fact that online commerce is currently designed specifically to keep out robots… I think there’s a big opportunity there,” he explains.
“Having an online payment method that is fraud-free should in theory be very useful for a world in which shopping happens automatically, for example, or how a robot will pay other robots.”
The intersection of how AI will leverage Bitcoin is a fascinating rabbit hole and discussion that is playing out in real time.
Sergej recommends Daniel Suarez’s novel “Daemon” for those intrigued by the potential (and risks) of AI-driven transactions.
“There’s tremendous opportunity here,” he teases, “and it’s definitely something we’re actively exploring at Bitrefill.”
Asked what he’d ask Satoshi Nakamoto if given the chance, Sergej pauses briefly. “I would ask him to tell me the story of how he left the space,” he finally answers.
Given Sergej’s decade-long journey with Bitrefill, his curiosity about Bitcoin’s creator’s departure feels particularly fitting.
Ten years is a long time in Bitcoin, but clearly, Sergej Kotliar and Bitrefill are just getting started.
-
@ dfa02707:41ca50e3
2025-06-07 10:02:19Contribute to keep No Bullshit Bitcoin news going.
-
Version 1.3 of Bitcoin Safe introduces a redesigned interactive chart, quick receive feature, updated icons, a mempool preview window, support for Child Pays For Parent (CPFP) and testnet4, preconfigured testnet demo wallets, as well as various bug fixes and improvements.
-
Upcoming updates for Bitcoin Safe include Compact Block Filters.
"Compact Block Filters increase the network privacy dramatically, since you're not asking an electrum server to give you your transactions. They are a little slower than electrum servers. For a savings wallet like Bitcoin Safe this should be OK," writes the project's developer Andreas Griffin.
- Learn more about the current and upcoming features of Bitcoin Safe wallet here.
What's new in v1.3
- Redesign of Chart, Quick Receive, Icons, and Mempool Preview (by @design-rrr).
- Interactive chart. Clicking on it now jumps to transaction, and selected transactions are now highlighted.
- Speed up transactions with Child Pays For Parent (CPFP).
- BDK 1.2 (upgraded from 0.32).
- Testnet4 support.
- Preconfigured Testnet demo wallets.
- Cluster unconfirmed transactions so that parents/children are next to each other.
- Customizable columns for all tables (optional view: Txid, Address index, and more)
- Bug fixes and other improvements.
Announcement / Archive
Blog Post / Archive
GitHub Repo
Website -
-
@ dfa02707:41ca50e3
2025-06-07 10:02:18- This version introduces the Soroban P2P network, enabling Dojo to relay transactions to the Bitcoin network and share others' transactions to break the heuristic linking relaying nodes to transaction creators.
- Additionally, Dojo admins can now manage API keys in DMT with labels, status, and expiration, ideal for community Dojo providers like Dojobay. New API endpoints, including "/services" exposing Explorer, Soroban, and Indexer, have been added to aid wallet developers.
- Other maintenance updates include Bitcoin Core, Tor, Fulcrum, Node.js, plus an updated ban-knots script to disconnect inbound Knots nodes.
"I want to thank all the contributors. This again shows the power of true Free Software. I also want to thank everyone who donated to help Dojo development going. I truly appreciate it," said Still Dojo Coder.
What's new
- Soroban P2P network. For MyDojo (Docker setup) users, Soroban will be automatically installed as part of their Dojo. This integration allows Dojo to utilize the Soroban P2P network for various upcoming features and applications.
- PandoTx. PandoTx serves as a transaction transport layer. When your wallet sends a transaction to Dojo, it is relayed to a random Soroban node, which then forwards it to the Bitcoin network. It also enables your Soroban node to receive and relay transactions from others to the Bitcoin network and is designed to disrupt the assumption that a node relaying a transaction is closely linked to the person who initiated it.
- Pushing transactions through Soroban can be deactivated by setting
NODE_PANDOTX_PUSH=off
indocker-node.conf
. - Processing incoming transactions from Soroban network can be deactivated by setting
NODE_PANDOTX_PROCESS=off
indocker-node.conf
.
- Pushing transactions through Soroban can be deactivated by setting
- API key management has been introduced to address the growing number of people offering their Dojos to the community. Dojo admins can now access a new API management tab in their DMT, where they can create unlimited API keys, assign labels for easy identification, and set expiration dates for each key. This allows admins to avoid sharing their main API key and instead distribute specific keys to selected parties.
- New API endpoints. Several new API endpoints have been added to help API consumers develop features on Dojo more efficiently:
- New:
/latest-block
- returns data about latest block/txout/:txid/:index
- returns unspent output data/support/services
- returns info about services that Dojo exposes
- Updated:
/tx/:txid
- endpoint has been updated to return raw transaction with parameter?rawHex=1
- The new
/support/services
endpoint replaces the deprecatedexplorer
field in the Dojo pairing payload. Although still present, API consumers should use this endpoint for explorer and other pairing data.
- New:
Other changes
- Updated ban script to disconnect inbound Knots nodes.
- Updated Fulcrum to v1.12.0.
- Regenerate Fulcrum certificate if expired.
- Check if transaction already exists in pushTx.
- Bump BTC-RPC Explorer.
- Bump Tor to v0.4.8.16, bump Snowflake.
- Updated Bitcoin Core to v29.0.
- Removed unnecessary middleware.
- Fixed DB update mechanism, added api_keys table.
- Add an option to use blocksdir config for bitcoin blocks directory.
- Removed deprecated configuration.
- Updated Node.js dependencies.
- Reconfigured container dependencies.
- Fix Snowflake git URL.
- Fix log path for testnet4.
- Use prebuilt addrindexrs binaries.
- Add instructions to migrate blockchain/fulcrum.
- Added pull policies.
Learn how to set up and use your own Bitcoin privacy node with Dojo here.
-
@ 7f6db517:a4931eda
2025-06-06 23:02:27What is KYC/AML?
- The acronym stands for Know Your Customer / Anti Money Laundering.
- In practice it stands for the surveillance measures companies are often compelled to take against their customers by financial regulators.
- Methods differ but often include: Passport Scans, Driver License Uploads, Social Security Numbers, Home Address, Phone Number, Face Scans.
- Bitcoin companies will also store all withdrawal and deposit addresses which can then be used to track bitcoin transactions on the bitcoin block chain.
- This data is then stored and shared. Regulations often require companies to hold this information for a set number of years but in practice users should assume this data will be held indefinitely. Data is often stored insecurely, which results in frequent hacks and leaks.
- KYC/AML data collection puts all honest users at risk of theft, extortion, and persecution while being ineffective at stopping crime. Criminals often use counterfeit, bought, or stolen credentials to get around the requirements. Criminals can buy "verified" accounts for as little as $200. Furthermore, billions of people are excluded from financial services as a result of KYC/AML requirements.
During the early days of bitcoin most services did not require this sensitive user data, but as adoption increased so did the surveillance measures. At this point, most large bitcoin companies are collecting and storing massive lists of bitcoiners, our sensitive personal information, and our transaction history.
Lists of Bitcoiners
KYC/AML policies are a direct attack on bitcoiners. Lists of bitcoiners and our transaction history will inevitably be used against us.
Once you are on a list with your bitcoin transaction history that record will always exist. Generally speaking, tracking bitcoin is based on probability analysis of ownership change. Surveillance firms use various heuristics to determine if you are sending bitcoin to yourself or if ownership is actually changing hands. You can obtain better privacy going forward by using collaborative transactions such as coinjoin to break this probability analysis.
Fortunately, you can buy bitcoin without providing intimate personal information. Tools such as peach, hodlhodl, robosats, azteco and bisq help; mining is also a solid option: anyone can plug a miner into power and internet and earn bitcoin by mining privately.
You can also earn bitcoin by providing goods and/or services that can be purchased with bitcoin. Long term, circular economies will mitigate this threat: most people will not buy bitcoin - they will earn bitcoin - most people will not sell bitcoin - they will spend bitcoin.
There is no such thing as KYC or No KYC bitcoin, there are bitcoiners on lists and those that are not on lists.
If you found this post helpful support my work with bitcoin.
-
@ 7f6db517:a4931eda
2025-06-07 13:01:52There must be a limit to how much data is transferred across the bitcoin network in order to keep the ability to run and use your own node accessible. A node is required to interact with the global bitcoin network - if you do not use your own node then you must trust someone else's node. If nodes become inaccessible to run then the network will centralize around the remaining entities that operate them - threatening the censorship resistance at the core of bitcoin's value prop. The bitcoin protocol uses three main mechanisms to keep node operation costs low - a fixed limit on the amount of data in each block, an automatic difficulty adjustment that regulates how many blocks are produced based on current mining hash rate, and a robust dynamic transaction fee market.
Bitcoin transaction fees limit network abuse by making usage expensive. There is a cost to every transaction, set by a dynamic free market based on demand for scarce block space. It is an incredibly robust way to prevent spam without relying on centralized entities that can be corrupted or pressured.
After the 2017 bitcoin fee spike we had six years of relative quiet to build tools that would be robust in a sustained high fee market. Fortunately our tools are significantly better now but many still need improvement. Most of the pain points we see today will be mitigated.
The reality is we were never going to be fully prepared - pressure is needed to show the pain points and provide strong incentives to mitigate them.
It will be incredibly interesting to watch how projects adapt under pressure. Optimistic we see great innovation here.
_If you are willing to wait for your transaction to confirm you can pay significantly lower fees. Learn best practices for reducing your fee burden here.
My guide for running and using your own bitcoin node can be found here._
If you found this post helpful support my work with bitcoin.
-
@ c9badfea:610f861a
2025-06-06 20:05:26- Install Food You (it's free and open source)
- Launch the app and tap the ⚙️ icon
- Tap Meals and set up your meal schedule (these items will appear on the main screen)
- Go back and then tap Calorie Goal to configure your daily intake goal
- Return to the main screen
- Now you can tap + on a card (e.g. Breakfast) to add a meal
- Tap + and select Product
- You can now fill in the details manually
- Or tap Download Product, paste the URL of the product from OpenFoodFacts (e.g. https://world.openfoodfacts.org/product/6111242101180/lait-entier-uht-jaouda), and then tap Download
- Tap Create
- You can now adjust intake details like servings
- Tap Save
- Add more products and recipes and start tracking your nutrition!
ℹ️ Once you have created enough products, you can tap + on a meal card on the main screen, then tap + and select Recipe to create recipes from products
ℹ️ Internet connection is only used to optionally fetch product details via URLs; otherwise, the app works completely offline
-
@ c631e267:c2b78d3e
2025-06-06 18:54:04Willst du den Charakter eines Menschen kennenlernen, \ so gib ihm Macht. \ Abraham Lincoln
Vermutlich war Friedrich Merz erleichtert nach seinem Besuch beim US-Präsidenten im Oval Office. Dem Bundeskanzler kam zwar neben der Wortgewalt Donald Trumps eher eine Statistenrolle in der Medienrunde zu, aber es hätte natürlich viel schlimmer kommen können. Deswegen hatte er sich wohl vorher Ratschläge geholt, wie man hört unter anderem vom ukrainischen Präsidenten Wolodymyr Selenskyj. Offiziell gab der deutsche Regierungschef sogar an, «außerordentlich zufrieden» mit seinem Antrittsbesuch zu sein.
Dabei gibt es aktuell doch mehr Differenzen als Gemeinsamkeiten. Zu den Themen, mit denen es eine sehr unterschiedliche Umgehensweise hier und dort gibt, gehört die Gesundheit. Trumps Gesundheitsminister, Robert F. Kennedy Jr., kritisiert zum Beispiel, die meisten US-Universitäten würden den Studenten zu wenig über die Bedeutung gesunder Ernährung beibringen. Im Vordergrund der medizinischen Ausbildung stünde zu sehr die Behandlung der Menschen mit Medikamenten. Daher plant er, den Fakultäten die Bundesmittel zu streichen, wenn sie ihren Studenten keine Ernährungskurse anbieten.
Der oft als Verschwörungstheoretiker diffamierte RFK Jr. ist auch Teil des wachsenden Widerstands gegen Geoengineering-Aktivitäten. Die Manipulation von Wetter und Klima beispielsweise durch das Freisetzen von Chemikalien in die Atmosphäre kann kaum gesund sein und soll daher mit Louisiana jetzt in einem weiteren US-Bundesstaat verboten werden. Kennedy hatte derartige Maßnahmen auch schon als ein Verbrechen bezeichnet, das es zu stoppen gelte.
Indes ist der deutsche Beitrag in diesem Kontext, dass Ex-Gesundheitsminister und Covid-Impfpflicht-Befürworter Karl Lauterbach jetzt zum Klimaexperten mutiert. Laut Spiegel soll er Mitglied einer Kommission für Klima und Gesundheit bei der Weltgesundheitsorganisation werden, angeblich unentgeltlich. Vermutlich möchte die WHO im Sinne ihrer One-Health-Initiative mit solcher Lobbyarbeit für «Klimaschutz als Teil des Gesundheitsschutzes» ihren globalen Führungsanspruch untermauern.
Das Thema «Corona» ist im Übrigen noch lange nicht erledigt und das Narrativ bekommt weitere Risse. Nachdem Kennedy in den USA den Covid-«Impfstoff» für gesunde Kinder und schwangere Frauen aus dem empfohlenen Impfplan gestrichen hat, ist eine CDC-Beraterin zurückgetreten, die die Gen-Injektionen für Schwangere gefördert hatte. Auch die australische Regierung hat ihre Impfempfehlungen aktualisiert. Sie räumt jetzt ein, dass der Nutzen des «Impfstoffs» die Schäden für gesunde Jugendliche nicht überwiegt.
Gleichzeitig berichten Medien von einer neuen, anhaltenden «Covid-19-Welle» in China. Es gebe Befürchtungen, dass es zu erneuten Lockdowns und anderen drastischen Maßnahmen kommen könnte, obwohl sich die «Infektionen» laut den Gesundheitsbehörden auf einem Abwärtstrend befinden. In einigen Schulen seien Schüler isoliert und unter Quarantäne gestellt worden.
Isolierung, Überwachung und Kontrolle sind ebenfalls ein höchst ungesundes Erbe der «Coronazeit». Die weltweit vielfach eingeführten digitalen «Impfpässe» wurden als Instrument benutzt, um Kampagnen für digitale Identitäten zu fördern und die entsprechenden Systeme aufzubauen. Gerade hat auch Griechenland mit der Einführung seiner «Personal Citizen Number» den Grundstein für ein einheitliches digitales ID-System gelegt.
Derweil schlagen Datenschützer Alarm wegen des Tracking-Potenzials der sogenannten «Phone Home»-Funktion vieler digitaler Ausweise. Dieses «Feature», bei dem im Hintergrund jedesmal der Aussteller kontaktiert wird, um eine Angabe zu überprüfen, werde ganz leise in der Gesellschaft eingeführt, warnen sie. Das gebe den Regierungen den Vorgeschmack auf eine Macht, die sie kaum jemals wieder loslassen würden. Dagegen hilft nur eins: wachsam sein, hinterfragen und im Zweifel «Nein» sagen, anstatt auf eine vermeintliche Bequemlichkeit hereinzufallen.
[Titelbild: Pixabay]
Dieser Beitrag wurde mit dem Pareto-Client geschrieben und ist zuerst auf Transition News erschienen.
-
@ b1ddb4d7:471244e7
2025-06-07 13:01:05Sati, a Bitcoin payments app and Lightning infrastructure provider, announced the launch of its Lightning integration with Xverse wallet.
Launched in 2025 with investors of the likes as Draper Associates and Ricardo Salinas, Sati powers Bitcoin payments on applications such as WhatsApp to fuel the next wave of adoption.
The Whatsapp bot allows users to send bitcoin via the messaging app through a special bot. After verifying their identity, the user selects the “send” option, chooses to pay to a Lightning address, enters the amount (1,000 sats), confirms with a PIN, and the transaction is completed, with the funds appearing instantly in the recipient wallet.
The new integration will now bring Lightning functionality to over 1.5 million people worldwide. Users can send and receive sats (Bitcoin’s smallest denomination) instantly over the Lightning Network all within the Xverse app,
Further, every xverse wallet user gets a Lightning Address instantly. That means they can receive tips, pay invoices, and use Bitcoin for microtransactions—all without having to manage channels or switch between different apps.
While Xverse adds support for Lightning, users should be cautious in using the wallet as it’s mostly known for enabling access to rug pull projects.
Initially designed in 2017, the Lightning Network has grown to become Bitcoin’s leading layer-2, with a current BTC capacity of over $465M.
“Bitcoin was not meant to be an asset for Wall Street—it was built for peer-to-peer money, borderless and accessible,” said Felipe Servin, Founder and CEO of Sati. “Integrating Lightning natively into Xverse brings that vision back to life, making Bitcoin usable at scale for billions.”
Sati expects USDT on Lightning to be supported as early as July 2025 for users accessing Sati through WhatsApp.
This integration positions Sati’s role as a Lightning infrastructure provider, not just a consumer app. By leveraging its API-based solution, the company provides plug-and-play backend services to wallets and platforms looking to add Bitcoin payments without compromising on security or UX.
Sati recently closed a $600K pre-seed round. The funding is used to support global expansion, stablecoin integration, Lightning infrastructure growth, and broader access to Bitcoin in emerging markets.
The Sati team is attending Bitcoin2025 in Las Vegas this week and looking forward to connect with bitcoin enthusiasts.
-
@ 4d41a7cb:7d3633cc
2025-06-06 18:16:08Have you ever stopped to think how retarded our monetary system is? If the U.S. is the most powerful nation on earth, has the biggest gold reserves, and has the monopoly over the global reserve currency... Why the fuck are they still 34 trillion in debt? One reporter finally asked this important question to the Chair of the Council of Economic Advisors (whatever that means): Jared Bernstein.
> JB: They, they, um, they, yeah, they, they, um, they sell bonds. Yeah, they sell bonds, right? Since they sell bonds and people buy the bonds and lend them the money. Yeah, so, yeah, I guess I'm just, I don't, I can't really talk. I don't, I don't get it. I don't know what they're talking about.
BANKSTERS DON'T WANT US TO KNOW HOW THIS MECHANISM WORKS BECAUSE THEY KNOW THAT IF WE KNOW, WE ARE GOING TO GET MAD. NOT EVEN POLITICIANS AND HIGH-RANKED OFFICIALS UNDERSTAND WHAT I AM ABOUT TO EXPLAIN.
THE CORRECT QUESTION TO ASK IS: IF THE U.S. PRINTS DOLLARS, WHY DOES IT HAVE SUCH A BIG DEBT? IF YOU HAD THIS QUESTION BEFORE: GOOD FOR YOU!
THE ANSWER IS: The U.S. has debt because every Federal Reserve Note, a.k.a. FRN ("DOLLAR"), that the Federal Reserve prints is a NOTE that the government owes plus interest. The FRNs are debt instruments! How is this possible? You may ask... Who do they owe this debt to? "The government does not print "dollars" out of thin air."
The government prints bonds (debt) out of thin air, and the Federal Reserve buys these bonds, printing FRNs out of thin air. And that is how "dollars" come into existence. This doesn't make sense, right? Thomas Edison thought the same when he said:
> “If the government can issue bonds, it can issue currency. Both are promises to pay, but one promise fattens the usurer and the other helps the people.”
New York Times, 6 de diciembre de 1921The U.S. could print its own debt-free, non-interest-bearing Treasury notes. Like Lincoln printed the Greenbacks to finance the Civil War, Kennedy issued treasury notes with E.O. 11110. What's the difference between a United States note and a Federal Reserve note?
ONE PROMISE FATTENS THE USURER, AND THE OTHER HELPS THE PEOPLE.
The truth is the Federal Reserve took over the U.S. government in 1933 when it declared bankruptcy and the power was passed to its creditors: the Federal Reserve. This institution artificially inflated and contracted the currency supply to create the Great Depression (1929) and finally bankrupted the U.S. government in 1933. They forced the Gold Standard Act in the 1900s, and then they officially took the U.S. out of it in 1934. This bank stole the gold of the American people, and then they stole the gold of other nations in 1971!!!
I want to clarify that I am not making this up, but I am standing on the shoulders of giants like Alfred Owen Crozier (1863-1939). This legend was lobbying against the Federal Reserve Act in 1912, and he wrote the book U.S. Money vs. Corporate Currency, where he documented the intent of this private group of banksters to create a private central bank that would counterfeit currency and take over the republic, bankrupting it. He literally predicted the Great Depression. His worst nightmares turned into a reality. Here you have my top 3 books from him:
Most recently, another legendary character that did a monumental work in dismantling this giant fraud was Thomas Schauf (1949). He lived years out of his savings to prove this giant fraud to the American people. He is a certified CPA who became a full-time lecturer on “money and debt” after the 1987 crash. He dismantled the Federal Reserve cartel, and he also explains the fraud of the commercial bank's credit creation process using the Federal Reserve's own publications.
Both Alfred and Thomas prove that the Federal Reserve is an unconstitutional private central bank that took the power to coin currency from the government, unlawfully transferring that sovereignty to private corporations. Crozier provided the original historical record, and Thomas provided the insider accounting documentation.
CROZIER CONTRIBUTIONS
-
Introduced the term “corporate currency” to flag that the new notes would be liabilities of a private cartel, not of the U.S. Treasury.
-
Warned about the non gold redeem-ability of this private paper: any emergency suspension of specie payments would convert the notes into a floating, unbacked claim—“irredeemable except in more paper.”
-
National bankruptcy forecast: once Treasury debt became the key collateral behind private notes, taxpayers would shoulder every panic, culminating in “the insolvency of the Republic.”
THOMAS SCHAUF UNIQUE CONTRIBUTIONS
-
FOIA stock-subscription ledgers (1991): first public list of the individual banks and share counts that capitalized each of the 12 Reserve Banks.
-
Annotated FRB H-4-1 balance sheets (weekly releases): line-by-line notes showing how “Federal Reserve Notes outstanding” are booked as a liability to member banks, not to the public.
-
Discount-window flow charts: traced how reserves created in New York are pyramided 30-to-1 in downstream banks, then recycled into Treasuries.
-
Internal circulars on surplus rebates: revealed the dividend formula (6 % to stock-holding banks) and the legally mandated tax exemption on that income.
Thomas Schauf is the researcher who turned the Federal Reserve’s own accounting records into hard evidence of private ownership and systemic leverage.
The Federal Reserve is the biggest fraud in human history and the most profitable business on earth: it prints currency out of thin air, and it lends it to the government at interest, buying treasury bills. For every FRN they print at no cost they earn $1 plus interest.
NEW YORK FEDERAL RESERVE OWNERS
• Chase Manhattan Bank N.A. • Citibank N.A. • Morgan Guaranty Trust • Chemical Bank • Bankers Trust Co. • Manufacturers Hanover
HOW CAN AMERICA END THIS FRAUD?
Alfred Owen Crozier, Thomas Schauf, and I will agree on the same solution: Convert existing Federal Reserve notes into U.S. notes on a one-for-one basis. This will automatically end the interest on the U.S. debt: THE BIGGEST U.S GOVERNMENT LIABILITY.
You cannot fix the deficit if you don't nationalize the Federal Reserve Inc and replace every interest-bearing Federal Reserve Note with a non-interest-bearing U.S. Note.
YOU CAN LITERALLY ELIMINATE THE U.S. PUBLIC DEBT BY ISSUING AN EXECUTIVE ORDER REPLACING FRNs FOR U.S notes. Then force private banks to lend only their own capital or time deposits, ending the credit-creation privilege and the boom and bust cycle.
Ron Paul will also agree with this. Every person that understands the monetary system will agree with this.
All freedom-loving Americans who believe in the Revolutionary War, the Constitution, and the Bill of Rights need to join their efforts to fight this corrupt system, abolish the federal system, the national debt, and most of the taxes, and re-establish an honest monetary system.
The American population needs to understand the truth and why they fought the Revolutionary War: FOR THIS SAME REASON! WAKE UP, AMERICA!
This cannot be fixed with Bitcoin TODAY, but probably in the coming decades. But in the meantime it can be done with Treasury notes. This needs to be done if you want to avoid hyperinflation and a state of emergency, martial law, and total disaster.
Time is running out and you need to take action fast. Interest rates are eating up all the revenue of the government and your tax money is going into an unpayable black hole for this very reason.
Americans have two choices: stay and fight or escape before disaster strikes. And no, I am not being extremist, it is a sad reality. Read this books, study this and talk about this with all you fellow Americans.
This is the most important issue you should be discussing about.
-
-
@ cae03c48:2a7d6671
2025-06-06 20:01:10Bitcoin Magazine
President Trump’s Truth Social Files S-1 Form For Bitcoin ETFToday, Trump Media and Technology Group Corp. (Nasdaq, NYSE Texas: DJT) filed with the US Securities and Exchange Commission (SEC) a Form S-1 for their upcoming Truth Social Bitcoin ETF.
The ETF, which will hold bitcoin directly, is designed to track the bitcoin’s price performance.
“Truth Social Bitcoin ETF, B.T. is a Nevada business trust that issues beneficial interests in its net assets,” stated the Form S-1. “The assets of the Trust consist primarily of bitcoin held by a custodian on behalf of the Trust. The Trust seeks to reflect generally the performance of the price of bitcoin.”
The ETF is sponsored by Yorkville America Digital, LLC and will trade under NYSE Arca. The Trust’s assets primarily consist of bitcoin held by Foris DAX Trust Company, LLC, the designated bitcoin custodian. Crypto.com will act as the ETF’s prime execution agent and liquidity provider.
“Shares will be offered to the public from time to time at varying prices that will reflect the price of bitcoin and the trading price of the Shares on New York Stock Exchange Arca, Inc. at the time of the offer,” mentioned the Form S-1.
While the ETF offers investors a regulated avenue for bitcoin exposure, the Trust warned of several risks related to digital assets:
- Loss, theft, or compromise of private keys could result in permanent loss of bitcoin.
- Bitcoin’s reliance on blockchain and Internet technologies makes it vulnerable to disruptions and cyber threats.
- Environmental and regulatory pressures tied to high electricity use in bitcoin mining could impact market stability.
- Potential forks or protocol failures in the Bitcoin Network may lead to volatility and uncertainty in asset value.
Last week, during an interview at the 2025 Bitcoin Conference, Donald Trump Jr. announced that TMTG and Truth Social were forming a Bitcoin treasury with $2.5 billion. “We’re seriously on crypto—we’re seriously on Bitcoin,” said Trump Jr. “We’re in three major deals. I believe we’re at the beginning of what will be the future of finance. And the opportunity is massive.”
The day after that interview, Eric Trump and Donald Trump Jr., joined by American Bitcoin Executive Chairman and Board Member Mike Ho, CEO Matt Prusak, and Altcoin Daily founder Aaron Arnold, discussed the future of Bitcoin.
“The whole system is broken and now all of the sudden you have crypto which solves all the problems,” commented Eric Trump. “It makes everything cheaper, it makes everything faster, it makes it safer, it makes it more transparent. It makes the whole system more functional.“
“Everybody wants Bitcoin. Everybody is buying Bitcoin,” Eric added.
This post President Trump’s Truth Social Files S-1 Form For Bitcoin ETF first appeared on Bitcoin Magazine and is written by Oscar Zarraga Perez.
-
@ c9badfea:610f861a
2025-06-06 20:01:04- Install Food You (it's free and open source)
- Launch the app and tap the ⚙️ icon
- Tap Meals and set up your meal schedule (these items will appear on the main screen)
- Go back and then tap Calorie Goal to configure your daily intake goal
- Return to the main screen
- Now you can tap + on a card (e.g. Breakfast) to add a meal
- Tap + and select Product
- You can now fill in the details manually
- Or tap Download Product, paste the URL of the product from OpenFoodFacts (e.g. https://world.openfoodfacts.org/product/6111242101180/lait-entier-uht-jaouda), and then tap Download
- Tap Create
- You can now adjust intake details like servings
- Tap Save
- Add more products and recipes and start tracking your nutrition!
ℹ️ Once you have created enough products, you can tap + on a meal card on the main screen, then tap + and select Recipe to create recipes from products
ℹ️ Internet connection is only used to optionally fetch product details via URLs; otherwise, the app works completely offline
-
@ 7f6db517:a4931eda
2025-06-07 13:01:52Bank run on every crypto bank then bank run on every "real" bank.
— ODELL (@ODELL) December 14, 2022
Good morning.
It looks like PacWest will fail today. It will be both the fifth largest bank failure in US history and the sixth major bank to fail this year. It will likely get purchased by one of the big four banks in a government orchestrated sale.
March 8th - Silvergate Bank
March 10th - Silicon Valley Bank
March 12th - Signature Bank
March 19th - Credit Suisse
May 1st - First Republic Bank
May 4th - PacWest Bank?PacWest is the first of many small regional banks that will go under this year. Most will get bought by the big four in gov orchestrated sales. This has been the playbook since 2008. Follow the incentives. Massive consolidation across the banking industry. PacWest gonna be a drop in the bucket compared to what comes next.
First, a hastened government led bank consolidation, then a public/private partnership with the remaining large banks to launch a surveilled and controlled digital currency network. We will be told it is more convenient. We will be told it is safer. We will be told it will prevent future bank runs. All of that is marketing bullshit. The goal is greater control of money. The ability to choose how we spend it and how we save it. If you control the money - you control the people that use it.
If you found this post helpful support my work with bitcoin.
-
@ 7f6db517:a4931eda
2025-06-06 20:02:27Bank run on every crypto bank then bank run on every "real" bank.
— ODELL (@ODELL) December 14, 2022
Good morning.
It looks like PacWest will fail today. It will be both the fifth largest bank failure in US history and the sixth major bank to fail this year. It will likely get purchased by one of the big four banks in a government orchestrated sale.
March 8th - Silvergate Bank
March 10th - Silicon Valley Bank
March 12th - Signature Bank
March 19th - Credit Suisse
May 1st - First Republic Bank
May 4th - PacWest Bank?PacWest is the first of many small regional banks that will go under this year. Most will get bought by the big four in gov orchestrated sales. This has been the playbook since 2008. Follow the incentives. Massive consolidation across the banking industry. PacWest gonna be a drop in the bucket compared to what comes next.
First, a hastened government led bank consolidation, then a public/private partnership with the remaining large banks to launch a surveilled and controlled digital currency network. We will be told it is more convenient. We will be told it is safer. We will be told it will prevent future bank runs. All of that is marketing bullshit. The goal is greater control of money. The ability to choose how we spend it and how we save it. If you control the money - you control the people that use it.
If you found this post helpful support my work with bitcoin.
-
@ dfa02707:41ca50e3
2025-06-07 10:02:18Contribute to keep No Bullshit Bitcoin news going.
This update brings key enhancements for clarity and usability:
- Recent Blocks View: Added to the Send tab and inspired by Mempool's visualization, it displays the last 2 blocks and the estimated next block to help choose fee rates.
- Camera System Overhaul: Features a new library for higher resolution detection and mouse-scroll zoom support when available.
- Vector-Based Images: All app images are now vectorized and theme-aware, enhancing contrast, especially in dark mode.
- Tor & P2A Updates: Upgraded internal Tor and improved support for pay-to-anchor (P2A) outputs.
- Linux Package Rename: For Linux users, Sparrow has been renamed to sparrowwallet (or sparrowserver); in some cases, the original sparrow package may need manual removal.
- Additional updates include showing total payments in multi-payment transaction diagrams, better handling of long labels, and other UI enhancements.
- Sparrow v2.2.1 is a bug fix release that addresses missing UUID issue when starting Tor on recent macOS versions, icons for external sources in Settings and Recent Blocks view, repackaged
.deb
installs to use older gzip instead of zstd compression, and removed display of median fee rate where fee rates source is set to Server.
Learn how to get started with Sparrow wallet:
Release notes (v2.2.0)
- Added Recent Blocks view to Send tab.
- Converted all bitmapped images to theme aware SVG format for all wallet models and dialogs.
- Support send and display of pay to anchor (P2A) outputs.
- Renamed
sparrow
package tosparrowwallet
andsparrowserver
on Linux. - Switched camera library to openpnp-capture.
- Support FHD (1920 x 1080) and UHD4k (3840 x 2160) capture resolutions.
- Support camera zoom with mouse scroll where possible.
- In the Download Verifier, prefer verifying the dropped file over the default file where the file is not in the manifest.
- Show a warning (with an option to disable the check) when importing a wallet with a derivation path matching another script type.
- In Cormorant, avoid calling the
listwalletdir
RPC on initialization due to a potentially slow response on Windows. - Avoid server address resolution for public servers.
- Assume server address is non local for resolution failures where a proxy is configured.
- Added a tooltip to indicate truncated labels in table cells.
- Dynamically truncate input and output labels in the tree on a transaction tab, and add tooltips if necessary.
- Improved tooltips for wallet tabs and transaction diagrams with long labels.
- Show the address where available on input and output tooltips in transaction tab tree.
- Show the total amount sent in payments in the transaction diagram when constructing multiple payment transactions.
- Reset preferred table column widths on adjustment to improve handling after window resizing.
- Added accessible text to improve screen reader navigation on seed entry.
- Made Wallet Summary table grow horizontally with dialog sizing.
- Reduced tooltip show delay to 200ms.
- Show transaction diagram fee percentage as less than 0.01% rather than 0.00%.
- Optimized and reduced Electrum server RPC calls.
- Upgraded Bouncy Castle, PGPainless and Logback libraries.
- Upgraded internal Tor to v0.4.8.16.
- Bug fix: Fixed issue with random ordering of keystore origins on labels import.
- Bug fix: Fixed non-zero account script type detection when signing a message on Trezor devices.
- Bug fix: Fixed issue parsing remote Coldcard xpub encoded on a different network.
- Bug fix: Fixed inclusion of fees on wallet label exports.
- Bug fix: Increase Trezor device libusb timeout.
Linux users: Note that the
sparrow
package has been renamed tosparrowwallet
orsparrowserver
, and in some cases you may need to manually uninstall the originalsparrow
package. Look in the/opt
folder to ensure you have the new name, and the original is removed.What's new in v2.2.1
- Updated Tor library to fix missing UUID issue when starting Tor on recent macOS versions.
- Repackaged
.deb
installs to use older gzip instead of zstd compression. - Removed display of median fee rate where fee rates source is set to Server.
- Added icons for external sources in Settings and Recent Blocks view
- Bug fix: Fixed issue in Recent Blocks view when switching fee rates source
- Bug fix: Fixed NPE on null fee returned from server
-
@ 502ab02a:a2860397
2025-06-06 17:27:33เฮียไปเจอบทความต่างประเทศของเมื่อราวๆปี 2022 ที่เล่าเรื่องการจับมือกันระหว่าง CP Foods หรือที่คนไทยเรารู้จักกันดีในชื่อ “ซีพี” กับบริษัทจากอิสราเอลที่ชื่อ Future Meat Technologies ชื่อดูเหมือนจะหลุดมาจากหนังไซไฟ แต่สิ่งที่เขาทำไม่ใช่ยานอวกาศ ไม่ใช่หุ่นยนต์ แต่เป็น “เนื้อ” ใช่แล้ว เนื้อจริง ๆ แต่ไม่ต้องฆ่าสัตว์ เป็นเนื้อเพาะเลี้ยงจากเซลล์ในห้องแล็บ ที่เขาเรียกกันว่า cultivated meat หรือเนื้อเพาะเลี้ยง เฮียเห็นชื่อครั้งแรกก็แอบคิดว่ามันจะเป็นของเล่นของคนไฮเทคหรือเปล่า แต่พออ่านลึกเข้าไป มันกลายเป็นเรื่องจริงจังมาก เพราะมันเกี่ยวกับอนาคตของอาหารที่คนทั้งโลกอาจจะต้องพึ่งพาโดยไม่รู้ตัว
บริษัท Future Meat ทำเรื่องนี้ได้ล้ำมาก เขาสามารถเพาะเลี้ยงเซลล์ของสัตว์ให้เติบโตเป็นเนื้อได้โดยไม่ต้องฆ่าใครเลย ฟังดูเป็นมิตรกับโลกกับสัตว์มาก แต่มันมีโจทย์ที่ยากกว่านั้น คือจะทำอย่างไรให้เนื้อเพาะเลี้ยงนี้ “น่ากิน” สำหรับคนเอเชีย เพราะถ้าจะขายแค่ฝรั่งที่ชอบอกไก่จืด ๆ ก็ง่ายหน่อย แต่คนเอเชียเรานี่สิ ชอบเนื้อที่เรียกว่าเนื้อดำ ซึ่งจะเข้มข้น แน่นๆ มัน ๆ หอม ๆ สีเข้ม รสชัดแบบสะโพกไก่ น่องไก่ หรือเนื้อวัวที่เอาไปทำกะเพรา ทำแกง ทำผัดเผ็ดได้ CP เขาเข้าใจรสนิยมนี้ดี และนั่นแหละคือเหตุผลที่เขาไปจับมือกับบริษัทนี้ เฮียว่ามันไม่ใช่แค่เรื่องเทคโนโลยี แต่มันคือการจับมือกันระหว่างห้องแล็บกับตลาดรสนิยมบนจานข้าวของคนจริง ๆ
สิ่งที่เฮียว่าน่าสนใจคือ CP เข้ามาเติมเต็มสิ่งที่บริษัทเทคโนโลยีขาด นั่นคือความเข้าใจตลาดเอเชียแบบลึกซึ้ง ซีพีมีเครือข่ายทั่วภูมิภาค รู้ว่าคนไทย คนจีน คนอินโดฯ กินอะไร ชอบรสไหน จะเข้าไปวางขายในตลาดไหนต้องระวังวัฒนธรรมการกินอะไรบ้าง มันไม่ใช่แค่จะเอาเนื้อเพาะเลี้ยงมาย่างแล้ววางใส่เบอร์เกอร์แล้วขายได้เหมือนกันหมด CP เลยเป็นเหมือนสะพานเชื่อมจากโลกห้องแล็บเข้าสู่โลกจริงที่มีคนกินจริง ๆ นั่งรออยู่
แต่ในขณะที่หลายคนมองว่าเนื้อเพาะเลี้ยงคือความหวังใหม่ของโลก ที่ไม่ต้องฆ่าสัตว์ ไม่ปล่อยคาร์บอน ไม่ใช้พื้นที่มหาศาล เฮียก็อดคิดไม่ได้ว่า ถ้าระบบอาหารในอนาคตถูกควบคุมโดยไม่กี่บริษัท ใครเป็นคนควบคุมสูตร ใครถือสิทธิ์ในเซลล์ต้นแบบ ใครควบคุมแหล่งวัตถุดิบที่ใช้เพาะเลี้ยง แล้วคนกินอย่างเราจะเหลืออิสระแค่ไหนในการเลือกอาหารของตัวเอง มันอาจจะดูดีในระยะสั้น แต่ในระยะยาว ถ้าเราต้องพึ่งของพวกนี้เป็นหลัก แล้วของจริงที่โตจากดิน มีชีวิต กำลังถูกแทนที่ด้วยของเพาะในถัง เฮียว่าความเป็นมนุษย์ของเราก็อาจจะค่อย ๆ หายไปเหมือนกันโดยไม่รู้ตัว ถ้าในอนาคต “เนื้อ” ไม่ได้มาจากสัตว์ แต่กลายเป็นของเพาะเลี้ยงที่ออกแบบโดยใครบางคนในห้องแล็บ เราจะยังมีสิทธิ์เลือกรสชาติชีวิตของตัวเองอยู่มั้ย หรือเรากำลังค่อย ๆ โดนโปรแกรมผ่านของที่เรียกว่าอาหาร โดยไม่รู้เลยว่าใครคือคนเขียนโค้ดนั้น
siamstr #pirateketo
-
@ b1ddb4d7:471244e7
2025-06-07 13:01:04Picture this: you’re trying to buy coffee with Bitcoin, but instead of waiting 10 minutes for blockchain confirmation and paying $5 in fees, your transaction completes instantly for a fraction of a penny.
That’s the promise of the Lightning Network, Bitcoin’s most ambitious scaling solution.
But here’s the thing that most people don’t realize – the entire system only works because of an intricate web of technical standards that most users never see.
These standards, known as BOLTs (Basis of Lightning Technology), are the invisible foundation that makes Lightning’s magic possible. Without them, we’d have a fragmented mess of incompatible systems rather than the seamless payment network that’s processing millions of transactions today.
The Protocol Puzzle: Why Lightning Needed Standards
When Lightning Network was first conceived in 2015, it faced a classic chicken-and-egg problem. Multiple development teams were working on implementations – Lightning Labs with LND, Blockstream with c-lightning, and ACINQ with Eclair – but they all had slightly different ideas about how things should work. Without coordination, these would have become isolated islands of functionality.
Think about the early days of instant messaging, when AOL Instant Messenger users couldn’t talk to Yahoo Messenger users. That’s exactly what Lightning developers wanted to avoid. The solution was BOLT – a comprehensive set of technical specifications that would ensure any Lightning implementation could talk to any other, regardless of who built it.
The first BOLT specifications emerged in 2016, but they weren’t just academic exercises. These documents had to solve real engineering challenges: How do you route payments through a network of payment channels? How do you ensure privacy when every transaction could potentially be monitored? How do you handle the inevitable network failures and channel closures?
Inside the BOLT Specifications: A Technical Breakdown
The BOLT specifications read like a blueprint for building a parallel financial system. Each document tackles a specific piece of the Lightning puzzle, and together they create something remarkably sophisticated.
BOLT #1 establishes the foundation – the basic message formats and communication rules that every Lightning node must understand. It’s like defining the grammar of a new language that computers use to talk about money. This specification covers everything from how nodes identify themselves to the basic structure of Lightning messages.
BOLT #2 gets into the nitty-gritty of channel management, the heart of Lightning’s functionality. Payment channels are essentially shared cryptocurrency wallets between two parties, and managing them securely requires incredibly precise coordination. This specification defines exactly how nodes negotiate channel parameters, handle updates, and gracefully close channels when needed. One wrong step here, and funds could be lost forever.
The routing problem gets its due attention in BOLT #4, which implements something called “onion routing” – the same privacy technique used by Tor. When you send a Lightning payment, each node in the path only knows the previous and next hop, never the full route. The sender wraps the payment instructions in multiple layers of encryption, like nested Russian dolls, with each node peeling off one layer to reveal just enough information to forward the payment.
BOLT #7 tackles network discovery – how nodes find each other in the first place. Unlike traditional payment networks with centralized directories, Lightning is completely peer-to-peer. Nodes gossip about available channels and routing fees, creating a constantly updating map of the network that every participant shares.
Perhaps the most user-facing specification is BOLT #11, which standardizes Lightning invoices. Those QR codes you scan to make Lightning payments? They’re not just random data – they’re precisely formatted requests that include payment amounts, destination information, and routing hints, all encoded in a way that any Lightning wallet can understand.
But BOLT #11 is just the beginning of Lightning’s invoice evolution. BOLT #12 represents the next generation of Lightning payments with “offers” – a revolutionary approach that makes Lightning payments as easy as traditional online shopping.
The User Experience Revolution: BOLT #11 and the Invoice Problem
To understand why BOLT #11 was so crucial, you need to appreciate just how clunky early Lightning payments were. Before standardized invoices, sending a Lightning payment required manually entering node public keys, payment hashes, and routing information – a process so error-prone that one wrong character could send your Bitcoin into the digital void.
BOLT #11 changed everything by creating a standardized invoice format that packs all necessary payment information into a single, human-readable string. These invoices use a clever encoding scheme called Bech32 (the same format used for modern Bitcoin addresses) that includes built-in error detection. If you accidentally change a character when copying an invoice, your wallet will immediately know something’s wrong.
But the real genius of BOLT #11 lies in its flexibility. Lightning invoices can include optional routing hints that help wallets find paths to the recipient, even if they’re not well-connected to the broader network. They can specify exact amounts or leave them open for the sender to choose. They can include expiration times, descriptions of what’s being purchased, and even fallback Bitcoin addresses for when Lightning payments fail.
The specification also solved a crucial privacy problem. Early Lightning implementations often revealed too much information about recipients in their invoices. BOLT #11 carefully balances the need for routing information with privacy protection, ensuring that invoices contain just enough data to enable payments without exposing unnecessary details about the recipient’s node or channels.
The Next Evolution: BOLT #12 and the Promise of Offers
While BOLT #11 invoices solved the immediate usability problem, they still had significant limitations that became apparent as Lightning adoption grew. Traditional invoices are single-use, expire relatively quickly, and require the recipient to generate a new one for each payment. Try to explain to your grandmother why she needs to create a new QR code every time someone wants to send her money, and you’ll quickly understand the problem.
BOLT #12, currently being implemented across Lightning software, introduces “offers” – a completely new approach to requesting Lightning payments that works more like traditional payment systems. Instead of creating single-use invoices, merchants and individuals can create reusable offers that work like persistent payment addresses.
The technical innovation behind offers is fascinating. When someone wants to pay an offer, their wallet first contacts the recipient’s node and requests a fresh invoice specifically for that payment. This happens automatically and invisibly to the user, but it solves several critical problems that plagued BOLT #11 invoices.
First, offers enable recurring payments. A subscription service can create a single offer that customers’ wallets can automatically pay monthly, weekly, or on any schedule. The recipient generates a fresh invoice for each payment, maintaining security while enabling the convenience of automated billing.
Second, offers dramatically improve privacy. Because each payment uses a freshly generated invoice, it’s much harder for external observers to correlate multiple payments to the same recipient. Someone monitoring the Lightning network might see that Alice paid 50,000 satoshis to some node, but they can’t easily determine if this was her first payment to that merchant or her hundredth.
The specification also introduces “offer chains” – a way to create offers that can be paid multiple times with different amounts. A coffee shop could create a single offer that customers can pay for any amount, with their wallets automatically calculating tips or adjusting for different menu items.
Behind the Scenes: The Technical Complexity of Simple Payments
What makes BOLT #12 particularly impressive is how it maintains simplicity for users while handling incredible complexity behind the scenes. When your wallet processes an offer, it’s actually engaging in a sophisticated cryptographic dance with the recipient’s node.
The process starts when you scan an offer QR code. Your wallet extracts the recipient’s node information and initiates a connection using the encrypted transport protocol defined in BOLT #8. It then sends a specially formatted request for an invoice, including details about how much you want to pay and any additional information required by the offer.
The recipient’s node validates your request, generates a fresh BOLT #11 invoice specifically for your payment, and sends it back to your wallet. Your wallet then processes this invoice and completes the payment using the standard Lightning routing protocols. The entire process typically takes a few seconds, but it involves multiple round-trips between nodes and several cryptographic operations.
This two-step process – request invoice, then pay invoice – might seem unnecessarily complex, but it elegantly solves problems that plagued earlier Lightning payment systems. It prevents invoice reuse attacks, enables advanced privacy features, and allows for much more flexible payment scenarios.
The Merchant Revolution: From Invoices to Commerce
The evolution from BOLT #11
-
@ 7f6db517:a4931eda
2025-06-06 20:02:27People forget Bear Stearns failed March 2008 - months of denial followed before the public realized how bad the situation was under the surface.
Similar happening now but much larger scale. They did not fix fundamental issues after 2008 - everything is more fragile.
The Fed preemptively bailed out every bank with their BTFP program and First Republic Bank still failed. The second largest bank failure in history.
There will be more failures. There will be more bailouts. Depositors will be "protected" by socializing losses across everyone.
Our President and mainstream financial pundits are currently pretending the banking crisis is over while most banks remain insolvent. There are going to be many more bank failures as this ponzi system unravels.
Unlike 2008, we have the ability to opt out of these broken and corrupt institutions by using bitcoin. Bitcoin held in self custody is unique in its lack of counterparty risk - you do not have to trust a bank or other centralized entity to hold it for you. Bitcoin is also incredibly difficult to change by design since it is not controlled by an individual, company, or government - the supply of dollars will inevitably be inflated to bailout these failing banks but bitcoin supply will remain unchanged. I do not need to convince you that bitcoin provides value - these next few years will convince millions.
If you found this post helpful support my work with bitcoin.
-
@ 4898fe02:4ae46cb0
2025-06-06 16:56:23I had a bit of extra time this week to attend a call organized by npub1zuuajd7u3sx8xu92yav9jwxpr839cs0kc3q6t56vd5u9q033xmhsk6c2uc regarding a privacy focused project he's been working on for the last year-or-so. Shout-out to npub1e0z776cpe0gllgktjk54fuzv8pdfxmq6smsmh8xd7t8s7n474n9smk0txy for encouraging me to do so, pushing my somewhat out of my comfort zone in reporting on technical updates.
Also, if you know of or are involved in similar dev calls and would like a report done, please reach out and feel free to share calendar updates.
--npub1f4www6qjx43mckpkjld4apyyr76j3aahprvkduh9gc5xec78ypmsmakqh9 would be awesome to see this talked about on SNL later today, as it seems to be a very important/overlooked project for the future of privacy, nostr and bitcoin broadly.
Anyway, here's the unschooled report--my technical explanations may sometimes be scant, but I've done my best to provide more qualified sources where necessary.
Bringing Secure, Confidential Group Chats to Nostr - A Monthly MLS on Nostr Dev Call
Posted originally to Stacker News \~nostr territory
Developers met Tuesday, 3 Jun at 1600UTC at what would be the first of a monthly series of community calls to discuss updates and respond to questions about the implementation of the MLS (Messaging Layer Security) standard over nostr.
npub1klkk3vrzme455yh9rl2jshq7rc8dpegj3ndf82c3ks2sk40dxt7qulx3vt, npub1jlrs53pkdfjnts29kveljul2sm0actt6n8dxrrzqcersttvcuv3qdjynqn, npub1klkk3vrzme455yh9rl2jshq7rc8dpegj3ndf82c3ks2sk40dxt7qulx3vt and npub1zuuajd7u3sx8xu92yav9jwxpr839cs0kc3q6t56vd5u9q033xmhsk6c2uc among others attended and contributed to a discussion about the latter's research and development on implementing a new messaging standard on nostr using MLS.
The call highlighted some of the features of MLS, a relatively new (as of 2023) secure and confidential messaging and group-chat protocol standard. It is modeled to achieve a similar level of security as Signal, prioritizing forward-secrecy and post-compromise security, multi-device compatibility, as well as the ability to scale for large groups.
For those not familiar,
Forward secrecy means that encrypted content in the past remains encrypted even if key material is leaked.\ Post compromise security means that leaking key material doesn't allow an attacker to continue to read messages indefinitely into the future. ^1
Developers working on the project indicated that it will be an improvement on current instant-messaging standards commonly used by nostr clients, such as nip17, for a relatively simple implementation.
Those in attendance overall showed enthusiasm to push this project forward and developers interested are being encouraged to fork the the Nostr-MLS Rust Library to begin working it into their stack. Notably, jeffg and Hillebrand are keen to see new contributors work on the project.
Participants had the opportunity to ask technical questions about how the library handles some features as well as how to begin contributing.
Discussion also centered around issues with MLS (such as potential key-package rotation DOS attack vectors and de-syncing) as well as some key concepts for the new messaging standard such as how key-packages are signed by a users nsec and published to key-package inbox relays before being rotated.
Proofs of Concept
White Noise and 0xchat both have implemented MLS on nostr. These are the first to prove that the concept of secure-confidential group messaging is possible over the distributed nostr-relay protocol.
Learn More
jeffg has kept detailed project updates on his nostr account. Notably, the post MLS Over Nostr explains the vision he has for the project and his presentation The Past and Future of Messaging on Nostr (youtube) gives a high-level overview of messaging on nostr and the problems he is working to solve.
Follow npub1zuuajd7u3sx8xu92yav9jwxpr839cs0kc3q6t56vd5u9q033xmhsk6c2uc on your favourite nostr client for call updates.
Link to join.
Related:
-
@ 7f6db517:a4931eda
2025-06-06 20:02:27
"Privacy is necessary for an open society in the electronic age. Privacy is not secrecy. A private matter is something one doesn't want the whole world to know, but a secret matter is something one doesn't want anybody to know. Privacy is the power to selectively reveal oneself to the world." - Eric Hughes, A Cypherpunk's Manifesto, 1993
Privacy is essential to freedom. Without privacy, individuals are unable to make choices free from surveillance and control. Lack of privacy leads to loss of autonomy. When individuals are constantly monitored it limits our ability to express ourselves and take risks. Any decisions we make can result in negative repercussions from those who surveil us. Without the freedom to make choices, individuals cannot truly be free.
Freedom is essential to acquiring and preserving wealth. When individuals are not free to make choices, restrictions and limitations prevent us from economic opportunities. If we are somehow able to acquire wealth in such an environment, lack of freedom can result in direct asset seizure by governments or other malicious entities. At scale, when freedom is compromised, it leads to widespread economic stagnation and poverty. Protecting freedom is essential to economic prosperity.
The connection between privacy, freedom, and wealth is critical. Without privacy, individuals lose the freedom to make choices free from surveillance and control. While lack of freedom prevents individuals from pursuing economic opportunities and makes wealth preservation nearly impossible. No Privacy? No Freedom. No Freedom? No Wealth.
Rights are not granted. They are taken and defended. Rights are often misunderstood as permission to do something by those holding power. However, if someone can give you something, they can inherently take it from you at will. People throughout history have necessarily fought for basic rights, including privacy and freedom. These rights were not given by those in power, but rather demanded and won through struggle. Even after these rights are won, they must be continually defended to ensure that they are not taken away. Rights are not granted - they are earned through struggle and defended through sacrifice.
If you found this post helpful support my work with bitcoin.
-
@ 7f6db517:a4931eda
2025-06-07 13:01:52I often hear "bitcoin doesn't interest me, I'm not a finance person."
Ironically, the beauty of sound money is you don't have to be. In the current system you're expected to manage a diversified investment portfolio or pay someone to do it. Bitcoin will make that optional.
— ODELL (@ODELL) September 16, 2018
At first glance bitcoin often appears overwhelming to newcomers. It is incredibly easy to get bogged down in the details of how it works or different ways to use it. Enthusiasts, such as myself, often enjoy going down the deep rabbit hole of the potential of bitcoin, possible pitfalls and theoretical scenarios, power user techniques, and the developer ecosystem. If your first touch point with bitcoin is that type of content then it is only natural to be overwhelmed. While it is important that we have a thriving community of bitcoiners dedicated to these complicated tasks - the true beauty of bitcoin lies in its simplicity. Bitcoin is simply better money. It is the best money we have ever had.
Life is complicated. Life is hard. Life is full of responsibility and surprises. Bitcoin allows us to focus on our lives while relying on a money that is simple. A money that is not controlled by any individual, company, or government. A money that cannot be easily seized or blocked. A money that cannot be devalued at will by a handful of corrupt bureaucrat who live hundreds of miles from us. A money that can be easily saved and should increase in purchasing power over time without having to learn how to "build a diversified stock portfolio" or hire someone to do it for us.
Bitcoin enables all of us to focus on our lives - our friends and family - doing what we love with the short time we have on this earth. Time is scarce. Life is complicated. Bitcoin is the most simple aspect of our complicated lives. If we spend our scarce time working then we should be able to easily save that accrued value for future generations without watching the news or understanding complicated financial markets. Bitcoin makes this possible for anyone.
Yesterday was Mother's Day. Raising a human is complicated. It is hard, it requires immense personal responsibility, it requires critical thinking, but mothers figure it out, because it is worth it. Using and saving bitcoin is simple - simply install an app on your phone. Every mother can do it. Every person can do it.
Life is complicated. Life is beautiful. Bitcoin is simple.
If you found this post helpful support my work with bitcoin.
-
@ 7f6db517:a4931eda
2025-06-06 20:02:26Nostr is an open communication protocol that can be used to send messages across a distributed set of relays in a censorship resistant and robust way.
If you missed my nostr introduction post you can find it here. My nostr account can be found here.
We are nearly at the point that if something interesting is posted on a centralized social platform it will usually be posted by someone to nostr.
We are nearly at the point that if something interesting is posted exclusively to nostr it is cross posted by someone to various centralized social platforms.
We are nearly at the point that you can recommend a cross platform app that users can install and easily onboard without additional guides or resources.
As companies continue to build walls around their centralized platforms nostr posts will be the easiest to cross reference and verify - as companies continue to censor their users nostr is the best censorship resistant alternative - gradually then suddenly nostr will become the standard. 🫡
Current Nostr Stats
If you found this post helpful support my work with bitcoin.
-
@ 7f6db517:a4931eda
2025-06-07 13:01:51Will not live in a pod.
Will not eat the bugs.
Will not get the chip.
Will not get a blue check.
Will not use CBDCs.Live Free or Die.
Why did Elon buy twitter for $44 Billion? What value does he see in it besides the greater influence that undoubtedly comes with controlling one of the largest social platforms in the world? We do not need to speculate - he made his intentions incredibly clear in his first meeting with twitter employees after his takeover - WeChat of the West.
To those that do not appreciate freedom, the value prop is clear - WeChat is incredibly powerful and successful in China.
To those that do appreciate freedom, the concern is clear - WeChat has essentially become required to live in China, has surveillance and censorship integrated at its core, and if you are banned from the app your entire livelihood is at risk. Employment, housing, payments, travel, communication, and more become extremely difficult if WeChat censors determine you have acted out of line.
The blue check is the first step in Elon's plan to bring the chinese social credit score system to the west. Users who verify their identity are rewarded with more reach and better tools than those that do not. Verified users are the main product of Elon's twitter - an extensive database of individuals and complete control of the tools he will slowly get them to rely on - it is easier to monetize cattle than free men.
If you cannot resist the temptation of the blue check in its current form you have already lost - what comes next will be much darker. If you realize the need to resist - freedom tech provides us options.
If you found this post helpful support my work with bitcoin.