Libauth @libauth
An ultra-lightweight, zero-dependency JavaScript library for Bitcoin Cash, Bitcoin, and @bitauth applications. https://t.co/aWv8BFVdVX #BCH #Bitcoin libauth.org JavaScript Joined November 2022-
Tweets25
-
Followers130
-
Following43
-
Likes29
The May 2026 upgrade is now active on Chipnet at block 279,792! 🎉 This upgrade completes the restoration of Bitcoin Script on Bitcoin Cash (CashVM), making CashVM a simple, ultra-efficient, high-level programming environment for sound money. Left: 2016 opcodes, right: 2026 opcodes 🔥 (source: vm.cash) Over the last decade, Bitcoin Cash has delivered: • 2018: Opcode restoration (OP_CAT, OP_XOR, OP_DIV, OP_MOD, etc.), • 2019: Schnorr signatures with multisig batch verification, • 2020: Density-based signature limits, • 2022: OP_MUL and introspection, • 2023: Cross-covenant commitments (CashTokens), • 2025: Density-based general limits and BigInts, • 2026: Loops, functions, bitwise, and Pay-2-Script. Each upgrade carefully preserved Bitcoin Cash's transaction-level parallelization, enabling global-scale, layer-1 throughput – without compromising Bitcoin Cash's scalability, decentralization, and censorship-resistance. Fully-validating, archival BCH nodes run on consumer hardware and still outperform clusters of high-powered, centralized sequencers required by account-based networks. With this upgrade, CashVM becomes even more powerful, allowing contract developers to efficiently implement post-quantum cryptography, homomorphic encryption, zero-knowledge proof systems, and more – without waiting for network upgrades. Case Study: Quantumroot Quantumroot is a quantum-secure vault contract design offering full 256-bit classical, 128-bit quantum security strength. Possible since May 2025, but made 10-100× more efficient by the 2026 upgrade: Quantumroot sweep transactions are 15% smaller per-UTXO than P2PKH wallets. Upgrade Details The 2026 upgrade includes four Bitcoin Cash Improvement Proposals (CHIPs): Loops CHIP Introduces the well-established, OP_BEGIN/OP_UNTIL loop construction to CashVM, bounded by the density-based limits activated in the 2025 upgrade. Loops eliminate duplication in repeated procedures, significantly reducing transaction sizes and enabling previously impractical constructions. Functions CHIP Enables factoring of contract bytecode into reusable functions with OP_DEFINE/OP_INVOKE, eliminating duplicated logic and reducing transaction sizes. Functions improve the efficiency of complex financial and cryptographic computations, including zero-knowledge proof verification, homomorphic encryption, post-quantum cryptography, and more. Bitwise CHIP Re-enables bitwise operations, including OP_INVERT for bit inversion, arithmetic shifts (OP_LSHIFTNUM and OP_RSHIFTNUM) for numeric values, and binary/logical shifts (OP_LSHIFTBIN and OP_RSHIFTBIN) for binary data. These operations allow CashVM contracts to more efficiently implement a variety of financial and cryptographic algorithms. Pay-2-Script CHIP Makes Pay-2-Script (P2S) outputs standard, enables longer token commitments (up to 128 bytes), and unifies the standard unlocking bytecode length limit with the consensus limit (10,000 bytes). These changes improve wallet ecosystem safety, simplify contract design, and reduce transaction sizes for many vault, multi-party covenant, and decentralized financial applications.Technical Specs For more details, see the CHIPs: - Loops: github.com/bitjson/bch-lo… - Functions: github.com/bitjson/bch-fu… - Bitwise: github.com/bitjson/bch-bi… - Pay-2-Script: github.com/bitjson/bch-p2s
In anticipation of future Zero-Knowledge Proof (ZKP) Bitcoin Cash covenants, I've been reviewing how to make implementation in wallets as practical and private as possible. I expect now that many ZKP covenant systems can be fully supported by generalized "wallet engine" infrastructure, such that software which supports wallet templates will be able to simply import and use ZKP covenant wallet templates (create a wallet, scan for matching UTXOs, and deposit, transfer within, and withdraw from public ZKP covenants) with minimal integration work. However, the Bitcoin Cash P2P protocol has two areas requiring improvements for better privacy in real-world usage: - Transaction origin exposure – network-level adversaries can trivially identify the node which first broadcasts most transactions. Many end-user wallets are partially protected from network-level monitoring by broadcasting via a backend controlled by their wallet vendor or community-run Fulcrum servers (Electrum protocol), but this comes at the cost of leaking far more actionable data to those providers (who in many cases are also servicing "balance checks" and other queries that reliably de-anonymize all of the end-user's activity). - Cleartext network communications – the Bitcoin Cash P2P protocol does not support any form of encryption, so network-level adversaries can very easily identify and track all activity, simplifying and lowering the cost of both censorship and attacks on privacy. Some ideas I've reviewed: A new "`ONION_TX`" P2P protocol extension: We could add a Tor-like transaction broadcast protocol where the transaction is encrypted to a path of known "onion-capable" nodes. However, powerful network-level attackers could likely still correlate traffic in and out of circuits with timing analysis – at the very least, much of the rest of the network would need to upgrade to encrypted connections as well. Additionally, it's very hard to protect against denial-of-service attacks: even if nodes temporarily remembered onion TXs they forwarded, and we added a backwards-propagating `ONION_ABUSE` message to allow nodes in the circuit to blame a misbehaving node, the originating node may always plausibly claim to be a victim of an earlier non-existent node. Compare that with our existing protocol, which is very byte-efficient at banning misbehaving peers for wasting bandwidth on invalid transactions. (And of course transaction fees impose a cost on valid transaction bandwidth.) Note also that BCH nodes can already connect via Tor, which probably offers both better privacy and greater resistance to denial-of-service attacks (due to the size of the existing Tor network). TLDR: An "onion" extension would be complex, easily abused, and ultimately less private than network-layer encryption + a deniable broadcast solution (Dandelion++ or Clover). BIP324 opportunistic encryption: Bitcoin Cash nodes could implement BIP324, an upgrade to add encryption to the existing P2P protocol. If our only goal were to better protect traffic against powerful network-level adversaries, this solution seems hard to beat: maximally simple, pseudorandom bytestream, shapable for better censorship resistance, etc. However, implementation is not trivial: it's a new, special-purpose protocol with relatively little ecosystem support (some scattered patches for various BTC software, early support in a few BTC-only libraries). It's quite hard to justify this additional work and maintenance when compared to adopting a more widely-used stack like Noise or libp2p, for which better-reviewed libraries already exist in a variety of language/programming environments. Further, even if encryption support were successfully deployed to 100% of BCH nodes, we'd still need solutions for transaction origin exposure – well-connected adversaries could still trivially identify originating nodes on the main network, and the status quo of wallets leaking private info to backend servers would remain unchanged. In fact, even coupled with a deniable broadcast solution like Dandelion++ or Clover, practical privacy for most end-users would still remain highly vulnerable to trusted backends. To create plausible deniability in light client transaction broadcast, you need the light clients to also be plausibly participating in the deniable broadcast protocol, i.e. light clients with peer connections to other nodes and light clients. Implementing BIP324 would bring encryption to the existing P2P network, but it wouldn't improve the privacy of most light wallets – for that we need to make it easier for light wallets to broadcast transactions directly over the P2P network (even if they still leak other info to backend servers rather than internally running pruned or SPV nodes). TLDR: a partial solution to cleartext P2P communications, but at significant implementation cost, with little new practical privacy for most light wallets users. --- Proposals for Bitcoin Cash: With that background, I'd like to outline some solutions I'm exploring. These might eventually become CHIPs to make them easier to talk about, but note that they're much "lower-stakes" than VM changes: there's no consensus or widely-coordinated upgrade needed here, nodes and wallets can choose to start or stop speaking protocols whenever they like, and it's likely we'll iterate a bit. Implement `PTX` messages ("Clover") In my opinion, Clover is a clear improvement over Dandelion++ – it's simpler, faster, more byte efficient, has fewer pitfalls, and offers overall better privacy to all network participants. In short: nodes add a new `PTX` ("proxy TX") message type equivalent to the `TX` type, but quietly relayed based on some simple rules such that the network first "hears" it via the standard `INV` diffusion after a few hops. When performed across encrypted connections, this offers similar privacy to an "onion" extension, but without the denial-of-service issues. Note that even the first peer to receive the `PTX` can't know if the originator was simply forwarding it, so they learn only slightly more than if they were passing along an onion-encrypted payload. However, with the payload visible, they 1) are not wasting bandwidth (they won't need to `GETDATA` the TX again later) and 2) can easily see if it's invalid and ban misbehaving peers. Without encryption, the originator of each `PTX` message is still easily tracked by powerful network-level adversaries, but when combined with some P2P layer encryption solution (and perhaps if messages are padded to a fixed length), we get Tor-like privacy without the DoS exposure. One BCH-specific detail: nodes must advertise in service bits whether or not they support `PTX`, and only forward `PTX` to other supporting nodes. With BCH's annual upgrades, we're likely to have great support relatively quickly, but it's important that `PTX` "support" remains optional (e.g. @ChaingraphCash probably won't implement the `PTX` forwarding behavior, so if nodes blindly selected a Chaingraph agent to send a `PTX`, propagation would be delayed until a previous node's timeout was triggered.) Some node implementations will never bother to implement, and that's fine. Implement optional `libp2p` transport protocols: The libp2p project seems to have come a long way in standardizing various transport protocols, implementing native libraries in a variety of languages, and resolving earlier resource exhaustion issues. A number of cryptocurrency projects now use libp2p, including Ethereum since 2023. I'd love to see BCH node implementations experiment with using libp2p libraries to support the TCP + Noise + Yamux, WebTransport, and WebRTC libp2p transport protocols. This would unlock P2P network compatibility with the web platform, enabling: - Web-based peers that can easily contribute bandwidth from any connection (like Tor's Snowflake project), - Stronger censorship resistance: more protocol options to route around censorship/damage, and BCH traffic can blend in with video calls (WebRTC) and HTTP/3 (WebTransport), - Strongly-private, PWA-based nodes and severless wallets, - Simpler, JS-only P2P connection code in web-stack based software (e.g. wallets built with Electron, Tauri, Expo, React Native, Capacitor, etc.) Rough sketch of the necessary parts: - Reuse most of existing P2P message formats after libp2p handshakes – can simply remove the checksum field (as the transport layers handle message integrity). The `addr` message format would continue to enable "v1" P2P discovery. - Extend the existing `version` handshake to enable immediately upgrading to libp2p WebTransport for the performance and encryption, or libp2p TCP for the encryption. - Seeder support for JSON responses – we need some seeder (like BCHN's) to support listening on a port and returning the list via HTTP in JSON format. (Seeder operators should also set up HTTPS with Caddy or something.) The JSON response should only include nodes with libp2p interfaces enabled (and returned records should allow for opening WebTransport and/or WebRTC connections). Long term, I hope to add support in @Libauth for locally running a fast-syncing pruned node in the browser, Node.js, Deno, Bun, etc. such that Libauth-based wallets can both participate in `PTX` ("Clover") broadcasting and scan for their own UTXOs without leaking info to backends (at the cost of local storage and bandwidth usage). Clients running in Node.js, Deno, or Bun would bridge between v1 P2P nodes and libp2p-connected nodes to help bootstrap the libp2p-based network (stretch goal: a PWA and/or browser extension-based full node with support for ~1MB sub-block progressive knockout filters). --- Does anyone see areas for improvement over PTX messages + encrypted libp2p transports? I also posted this on Bitcoin Cash Research, ideas and feedback welcome.
Chat GPT explains what you'd need to build a proper compiler for Bitcoin Script @CashScriptBCH as only tool in the entire industry, has all of these, thanks to the integrated debugging with @libauth and step-by-step execution in the @BitauthIDE Of all 7 items listed by GPT, only a 'visualiser tool' is suggestion we don't have yet.
The `next` branches of @libauth and @BitauthIDE now have draft support for OP_BEGIN/OP_UNTIL, OP_EVAL, and P2S. You'll see a some new UI for stepping through loops in the IDE too: (recording from locally-installed app, offline mode ✈️)
@bitjson Debug in Bitauth IDE 🚀 ide.bitauth.com/import-templat…
A chipnet transaction with 8×8 byte OP_MUL: 0xffffffffffffffff(-9223372036854775807) 0xffffffffffffffff(-9223372036854775807) OP_MUL 0x0100000000000000ffffffffffffff3f(85070591730234615847396907784232501249) OP_EQUAL => 0x01(1) chipnet.chaingraph.cash/tx/df5605a84a5…
The May 2025 upgrade to Bitcoin Cash is now active on chipnet at block 227,228! 🎉 (0000000000b8dc4625844fa367b12317645fac7c9afbc5fb8def4025a6822c86) This upgrade includes two Bitcoin Cash Improvement Proposals (CHIPs): Targeted Virtual Machine Limits CHIP The VM Limits CHIP retargets Bitcoin Cash's Denial-of-Service limits to extend compute for real contracts by more than 100x while reducing worst-case node compute usage by 50%. By reducing overhead, the retargeted limits simplify contracts, reduce transaction sizes, streamline contract audits, and improve overall security. By improving contract efficiency, this upgrade also makes important use cases more practical, including post-quantum cryptography, stronger escrow and settlement strategies, zero-knowledge proofs, homomorphic encryption, and other crucial innovations for the future security and competitiveness of Bitcoin Cash. Finally, this upgrade raises the bar by contributing new tooling and a cross-implementation benchmarking methodology to continuously verify node performance. Beyond empirically verifying the safety and correctness of the upgrade, these tools will simplify development of new production-ready implementations, prevent regressions in existing implementations, and reduce the cost of verifying implementation-specific software updates. BigInt CHIP: High-Precision Arithmetic for Bitcoin Cash The BigInt CHIP enables high-precision math for Bitcoin Cash, offering over 10x reductions in contract lengths and making previously-theoretical use cases immediately practical: more advanced automated market making and exchange protocols, decentralized stablecoins, collateralized loan protocols, cross-chain and sidechain bridges, zero-knowledge proofs, post-quantum cryptography, homomorphic encryption, and more. This upgrade takes full advantage of Bitcoin Cash's fundamentally more scalable architecture to offer math capabilities which exceed those of Ethereum: "bare metal" performance, more byte-efficient transactions, far lower transaction fees, and protocol-level simplicity that eliminates whole classes of Ethereum contract vulnerabilities. These capabilities are available to Bitcoin Cash contracts on "layer one" – ensuring security, censorship resistance, and cross-contract compatibility – without increasing compute requirements: fully-archiving Bitcoin Cash nodes can continue to run on inexpensive, consumer hardware. Learn More To learn more about the upgrade or the CHIP upgrade process, please see this earlier post: x.com/bitjson/status…
Bitcoin Cash's 2025 upgrade is now live in Bitauth IDE: no opcode limit, larger contracts, 10KB stack items, and high-precision math! 🚀 Details: x.com/bitjson/status… Pro tip: click the icon in your browser's URL bar to install the app. Full screen, easy offline access ✈️
The BigInt CHIP enables high-precision math for Bitcoin Cash, offering over 10x reductions in contract lengths and making previously-theoretical use cases immediately practical: more advanced automated market making and exchange protocols, decentralized stablecoins,
Bitcoin Cash's November 15th chipnet lock-in is almost here, and the VM Limits & BigInt CHIP upgrades are expected to activate in 2025! 🚀 If you run a node on chipnet, please upgrade today! Over the past 6 weeks, we’ve been requesting final approval from all stakeholders: over 400 companies, organizations, and projects from across the Bitcoin Cash (BCH) ecosystem. We recognize that taking a public position on a network upgrade requires time, resources, and commitment to advancing Bitcoin Cash. Thank you to all of the organizations and individuals who have participated during this lock-in process. Thank you to all contributors to these proposals. Technical feedback has been incorporated over dozens of revisions, and the upgrade is now meticulously optimized and widely reviewed – over 6 months before mainnet activation. My summary, endorsement, and links to the VM Limits CHIP: x.com/bitjson/status… My summary, endorsement, and links to the BigInt CHIP: x.com/bitjson/status… Again, if you run a chipnet node, be sure to upgrade before chipnet activation: ~30 hours from the time of this post! Verified builds and a docker image are available: x.com/ChaingraphCash…
On behalf of @BitauthIDE, @ChaingraphCash, and @libauth, I'm endorsing two Bitcoin Cash Improvement Proposals (CHIPs) for the 2025 upgrade cycle: - CHIP-2021-05 VM Limits: Targeted Virtual Machine Limits - CHIP-2024-07 BigInt: High-Precision Arithmetic for Bitcoin Cash
Please star us on GitHub! github.com/bitauth/libauth
Libauth v3.0.0 is out! 🚀 More consistency across utilities, detailed usage guides, and a new API overview in the readme:
Ever wondered how Bitcoin Script becomes a bitcoin address? Here's the Bitcoin Script For Beginners talk I gave at @tabconf 2019. It covers: • How transactions use Bitcoin Script • How funds are "locked" to addresses • How opcodes work • How to define new kinds of wallets, and • How to write your own scripts with @BitauthIDE, the interactive debugger shown in the demo.
Bitauth IDE v1.0.0 is now available 🎉 • Works offline ✈️ • Uses @libauth v2.0.0 • >70% screenshot-testing coverage • Performance improvements and bug fixes Please help us grow by starring the project on GitHub: github.com/bitauth/bitaut…
Bitauth IDE v1.0.0 is now available 🎉 • Works offline ✈️ • Uses @libauth v2.0.0 • >70% screenshot-testing coverage • Performance improvements and bug fixes Please help us grow by starring the project on GitHub: github.com/bitauth/bitaut…
The May 2024 upgrade to Bitcoin Cash (BCH), CHIP-2023-04 Adaptive Blocksize Limit Algorithm, is now active on chipnet at block #174519 (0000000068675ff881ff763de0c4b47b8da8f64c7800c016a9dac60f7f8e0007)! 🎉 This upgrade resolves an economic vulnerability that was introduced in 2010 and led to the BCH/BTC network split in 2017. The algorithm automatically adjusts Bitcoin Cash's block size limit to reduce infrastructure costs during periods of lower usage while enabling up to a doubling of the maximum block size per year at peak growth. Why Limit Block Size? The block size limit caps the technical requirements of network infrastructure, enables reliable infrastructure cost projection, and prevents attacks that increase the cost of participating in the network. Excessively large blocks could require users and businesses to waste resources on unnecessary infrastructure, switch to cheaper and less secure validation strategies, or even to abandon running their own infrastructure and instead rely on third-party service providers – reducing the overall privacy, independence, and financial freedom of all users. Vulnerability of Static Block Size Limits To limit block size, most bitcoin-like networks (BCH, BTC, BSV, XEC, etc.) employ a static block size limit. For Bitcoin Cash mainnet, this limit is currently 32MB. If a payment network is growing, usage will eventually approach any previously-established static limit. If this limit is reached before a successfully coordinated upgrade, network service degrades: transaction fees and confirmation times become less predictable as size-limited blocks become more common. Uncorrected, market actors begin to adapt to this artificial scarcity by using alternatives to on-chain transactions: custodians, intermediaries, and competing networks. This in turn compromises the long-term economics of mining – cumulative transaction fee revenue is suppressed, and long-term network security grows to rely on continuous inflation via block subsidies. Because static block size limits can only be changed as part of a widely coordinated network upgrade, they present a focal point for network interruption or capture by motivated attackers: rent seeking institutions, competing networks, opponents of peer-to-peer cash, etc. To make matters worse, the attackers have a significant coordination advantage – while honest network participants must achieve near-unanimous consensus to activate an upgrade, attackers must only create sufficient uncertainty among the honest participants to delay limit increases, as inaction results in degradation of the network’s functionality and long-term security. Adaptive Block Size Limits Adaptive block size limits resolve the economic vulnerability of static limits by automatically adjusting the maximum block size over time. While an adaptive block size limit could still diverge from a hypothetical "ideal" size due to significant changes in the rate of technological advancement or the availability of capital, such divergences would likely remain much smaller than with static limits, and attackers are no longer afforded an advantage. Bitcoin Cash's Adaptive Algorithm The new algorithm is conservative and based on observed usage. In cooling-off periods of falling network usage, the limit slowly decreases to preserve the resources of infrastructure operators. On the other hand, during periods of rapid growth, the limit can increase at a rate of up to 2x per year. --- This post is adapted from my earlier blog post about the May 2024 upgrade. You can find more information about this upgrade and Bitcoin Cash's upgrade process in that post (link in bio). Thanks for reading!
@jimfriendo steps toward excellent UX AND self-sovereignty: LibCash/similar: Development wrappers on BCH primitives in @libauth and full nodes. Documentation e.g. documentation.cash CashRPC building on @bitjson - empowering users without depending on a domain.
I've submitted the following stakeholder statement for CHIP-2023-04 Adaptive Blocksize Limit Algorithm: This proposal resolves the economic vulnerability inherent to static block size limits and could reasonably get us to universal Bitcoin Cash adoption without further intervention. Fourteen years of network usage data, across multiple ecosystems, provide the insight required to have confidence in deploying an adaptive block size algorithm. On the specifics of the algorithm: I'm most focused on development of applications and services (primarily Chaingraph, Libauth, and Bitauth IDE) where raising the block size limit imposes serious costs in development time, operating expense, and product capability. Even if hardware and software improvements technically enable higher limits, raising limits too far in advance of real usage forces entrepreneurs to wastefully redirect investment away from core products and user-facing development. By measuring observed usage, CHIP-2023-04 Adaptive Blocksize Limit Algorithm minimizes such waste while still ensuring adequate capacity for both bursts of activity and consistent future growth; I support this CHIP's activation in the May 2024 upgrade. For an overview of the proposal, please see the full post: blog.bitjson.com/bitcoin-cash-u…
@bchautist Thanks for helping me debug it with @libauth IDE 🙏
New commit - Merge pull request #89 from mr-zwets/patch-1 Documentation fix for generatePrivateKey github.com/bitauth/libaut…
Crypto Enthusiast @cryptotradexxx
358 Followers 6K Following Investor | Like Minded Community Developer | Blockchain| Crypto| Digital Asset Management | Crypto Hedge Fund
Kenn Bosak @KennethBosak
64K Followers 5K Following YOUR FAVORITE KOLs FAVORITE INFLUENCER • @wtfDial • @Tangem • #NotAnotherBitcoinPodcast
Cashinals | BCH @CashinalsBCH
72 Followers 306 Following Inscriptions on Bitcoin Cash 🟩Digital assets stored directly on-chain 🧩 #BitcoinCash #BCH #Inscriptions Backup account | main: @Cashinals
Libertad Propiedad y ... @lipovi_uy
143 Followers 281 Following Los 3 derechos naturales del ser humano | Liberal conservador | desarrollador CriptoAnarquista/Cyberpunk.
Cheru Cryptocurrencia... @BrunoCherubini4
345 Followers 1K Following I don't want to be subjective, but this is my austrian perspective. Anarchocapitalist, agorist, anarchist, objectivist. Argentina. $BCH.
Moon Venture Capital @moonvcresearch
402 Followers 2K Following Backing pioneers working on a greater future. The firm invests in innovative technology companies.
Bitcoin Cash (BCH) @BitcoinCashOG
17K Followers 8K Following Bitcoin Cash (BCH) | The original vision for global, fast, low-fee peer-to-peer digital cash outreach & promotion.
WT @WickedTruthsOrg
140 Followers 712 Following Content creator and admin of https://t.co/Mu6vwEivtL https://t.co/ppHYPTvi0G https://t.co/rN6GorQupg
Anime Women For Bitco... @AWFBCH
150 Followers 98 Following Bitcoin Cash brings sound money to the world, fulfilling the original promise of Bitcoin as "Peer-to-Peer Electronic Cash".
philiperalph @philiperalph
23 Followers 245 Following
Deborah Mitchell @mitchelDeeth
20 Followers 140 Following Bitcoin is the beginning of something great: a currency without a government, something necessary and imperative.
kiok @cypherpunk_bch
351 Followers 1K Following BCH > (BTC + ETH + Central Banks) @bitcann_org | @zapit_io | @MantraProtocol
The Bad Trader @TheBadtrader126
651 Followers 529 Following
Nicolás @Nico22H
68 Followers 821 Following Thought Criminal. Egoísmo benevolente. The truth is out there.
Rafa @raphobot
171 Followers 1K Following Sport Enthusiast - Secondary Teacher - Crypto Bro - Truth Seeker (bc it’s seldom served on a silver platter) - let’s respect and unite
glitch @glitchdotbch
1K Followers 588 Following
Dani007 @crypto01001
77 Followers 614 Following
Marty Alcala @martyalcala
88 Followers 588 Following Your mind is software. Program it. Your body is a shell. Change it. Death is a disease. Cure it.
yuuka @yuuka15367
44 Followers 766 Following 困っている人を助けたくて現金プレゼントをします。毎日10万円プレゼント中です。フォローしてエントリーください。配布結果▶https://t.co/CaXh6Dn2uF
Trevor Baaddi @IWriteAboutXMR
681 Followers 3K Following Veteran Financial Journalist. I currently write about Crypto with a focus on Monero (XMR) and other privacy coins. Send tips to: [email protected]
Eng. Bandar Faqih @Bandarfaqih
594 Followers 2K Following Chemical & Materials Research Engineer | Interested in Biotechnology 🧬, anti-aging processes, human augmentation, and Transhumanism - 🟢Bitcoin Cash Ambassador
BitVitor @BitVitordotcom
53 Followers 223 Following "Seja o Seu Próprio Banco e Tenha Controle Total Sobre o seu Dinheiro" https://t.co/yzNuClcoSo $BCH #BitcoinCash
Graffiti KiNGS @GraffitiKings
141 Followers 263 Following $WAXP $PMSL $WAXCASH $NBG 🤘 👉 The ONLY official #GraffitiKINGS / #GKniftyHEADS X channels @GraffitiKings @GKniftyHEADS @HODLWARRIORS @GraffPUNKS @NFTBUSTER 👍
RINA★ネオニー�... @M7mANKe3rruvYN7
29 Followers 564 Following 底辺暮らしから成り上がり/6社経営/資産70億・今は稼げる情報を教えたり、10万円をプレゼントしたりしています/今ならLINE登録で10万円プレゼント中!まずはフォローしてください|高確率当選中!⇒ https://t.co/WsmfFIYsRe
Freedom Extremist @Liberty_Radical
48 Followers 204 Following Anarcho-capitalist, anti-socialist, anti-fascist.
Gᴀʙʀɪᴇʟ Mᴏ�... @gabrieldsmoura
759 Followers 5K Following
StatusNomadicus @StatusNomadicus
909 Followers 3K Following NO IRAN WAR. follow: @RonPaul @ChaseForLiberty @AntiWarCom @ScottHortonShow @DecampDave @RogerKVer @MartyrMade @LLibertadAvanza @RepThomasMassie @MassieForKY
Brian Canacci @Canatch
626 Followers 2K Following
Robert Björkqvist @RobertBjorkqvis
148 Followers 261 Following
gabriel fojo @gabrielfojo
2K Followers 2K Following Fullstack developer :: Medical Freedom Advocate :: BCH is Bitcoin that works :: Permaculture can save us all - blocked count (5) 🤐 🇦🇷
cointr.ee/Bruno @Brunopbch
1K Followers 1K Following
ultrafresh @1ultrafresh
353 Followers 382 Following Blockchain + Game Development ; LARP Game Developer; Bitcoin Class of '13; 🐉
esky33 @Esky33junglist
2K Followers 3K Following 🦞Agentbot : Atlas_baseFM LND ❤️ founder, coder - ex BMG inhouse skilled audio engineer & DJ 🏗️✨ https://t.co/FzxBpqBVpy 🎧📻📡 https://t.co/M4SA4xHgsO
Steve Thurmond @stevethurmond
913 Followers 2K Following -Financial Educator/BCH Enthusiast- The necessity of the separation of money and state/banks is the crisis of our time. Bitcoin was always meant to be a P2PECS!
Marty Alcala @martyalcala
88 Followers 588 Following Your mind is software. Program it. Your body is a shell. Change it. Death is a disease. Cure it.
🌶CryptoWyvern#116 @CryptoWyvern
1K Followers 479 Following Cryptocurrency-focused hard-fork of @GreyWyvern. For anarchy, free-markets and on-chain scaling. Avatar by @Sskessa. https://t.co/H0BsDkNRaU
cointr.ee/Bruno @Brunopbch
1K Followers 1K Following
imaginary_username�... @im_uname
4K Followers 489 Following @im_uname, 20190901 sign w/ im_uname#102; 🍓 H3lvFGYY7dZN7kK9FBGRAC1vYa/cUoF7lW6OclkFdE2fcBqB7R07nf1mCxEwJu2/BCoV3ObxLh6v5lZg1wg15NE= payto im_uname#100; 🍋
Neon(Da)Thal @NeonDaThal
1K Followers 743 Following Agorist 🏴 | Follow your primal instinct! 🦍 | Crypto-laundering friendly 😉 | freedom is everything | #BCH | @bchgloballotto
Omar @omar4freedom
2K Followers 2K Following
Fiendish @FiendishCrypto
3K Followers 1K Following Passionate voice of freedom, liberty, love, and p2p cash | r/CashTokens
比特幣現金台灣... @twbitcoincash
2K Followers 1K Following #比特幣現金台灣 自媒體,專注於教育新手入門、平衡報導與各國商家採用消息,人人都是中本聰 (We are all Satoshi) ,推廣中本聰願景,點對點電子現金系統。 Writer @gordonlin201504 Website https://t.co/i7zciBrxQX #Bitcoincash
Cheapy🪐🌭 @CheapLightning
3K Followers 411 Following #BCH2SATURN 🪐🌭 Chief Sanitary Engineer At The Bitcoin Cash Foundation @BCHF_ORG
Nurain🥑 @Nurain_Dev
4K Followers 2K Following DevRel 🥑 | Community Builder Building on Bitcoin Cash 💚 & Open Source ecosystems BCH Hub • Developer adoption
Marius Kjærstad (mar... @MKjrstad
7K Followers 2K Following Ethereum pirate sailing the high seas 🏴☠️
George Donnelly @GeorgeDonnelly
10K Followers 677 Following Lead dev @tokenGBP (top-5 non-USD stablecoin). Tinkering @YapBay_ @PushFlip | Rust | TypeScript | @Solana_Colombia | Sci-fi author & doge dad
BitcoinCashers @BitcoinCashA
17K Followers 261 Following Volunteers dedicated to growing #BitcoinCash #BCH #BCHforEveryone🌱 Discord: https://t.co/eWJQhrmJG6 Telegram: https://t.co/1Z8HoqZbS2
Selene Wallet @SeleneWallet
2K Followers 80 Following The bleeding-edge open source #BitcoinCash💚 wallet for everybody. Join the Cash economy! Developed with 💚 by @kzKallisti and @TheBCHPodcast. #CashIsKing👑
🐭 More financial f... @btcfork
9K Followers 2K Following Bitcoin has forked to preserve its quality as "peer-to-peer electronic cash". Forking is a way to upgrade the protocol and resolve contentious disputes.
Bitcoin Cash TV @BitcoinCashTV
13K Followers 721 Following BCHTV is a gaming live stream where all the viewers can win Bitcoin Cash every show with your host bChad. Follow our channel for news, promotions, & giveaways.
Bitgree @bitgreecom
2K Followers 142 Following Buy almost anything using Bitcoin Cash. Earn Bitcoin Cash. #BCH #BitcoinCash #SpendBCH #EarnBCH
Bitcoin Cash Foundati... @BCHF_ORG
2K Followers 201 Following Outreach and promotion of Bitcoin Cash as p2p electronic cash for the world. #BCH #BITCOINCASH
Joemar Taganna @joemar_taganna
1K Followers 694 Following { Entrepreneur, Blockchain & AI Aficionado, Techno-Decentralist } = CEO of @_paytaca_ | Venture builder at @scibizin4matics
General Protocols @GeneralProtocol
2K Followers 16 Following General Protocols are UTXO experts, building peer-to-peer, open-source financial tools and services on the Bitcoin Cash blockchain.
Kallisti.cash 🍏 @kzKallisti
5K Followers 2K Following #BitcoinCash💚 is Bitcoin: A Peer-to-Peer Electronic Cash System! Lead Dev @SeleneWallet 🌘 #CypherpunksWriteCode🏴☠️ #CashIsKing👑 #ShadowWizardMoneyGang🍏
OpenTokenRegistry @OpenTokenRgstry
56 Followers 14 Following OpenTokenRegistry is an open source, volunteer-maintained registry of tokens issued on Bitcoin Cash $BCH. This account tweets all registry updates.
CashTokens.org @CashTokens
286 Followers 22 Following An open-source, community-maintained website about #CashTokens, including technical specifications, documentation, guides, and other resources. #BCH
pat @mainnet_pat
1K Followers 74 Following
emergent_reasons#100�... @EmergentReasons
2K Followers 346 Following Leave the world better than you found it. Building on Bitcoin Cash is one way I do that.
Samuel Nevarez @samnev86
64 Followers 693 Following
The Bitcoin Cash Podc... @TheBCHPodcast
10K Followers 526 Following Following Bitcoin (Cash - BCH) on its rise to global reserve currency. 📰: @TheBCHBullet 📱: @SeleneWallet 🤝: @bchbliss
Mathieu Geukens @GeukensMathieu
2K Followers 812 Following libertarian p2p cash advocate 🌶✌️ BCH developer & innovator 💚 e/acc 😎
CashScript @CashScriptBCH
787 Followers 20 Following CashScript is a high-level programming language for smart contracts on Bitcoin Cash.
Bitauth IDE @BitauthIDE
123 Followers 86 Following An open source, online, integrated development environment (IDE) for developing Bitcoin Cash contracts. https://t.co/lIY2v0KEDS
Node.js @nodejs
911K Followers 600 Following The Node.js JavaScript Runtime. 🐢🚀 Need help with Node.js? We've got a repo for that: https://t.co/BaCSQqilHm
TypeScript @typescript
416K Followers 50 Following TypeScript is a language for application-scale JavaScript development. It's a typed superset of JavaScript that compiles to plain JavaScript.
Chaingraph @ChaingraphCash
187 Followers 16 Following An open source, multi-node blockchain indexer and GraphQL API.
Bitauth @Bitauth
161 Followers 9 Following Bitauth is an identity and message authentication standard using bitcoin authentication. Also on Telegram: https://t.co/cFjumMCXKZ





















