Second's avatar
Second
_@nostr.second.tech
npub1ake0...pfwt
Simple solutions for integrating Ark and Lightning payments into your apps. Painlessly deliver fast, low-cost, self-custodial payments to your users.
Second's avatar
second 1 week ago
image Since launching on mainnet, we've been hard at work refining Bark's DX and UX, guided by all the feedback we've been getting from early integrators and users. Some of the highlights from releases 0.2.3 to 0.3.0: Bark now pays LNURL links anywhere it accepts a Lightning address, you can run barkd as a containerized web app to back browser-based wallets, and wallet setup is simpler with one consistent flow and per-platform storage defaults. Your bitcoin also stays liquid mid-exit: an Ark balance can be spent right up until your emergency exit's leaf transaction is confirmed on-chain (spending quietly cancels the ongoing exit). Lots more changes at:
Second's avatar
second 1 month ago
Bark is now a Lightning backend option in Alby Hub—enabling self-custodial Lightning payments for all your connected wallets with no Lightning node, channels, or liquidity to manage. The integration enables Bark across all NWC-enabled apps like Alby Go, Zeus, and Damus, and even agents like Claude and GPT. More details: image
Second's avatar
second 1 month ago
Bark Wallet is now on the Umbrel app store. It's a simple, self-custodial bitcoin wallet covering the complete Bark experience: send and receive over Ark, Lightning, and on-chain, with automated refreshes, an emergency exit, and no channel and liquidity management. It's also open source, a great foundation for your next wallet app project! Learn more about what Bark Wallet can do and how it was built: image
Second's avatar
second 1 month ago
Bark went live with wallet apps ready to go on day one, built by bitcoiners who'd been working alongside us since long before launch. Noah, from the team behind Blixt, is the Ark wallet you'd expect from self-custodial wallet veterans, including some fancy Ark-infused Lightning addresses for static, free, offline payments. iOS and Android. Arké, from Christoph Ono, leverages years of the Bitcoin Design Community's open-source UX work, and pioneers brand-new UX for Ark. iOS only. Both apps are open source and available today. Full write-up: image
Second's avatar
second 1 month ago
SECOND IS NOW ON MAINNET. Bark, our implementation of the Ark protocol, is available for anyone to start making bitcoin payments. Included in the launch are our mainnet Ark server, the Bark SDK, and multiple wallets to try from day one. More details, and our vision for bitcoin payments, from Steven Roose: blog.second.tech/bark-now-on-bitcoin-mainnet/ image
Second's avatar
second 1 month ago
Recent Bark releases 0.1.4, 0.2.0, and 0.2.1 have been packed with updates. The highlights: Slim VTXO storage cuts wallet memory use 20–100x, real-time notifications replace polling so wallets update the instant something happens, and a single payment request now bundles Ark, Lightning, and on-chain into one QR. And to ensure Bark slots nicely into existing stacks, emergency exits and boarding can now both be driven by an external on-chain wallet with its own signer. Full changelog: second.tech/docs/changelog image
Second's avatar
second 1 month ago
Nested MuSig2 now has a Python reference implementation. Beulah Evanjalin built it on secp256k1lab with tests, examples, and protocol notes—generally in a good state for review and discussion. This is the blueprint that will inform the secp256k1-based C work.
Second's avatar
second 1 month ago
Barkd is what you run when you want to enable bitcoin payments server-side. On a standard cloud VM, the provider, hypervisor, and co-tenants can theoretically read your signing keys from memory. We decided to run some tests to see if TEEs were the solution. Intel SGX was a dead end. AWS Nitro Enclaves worked but needed excessive custom plumbing. Azure's confidential VMs seemed to be the sweet spot, achieving the convenience of a hosted wallet while minimizing trust in the host. image
Second's avatar
second 2 months ago
image Small but mighty changelog for 0.1.3. Bark now ships an IndexedDB StorageAdaptor—the missing piece for browser-based wallets. Combined with the WASM and gRPC-web support from 0.1.0, you can now build Ark wallets that run entirely in the browser with persistent state. Bark can now also connect to access-controlled Ark servers via bearer tokens. You know what this means. 😉 Full release notes available at the usual place: second.tech/docs/changelog
Second's avatar
second 3 months ago
Double changelog today for bark-0.1.0 (you know we’re getting closer to mainnet when the “beta” tag is dropped!). Highlights include event-driven notifications replacing polling, a fee estimation API for all operation types, Tor connectivity, barkd security hardening with auth tokens and CORS, HTLC preimage recovery from on-chain exits, and WASM compilation for browser-based Ark wallets. Full changelog: second.tech/docs/changelog image
Second's avatar
second 3 months ago
Nice one AJ Towns. Your signet reorg simulations caught a nasty bug lurking in unusually deep reorgs. Thank you for passively torturing our code with edge cases 👍
Second's avatar
second 3 months ago
"This was a genuinely fun build. The Bark integration was way smoother than I expected going in. Being able to accept Lightning payments without running my own node, and having native Ark payments work alongside that, made the whole payment layer surprisingly simple to wire up." - PiHiker, ArkAPI dev Cool new project for charging for API calls:
Second's avatar
second 4 months ago
We caught a capacity overflow bug in Bark before it ever hit a user—thanks to the fuzz testing @luca0x46 has been running around the clock. A malformed VTXO could have requested an arbitrary vec size during deserialization, triggering a panic. Now it's patched. Bark's client-server architecture means the server has to gracefully handle anything thrown at it—malformed VTXOs, malicious client requests, unexpected edge cases. Fuzzing helps make sure the server stays up and keeps serving rounds no matter what comes in. The vec allocation bug is a good example of something easy to miss in review—stable Rust doesn't yet support try_with_capacity, so the bounds check has to be done manually. Our first fuzz target was a straightforward deserialize/serialize pass, and it surfaced the issue immediately. The fuzzer runs 24/7 now, with minimized corpora pushed to our bark-qa repo alongside test vectors used throughout Bark's development. More targets coming—serialization/deserialization expansions first, then method-level fuzz targets. Full writeup: image
Second's avatar
second 4 months ago
Bark's Rust API docs are live on docs(dot)rs. `Wallet` is the central entry point—create, sync, inspect VTXOs, pay Lightning invoices, refresh in rounds, exit unilaterally. All from one struct.
Second's avatar
second 4 months ago
It's probably going to be a process of trial and error to find the optimal refresh strategy for users on Ark. Bark lets each wallet dev implement their own VTXO refresh strategy—set when VTXOs should be auto-refreshed based on expiry, size, or exit cost: image
Second's avatar
second 4 months ago
Bark's `Wallet` struct is the single entry point for Ark, Lightning, and on-chain payments. Create one with a mnemonic + sqlite + server URL and you're transacting. image
Second's avatar
second 4 months ago
The liquidity fee model in Ark is time-based: refreshing a VTXO costs more the further it is from expiry. This creates natural incentives to refresh closer to deadline rather than early.
Second's avatar
second 4 months ago
On-chain payments on Bark no longer happen in rounds. They're now instant, kind of like Ark-to-onchain swaps. This makes them more expensive than before, but the upside is that they're now broadcast immediately (more intuitive UX).