r/ethdev

▲ 1 r/ethdev

Need a dev to figure out some things in a block chain

hey i really need some help to figure out a mining system of a new block chain which is getting hard for me to figure out plz cna any one help me out with it u can write to me in inbox thanks

reddit.com
u/BraveJellyfish5302 — 31 minutes ago
▲ 7 r/ethdev

This caught my attention today

Before work, I came across a post from a guy, he was talking about a new way to make a bit of money

In about two hours, I managed to make $89, those who have more time can make more

He left the guide in a pinned post on his profile, u/totoer008, just click to check it out

It worked for me, so I decided to share, maybe it’ll help someone else too

reddit.com
u/Burgersauropod — 9 hours ago
▲ 5 r/ethdev

Why are we still copy-pasting 40-character wallet addresses in 2026?

Why are we still copy-pasting 40-character wallet addresses in 2026?

Idea: you do a small test transfer once → both wallets get a shared avatar/character. Next time you send, you just recognize the person visually instead of relying on the address.

Kind of like “pairing” wallets.

Would this actually reduce mistakes or scams, or is this unnecessary given things like ENS?

reddit.com
u/K-enthusiast24 — 23 hours ago
I built a Claude Code plugin that gives you 10 specialized AI agents for Ethereum dev — audit, TDD, deploy, gas optimization and more
▲ 1 r/ethdev

I built a Claude Code plugin that gives you 10 specialized AI agents for Ethereum dev — audit, TDD, deploy, gas optimization and more

Hey r/ethdev,

I've been building Ethereum contracts for a while and kept running into the same friction: auditing manually, remembering Slither/Mythril flags, writing tests before implementation (or forgetting to), and juggling gas optimization passes on top of deployment scripts.

So I built **eth-agents** — a Claude Code plugin that gives you a team of 10 specialized AI agents, each with a single job.

https://preview.redd.it/n32496iu05tg1.png?width=1339&format=png&auto=webp&s=83c17b5fcc2d55d32c8a4522f42c621f5f917da0

---

**What it solves:**

- You forget to run a security audit → `"audit this contract"` triggers a full pipeline: Slither scan, manual pattern analysis, and if it finds Critical/High, a security specialist writes PoC exploit tests automatically

- TDD is painful → `"write tests first"` kicks off a strict loop: unit-test-engineer writes failing tests, contract-developer implements until they pass, max 5 iterations

- Gas optimization is tedious → `"optimize gas"` produces a before/after snapshot, applies one category at a time, and only hands off if the diff is positive

- Mainnet deploy anxiety → deploy always halts for your explicit confirmation before touching mainnet, no exceptions

---

**How it works:**

You describe what you want in plain English. An orchestrator agent routes your intent to the right pipeline. Agents coordinate automatically. You see progress in the Claude Code status bar.

```

you › audit this contract for reentrancy

⟠ orchestrator → routing to audit pipeline

⟠ auditor → static analysis + Slither scan

HIGH-1: releasePrize — winner not validated

HIGH-2: no ReentrancyGuard on external fns

⟠ security-specialist → PoC exploit simulation

audit-report.md written · 10 findings · remediation for each

```

**Token efficiency:** ~55% savings via model routing (Haiku for simple tasks, Sonnet for implementation, Opus for security), prompt caching, and per-agent output constraints.

**Zero config.** Works with Foundry and Hardhat. Install and go:

```bash

claude plugin install eth-agents

```

It's open source (MIT). Happy to answer questions.

https://cayocan.github.io/eth-agents/

---

reddit.com
u/False-Watch-6162 — 10 hours ago
What Caused the FTX Collapse and How Did It Shake the Crypto Market?
▲ 1 r/ethdev

What Caused the FTX Collapse and How Did It Shake the Crypto Market?

The collapse of FTX in late 2022 was a major turning point in the crypto market, and it’s a mix of poor management, risky financial practices, and lack of regulatory oversight. Here’s a clear breakdown:

1. What Caused the Collapse?

A. Misuse of Customer Funds

FTX, under Sam Bankman-Fried, reportedly used customer deposits to fund risky trades at Alameda Research, the trading firm he also controlled. Essentially, money that users thought was safely held on the exchange was being lent to a related entity without proper transparency.

B. Over-Leveraging and Risky Bets

Alameda Research reportedly took highly leveraged positions in volatile tokens. When markets turned down, they faced massive losses, which FTX had indirectly guaranteed because of the intermingled funds.

C. Lack of Oversight and Auditing

FTX didn’t have proper internal controls, audits, or regulatory supervision. This allowed mismanagement and liquidity issues to go unnoticed until the firm faced a sudden cash crunch.

D. The Trigger: Liquidity Crisis

In early November 2022, a CoinDesk report revealed a large portion of Alameda’s balance sheet was in FTT (FTX’s own token). This spooked investors and counterparties, leading to:

  • A mass withdrawal rush by FTX customers
  • Binance briefly exploring a bailout but backing out after due diligence
  • FTX quickly running out of liquid funds to honor withdrawals

E. Bankruptcy and Legal Fallout

FTX filed for Chapter 11 bankruptcy in November 2022. Sam Bankman-Fried was arrested and charged with fraud, mismanagement, and misleading investors and customers.

2. How It Impacted the Crypto Market

A. Market Value Crash

  • Bitcoin fell over 20% in the weeks after the collapse
  • Many mid-cap and DeFi tokens associated with FTX or Alameda suffered sharp price declines

B. Loss of Confidence

  • Investors became wary of centralized exchanges (CEXs)
  • DeFi projects that had ties to FTX or Alameda were heavily scrutinized
  • General trust in “too big to fail” exchanges was shaken

C. Regulatory Attention

  • U.S. Congress and SEC began considering stricter rules for crypto exchanges
  • Global regulators increased scrutiny on stablecoins, lending, and custodial platforms

D. Ripple Effect on Companies

  • Crypto firms that held FTT or had exposure to Alameda faced huge losses
  • Some exchanges paused withdrawals temporarily
  • Venture funds invested in crypto startups reassessed risk, slowing funding

E. Shift Toward Decentralization

  • Users began exploring DeFi protocols, self-custody wallets, and non-custodial platforms
  • Exchanges like Bitget, Binance, and Kraken highlighted transparency and solvency as competitive advantages

3. Lessons Learned

  1. Never assume customer funds are safe on exchanges
  2. Diversify holdings across wallets and platforms
  3. Transparency and audits matter more than hype
  4. Regulation is likely coming, so exchanges with stronger compliance survived better

The FTX collapse wasn’t just a company failure — it shook confidence in centralized crypto platforms and accelerated the market’s focus on risk management, transparency, and decentralization.

Source: https://www.bitget.com/academy/what-caused-ftx-collapse-and-crypto-market-impact

u/Infamous-Kingdom — 11 hours ago
▲ 1 r/ethdev

Should Peer-to-Peer Messaging Exist Inside Node Software, or Remain Fully External to Consensus Systems?

Some distributed system designs explore embedding lightweight messaging or chat functionality directly into node software, allowing peers to communicate within the same environment used for synchronization and validation.

At first glance, this appears beneficial for coordination and visibility, especially in smaller or dynamic networks. However, integrating communication into node architecture raises several structural and security questions.

From a design perspective, node software is typically expected to remain deterministic and narrowly scoped around consensus-critical operations. Introducing messaging layers blurs this boundary:

  • Even if messaging is not part of consensus, it may still influence node behavior indirectly (e.g., coordinated actions, shared signals between participants).
  • Additional message handling increases the attack surface, including risks such as spam, malformed payloads, or resource exhaustion.
  • Coupling communication with execution logic may reduce the isolation between deterministic processes and non-deterministic interaction layers.

At the same time, keeping communication entirely external introduces its own limitations:

  • Coordination becomes fragmented across separate platforms.
  • Nodes lose context-awareness of peer behavior or network conditions.
  • Operational visibility may decrease, particularly in smaller or experimental environments.

This leads to a broader architectural question:

>

And if such communication is introduced:

>

reddit.com
u/Adventurous_Chef2225 — 11 hours ago
▲ 1 r/ethdev

Open-sourcing a decentralized AI training network with on-chain verification : smart contracts, staking, and constitutional governance

We're open-sourcing Autonet on April 6 : a framework for decentralized AI model training and inference where verification, rewards, and governance happen on-chain.

Smart contract architecture:

Contract Purpose
Project.sol AI project lifecycle, funding, model publishing, inference
TaskContract.sol Task proposal, checkpoints, commit-reveal solution commitment
ResultsRewards.sol Multi-coordinator Yuma voting, reward distribution, slashing
ParticipantStaking.sol Role-based staking (Proposer 100, Solver 50, Coordinator 500, Aggregator 1000 ATN)
ModelShardRegistry.sol Distributed model weights with Merkle proofs and erasure coding
ForcedErrorRegistry.sol Injects known-bad results to test coordinator vigilance
AutonetDAO.sol On-chain governance for parameter changes

How it works:

  1. Proposer creates a training task with hidden ground truth
  2. Solver trains a model, commits a hash of the solution
  3. Ground truth is revealed, then solution is revealed (commit-reveal prevents copying)
  4. Multiple coordinators vote on result quality (Yuma consensus)
  5. Rewards distributed based on quality scores
  6. Aggregator performs FedAvg on verified weight updates
  7. Global model published on-chain

Novel mechanisms:

  • Forced error testing: The ForcedErrorRegistry randomly injects known-bad results. If a coordinator approves them, they get slashed. Keeps coordinators honest.
  • Dual token economics: ATN (native token for gas, staking, rewards) + Project Tokens (project-specific investment/revenue sharing)
  • Constitutional governance: Core principles stored on-chain, evaluated by LLM consensus. 95% quorum for constitutional amendments.

13+ Hardhat tests passing. Orchestrator runs complete training cycles locally.

Code: github.com/autonet-code Paper: github.com/autonet-code/whitepaper MIT License.

Interested in feedback on the contract architecture, especially the commit-reveal verification and the forced error testing pattern.

u/EightRice — 22 hours ago
TagSpace AMA with Fjord Foundry today at 10 AM UTC 

If you’ve got questions about the project, now’s the time.
▲ 0 r/ethdev

TagSpace AMA with Fjord Foundry today at 10 AM UTC If you’ve got questions about the project, now’s the time.

u/darkphantom13th — 13 hours ago
Week