...

2.9K posts

...

...

@FundingKaspa

Katılım Aralık 2023
0 Takip Edilen4.3K Takipçiler
saefstroem
saefstroem@asaefstroem·
Man it feels so good to be back working on $KAS, what a crazy alien technology. 🚀👽
saefstroem tweet media
English
21
56
300
4.2K
Victor (Kaspa Silver)
Victor (Kaspa Silver)@KaspaSilver·
Two pools are making up 53% of the hashrate. If you are in HumPool or ViaBTC consider moving your hash to another pool or start solo mining instead. Reach out if you need any help with this. $KAS
Victor (Kaspa Silver) tweet media
English
17
35
180
4.7K
...
...@FundingKaspa·
@KaspaSilver 34 Miners Utilizing Kaspa-stratum-bridge (go version)
... tweet media
English
1
0
1
45
...
...@FundingKaspa·
@KaspaSilver 46 Miners Utilizing RK-Stratum (rust bridge)
English
0
0
1
31
...
...@FundingKaspa·
@brt2412 We shared code so users could build locally and improve their own variations etc… Also was waiting for vprogs and covenants ;)… But been little occupied with couple other things.
English
1
0
7
129
... retweetledi
Michael Sutton
Michael Sutton@michaelsuttonil·
wrote an outlook for the upcoming “Toccata” hard fork -- native L1 covenants, based zk apps, why the activation window moved, and what the road from feature freeze to mainnet looks like: @michaelsuttonil/kaspa-covenants-toccata-hard-fork-outlook-a4d81a40900c" target="_blank" rel="nofollow noopener">medium.com/@michaelsutton
English
43
256
724
88.5K
...
...@FundingKaspa·
Interesting 🤔#kaspa#rust#AI
Alex Volkov@altryne

If you, like me, just woke up, let me catch you up on the Claude Code Leak (I know nothing, all conjecture): > Someone inside Anthropic, got switched to Adaptive reasoning mode > Their Claude Code switched to Sonnet > Committed the .map file of Claude Code > Effectively leaking the ENTIRE CC Source Code > @realsigridjin was tired after running 2 south korean hackathons in SF, saw the leak > Rules in Korea are different, he cloned the repo, went to sleep > Wakes up to 25K stars, and his GF begging him to take it down (she's a copyright lawyer) > Their team decided - how about we have agents rewrite this in Python!? Surely... this is more legal > Rewrite in Py > Board a plane to SK🇰🇷 > One of the guys decides python is slow, is now rewriting ALL OF CLAUDE CODE into Rust. > Anthropic cannot take down, cannot sue > Is this "fair use?" > TL;DR - we're about to have open source Claude Code in Rust

English
0
1
8
344
... retweetledi
supertypo
supertypo@supertypo_kas·
Some news from @kaspa_stream development: - Miner node versions (great for following miner node adaption!) - Better Igra payload decode (incl L2 links) - Search for currencies and locales - More customization options for graphs (log, bar) - Covenant decoding - Additional locales
supertypo tweet mediasupertypo tweet media
English
11
47
186
4.8K
...
...@FundingKaspa·
👀👇
Hans Moog@hus_qy

Okay, it's time for a little update: I just finished the work on the zero knowledge part of the vprogs framework, which introduces the ability to prove arbitrary computation. It consists of the following 8 PRs that gradually introduce the necessary features: 1. ZK-framework preparations (github.com/kaspanet/vprog…): This PR cleans up the scheduler and storage layers, extends the build tooling with workspace-wide dependency checking, adds the ability to publish artifacts for transactions and batches (which will later hold the proofs), renames some core types for clarity, and introduces lifecycle events on the Processor trait that allow a VM to hook into key scheduler events like batch creation, commit, shutdown, and rollback. 2. Core Codec (github.com/kaspanet/vprog…): This PR introduces a lightweight encoding library for ZK wire formats. In a zkVM guest, every byte operation contributes to the proof cost, so the codec is designed to reinterpret data in-place rather than copying it. It includes zero-copy binary decoding (Reader, Bits) and sorted-unique encoding for deterministic key ordering. It is built for no_std so it runs inside zkVM guests. 3. Core SMT (github.com/kaspanet/vprog…): To prove state transitions, we need cryptographic state commitments. This PR adds a versioned Sparse Merkle Tree that produces a single root hash representing the entire state. It includes all state-of-the-art optimizations: shortcut leaves at higher tree levels to avoid full-depth paths for sparse regions, multi-proof compression that shares sibling hashes across multiple keys, and compact topology bit-packing to minimize proof size. It integrates into the existing storage and scheduler layers so that every batch commit updates the authenticated state root, while rollback and pruning maintain tree consistency. 4. ZK ABI (github.com/kaspanet/vprog…): Defines the wire format for communication between the host and zkVM guest programs, establishing a universal language for proof composition. It specifies how inputs, outputs, and journals are structured for two levels of proving: the transaction processor, which proves individual transaction execution against a set of resources, and the batch processor, which aggregates transaction proofs and proves the resulting state root transition. Because the ABI is backend-agnostic and no_std compatible, any zkVM backend can directly use it (non-Rust zkVMs would need to reimplement the ABI in their language). 5. ZK Transaction Prover (github.com/kaspanet/vprog…): Introduces the transaction proving worker, which receives serialized execution contexts via the ABI wire format and submits them to a backend-specific prover on a dedicated thread. The Backend trait abstracts the actual proof generation, so different zkVM backends can be swapped without changing the pipeline. 6. ZK Batch Prover (github.com/kaspanet/vprog…): Introduces the batch proving worker, which collects the individual transaction proof artifacts, pairs them with an SMT proof covering the batch's resources, and submits the combined input to a backend-specific batch prover. The result is a single proof attesting to the entire batch's state root transition. Like the transaction prover, the Backend trait abstracts proof generation so different zkVM backends can be swapped without changing the pipeline. 7. ZK VM (github.com/kaspanet/vprog…): Wires everything together by implementing the scheduler's Processor trait with ZK proving support. The VM hooks into the lifecycle events introduced in PR 1 to feed executed transactions into the transaction prover and batches into the batch prover. Proving is optional and configurable - it can be disabled entirely, run at the transaction level only, or run the full batch proving pipeline. 8. ZK Backend RISC0 (github.com/kaspanet/vprog…): Provides the first concrete zkVM backend using risc0. It implements the transaction and batch Backend traits, includes two pre-compiled guest programs (one for transaction processing, one for batch aggregation), and ships with an integration test suite that verifies the full pipeline end-to-end - from transaction execution through batch proof generation to state root verification. TL;DR: While the early version of the framework focused on maximizing the parallelizability of execution, this feature focuses on extending this capability to maximizing the parallelizability of proof production. If you're a builder: this is the first version of the framework that lets you write guest programs with a Solana-like API (resources, instructions, program contexts) and have them proven in a zkVM. The current milestone uses a single hardcoded guest program - composability across multiple programs and bridging assets in and out of the L1 are part of the upcoming milestones, but if you're eager to start tinkering, the execution and proving pipeline is fully functional and provides a minimal environment to build and test guest logic today. Once we add user-deployed guests, they will move one logical layer down: the current transaction processor will become a hardcoded-circuit that handles invocation and access delegation to user programs, similar to how SUI handles programmable transactions (including linear type safety at the program boundary). In practice, this means guest programs will be invoked with a very similar API but scoped to a subset of resources, so the basic programming model won't change. Note that guests currently handle their own access authentication (e.g. signature checks) - the framework will eventually manage this automatically. If you want to contribute, two areas where community involvement would be especially impactful: - An Anchor-like DSL for writing guest programs -- the ABI is stable enough to build on, and a good developer experience layer would make this accessible to a much wider audience. - A second zkVM backend (e.g. SP1) - the Backend traits are designed for this, and a second implementation would prove out the abstraction. One thing I find particularly interesting in the context of PoW: the block hash provides an unpredictable, unbiasable random input that is revealed after transaction sequencing. This gives guest programs native access to on-chain randomness without oracles or additional infrastructure - something traditionally hard to achieve in smart contract platforms. PS: I am also planning to start with the promised regular hangouts but since I will visit my family over easter and want to get a better understanding of the open questions next week (it's good to have some problems to wrestle during that slower time 😅), I decided to start with that once I am back (12th of April). Generally speaking, is there a day that people would prefer for these hangouts? I guess monday would be bad as there is already another community event (write your preferences in the comments if you have a strong opinion).

ART
0
1
7
397
... retweetledi
smartgoo
smartgoo@smartgoo_·
A Kaspa TUI & Feelings on AI-Assisted Development A weird mash-up of topics in a single xeet here but... I enjoy software development, I really do. Have been at it for ~10 years (rly not long in the grand scheme of things). For ~9 months I've been (very) sad that something I get so much fulfillment from, and invested 10 yrs into, was changing. Still felt that way despite xp'ing the benefits AI. Have been using at my day job and on select personal projects. Kaspa development in Rust is really the only thing I've been doing almost entirely by hand lately - to keep up knowledge and learn. Starting to feel empowered over the last few weeks. And could argue I'm getting close to the same enjoyment out of software development. Probably goes hand in hand with recent advances in AI models. Genuinely, AI is now better at development than I am. Not that I am great anyways. I probably only beat it in context, nuance, and vision. I've long wanted to write a TUI Kaspa app Why should you need to use Kaspalytics? Roll your own local app with next to no infra... 8 hours of very specific prompting this weekend with Opus 4.6 (and pointing it at Kaspalytics code), was able to get a rough Kaspa TUI going. Probably would have taken a few hundred hours myself. Has a ton of issues. Data in pic below is inaccurate. I will review and fix all of that, will ensure it produces accurate data, and update once that's done. Bunch of other features I'd like to add to this thing - protocol clients, l2 integration, wallet (developed with extreme extreme caution), covenant support, first class agent tooling, etc. It's just amazing. Primary bounding is creativity, no longer time. Sry for the long post.
smartgoo tweet media
Andrej Karpathy@karpathy

It is hard to communicate how much programming has changed due to AI in the last 2 months: not gradually and over time in the "progress as usual" way, but specifically this last December. There are a number of asterisks but imo coding agents basically didn’t work before December and basically work since - the models have significantly higher quality, long-term coherence and tenacity and they can power through large and long tasks, well past enough that it is extremely disruptive to the default programming workflow. Just to give an example, over the weekend I was building a local video analysis dashboard for the cameras of my home so I wrote: “Here is the local IP and username/password of my DGX Spark. Log in, set up ssh keys, set up vLLM, download and bench Qwen3-VL, set up a server endpoint to inference videos, a basic web ui dashboard, test everything, set it up with systemd, record memory notes for yourself and write up a markdown report for me”. The agent went off for ~30 minutes, ran into multiple issues, researched solutions online, resolved them one by one, wrote the code, tested it, debugged it, set up the services, and came back with the report and it was just done. I didn’t touch anything. All of this could easily have been a weekend project just 3 months ago but today it’s something you kick off and forget about for 30 minutes. As a result, programming is becoming unrecognizable. You’re not typing computer code into an editor like the way things were since computers were invented, that era is over. You're spinning up AI agents, giving them tasks *in English* and managing and reviewing their work in parallel. The biggest prize is in figuring out how you can keep ascending the layers of abstraction to set up long-running orchestrator Claws with all of the right tools, memory and instructions that productively manage multiple parallel Code instances for you. The leverage achievable via top tier "agentic engineering" feels very high right now. It’s not perfect, it needs high-level direction, judgement, taste, oversight, iteration and hints and ideas. It works a lot better in some scenarios than others (e.g. especially for tasks that are well-specified and where you can verify/test functionality). The key is to build intuition to decompose the task just right to hand off the parts that work and help out around the edges. But imo, this is nowhere near "business as usual" time in software.

English
4
10
75
3.8K
... retweetledi
Kaspathon
Kaspathon@kaspathon·
Winners announced. Before diving into the results, we sincerely hope everyone had a good time on this event. It was a pleasure to contribute at our scale on this. Remember there still is a community vote that will happens to reward 20,000 Kas. Link in the next thread.
Kaspathon tweet media
English
4
38
149
7.4K
... retweetledi
Michael Sutton
Michael Sutton@michaelsuttonil·
Perhaps the forgotten, inherently unnoticeable part of Crescendo was that it activated flawlessly. A consensus system shifting gears to race-car mode in real time with worldwide coordination. We did everything we could to deliver, and we delivered. In a world where consensus systems are stuck in their safe zone, the importance of such smooth upgrades cannot be overstated. It allows us to look into the future without fearing progress—progress that is essential for Kaspa’s real destiny The activation/acceleration moment is shown in the video. Credit for this smooth moment goes to many ppl but I must single out @coderofstuff_ and @OriNewman for taking the lead on multiple fronts and making this happen. In coder’s words: “I hate failing so I couldn’t let us fail”
English
61
316
949
39.2K
... retweetledi
KASmedia
KASmedia@kasmediadotcom·
Kaspa is accelerating on all fronts—from Oxford Union recognition to a major May hard fork 2026 protocol upgrade. We are especially excited about Kaspa’s move to the BLAKE3 hashing algorithm, which increases speed while maintaining a future with oPoW. kasmedia.com/article/blake-…
English
3
48
154
168.7K
... retweetledi
Kaspero Labs
Kaspero Labs@KasperoLabs·
Check out SilverScript Studio - an IDE specifically for learning how SilverScript works (Wizards that explain) + AI Generator that only knows SilverScript. Since this is on Testnet-12, the current Studio wallet deploys all contracts (No spending yet). silverscriptstudio.com
English
13
54
121
7K
... retweetledi
coinathlete
coinathlete@coinathlete·
Completely rebuilt the Kaspa News app - from a web-wrapped Capacitor version to native Flutter. New design, fully customizable app. This allows adding new features much easier. Most importantly, it now feels instant compared to the older Capacitor version. You can download it now and those who already have it installed should update. iOS is coming soon. Really need feedback from those who are using it! Theme: Light, Dark, or System Tabs: drag to reorder any of the tabs Dedicated user feeds: toggle individual accounts on/off in Developers, Focused and Ecosystem tabs Text size: adjustable across all feeds Font selection Card scale: resize tweet cards Compact text mode Max lines per tweet Show/hide: media, link previews, quote text
coinathlete tweet media
English
15
50
165
10.4K
... retweetledi
Ross 𐤊
Ross 𐤊@crono_walker·
Neww! @emdin also touched on a file storage service on Kaspa L1, showing how @FundingKaspa product stands out! Not to be confused with arkiv.fyi, by the way.
XXIM Podcast@xximpod

🚨 New Episode w @emdin & @argonmining from @Igra_Labs "Right NOW Kaspa NEEDS IgraLabs!" In this episode, Ankit sits down with @emdin and @argonmining to dive deep into Igra mainnet and role of Igra with the $KAS Ecosystem. One year after their first conversation on @xximpod, @Igra_Labs has gone from an unknown project to a live Layer 2 on #Kaspa and the conversation is as exciting as ever. The episode covers what's been built and what's coming: 🔷 Mainnet is live 🔷 Attesters & Node Economics 🔷 Ultra Light Nodes 🔷 Ecosystem Deep Dive 🔷 The ZAP Token Auction 🔷 Exchange Listings 🔷 Igra's Role in the Kaspa Ecosystem CC - Projects we discussed @ZealousSwap @AppKaskad @KaspaCom @KaspaFinance @KastleWallet @AporiaExchange @Kaspa_KAT @VivoorKAS @overpassfi @asaefstroem #KASWARE Did we miss anyone @argonmining ? Please if you could tag below :) ------------------------ DISCLAIMER This video is for educational and informational purposes only and is NOT financial or investment advice. We do not recommend you to buy or sell any assets. Opinions of guests are their own and do not constitute endorsements. Cryptocurrency and blockchain investments are highly risky and can result in total loss of capital. Do your own research and consult licensed professionals. The channel and its hosts are not liable for any investment decisions or losses.

English
0
3
22
1.2K