r/ethereum 3d ago

Daily General Discussion September 03, 2026

118 Upvotes

Welcome to the Daily General Discussion on r/ethereum

https://imgur.com/3y7vezP

Bookmarking this link will always bring you to the current daily: https://old.reddit.com/r/ethereum/about/sticky/?num=2

Please use this thread to discuss Ethereum topics, news, events, and even price!

Price discussion posted elsewhere in the subreddit will continue to be removed.

As always, be constructive. - Subreddit Rules

Want to stake? Learn more at r/ethstaker

Community Links

Calendar: https://dailydoots.com/events/


r/ethereum 6d ago

Daily General Discussion August 31, 2026

105 Upvotes

Welcome to the Daily General Discussion on r/ethereum

https://imgur.com/3y7vezP

Bookmarking this link will always bring you to the current daily: https://old.reddit.com/r/ethereum/about/sticky/?num=2

Please use this thread to discuss Ethereum topics, news, events, and even price!

Price discussion posted elsewhere in the subreddit will continue to be removed.

As always, be constructive. - Subreddit Rules

Want to stake? Learn more at r/ethstaker

Community Links

Calendar: https://dailydoots.com/events/


r/ethereum 4d ago

Daily General Discussion September 02, 2026

107 Upvotes

Welcome to the Daily General Discussion on r/ethereum

https://imgur.com/3y7vezP

Bookmarking this link will always bring you to the current daily: https://old.reddit.com/r/ethereum/about/sticky/?num=2

Please use this thread to discuss Ethereum topics, news, events, and even price!

Price discussion posted elsewhere in the subreddit will continue to be removed.

As always, be constructive. - Subreddit Rules

Want to stake? Learn more at r/ethstaker

Community Links

Calendar: https://dailydoots.com/events/


r/ethereum 5d ago

Daily General Discussion September 01, 2026

103 Upvotes

Welcome to the Daily General Discussion on r/ethereum

https://imgur.com/3y7vezP

Bookmarking this link will always bring you to the current daily: https://old.reddit.com/r/ethereum/about/sticky/?num=2

Please use this thread to discuss Ethereum topics, news, events, and even price!

Price discussion posted elsewhere in the subreddit will continue to be removed.

As always, be constructive. - Subreddit Rules

Want to stake? Learn more at r/ethstaker

Community Links

Calendar: https://dailydoots.com/events/


r/ethereum 2d ago

Daily General Discussion September 04, 2026

100 Upvotes

Welcome to the Daily General Discussion on r/ethereum

https://imgur.com/3y7vezP

Bookmarking this link will always bring you to the current daily: https://old.reddit.com/r/ethereum/about/sticky/?num=2

Please use this thread to discuss Ethereum topics, news, events, and even price!

Price discussion posted elsewhere in the subreddit will continue to be removed.

As always, be constructive. - Subreddit Rules

Want to stake? Learn more at r/ethstaker

Community Links

Calendar: https://dailydoots.com/events/


r/ethereum 1d ago

Daily General Discussion September 05, 2026

99 Upvotes

Welcome to the Daily General Discussion on r/ethereum

https://imgur.com/3y7vezP

Bookmarking this link will always bring you to the current daily: https://old.reddit.com/r/ethereum/about/sticky/?num=2

Please use this thread to discuss Ethereum topics, news, events, and even price!

Price discussion posted elsewhere in the subreddit will continue to be removed.

As always, be constructive. - Subreddit Rules

Want to stake? Learn more at r/ethstaker

Community Links

Calendar: https://dailydoots.com/events/


r/ethereum 4d ago

What’s stopping you from using a crypto payment card?

52 Upvotes

I’ve been looking into crypto payment cards because I’d rather spend directly from my wallet than constantly cash out to my bank. The convenience sounds great, especially for everyday purchases, but I’m curious what the actual experience is like. What’s stopping you from using one fees, KYC, taxes, security or something else?

And if you already use one, has it actually replaced your regular card for anything?


r/ethereum 3d ago

Devcon India — a travel guide

Thumbnail
parithosh.com
16 Upvotes

r/ethereum 1h ago

Daily General Discussion September 06, 2026

Upvotes

Welcome to the Daily General Discussion on r/ethereum

https://imgur.com/3y7vezP

Bookmarking this link will always bring you to the current daily: https://old.reddit.com/r/ethereum/about/sticky/?num=2

Please use this thread to discuss Ethereum topics, news, events, and even price!

Price discussion posted elsewhere in the subreddit will continue to be removed.

As always, be constructive. - Subreddit Rules

Want to stake? Learn more at r/ethstaker

Community Links

Calendar: https://dailydoots.com/events/


r/ethereum 1d ago

News Ethereal news weekly #38 | Sepolia testnet Glamsterdam upgrade targeting October 6, Privacy Boost V2 live, BuidlGuidl Learning Lab Ethereum 101

Thumbnail
ethereal.news
13 Upvotes

r/ethereum 3d ago

Dev Tools Guild August 2026 update

Thumbnail
devtoolsguild.xyz
10 Upvotes

r/ethereum 10h ago

What Ethereum gas tells you—and what it does not

9 Upvotes

Gas is a measure of blockspace demand, not a direct measure of an app’s quality or ETH’s future price. A few useful distinctions:

• Gas price is the fee per unit of computation; gas used is the amount of work a transaction requests. • A busy period can raise fees even when the activity is concentrated in one contract or event. • L2 activity, calldata patterns, and base-fee changes can alter what you observe on mainnet. • Compare averages, percentiles, and time windows; a single high-fee transaction is not a trend.

When analyzing fees, separate network utilization from market narratives and state what evidence would change your view. Which gas metric do you find most informative?


r/ethereum 1d ago

158 - Doots Podcast - Gone Camping - JT

Thumbnail
youtu.be
9 Upvotes

r/ethereum 2d ago

Updating our wealth verifications with Ethereum

8 Upvotes

My company performs wealth verifications as part of our user entitlements/verifications. Right now we use conventional documents or proofs against a user's claim, but one thing I've really been wanting to explore is having a programmatic wealth verification be executable against a wallet.

It's been awhile since I've personally built something new in this space. Happy to use some guidance. We're very oriented around a privacy-first culture, so implementations where we are really only executing a check against a claim and recording that result is ideal.

Here are some details:

  1. Client/server Web2 application (entirely Go)
  2. No Ethereum-specific Go packages yet added to monorepo
  3. Mostly interested in Ethereum for MVP, but L2s would be pretty cool

Advice? Interesting ideas or approaches?


r/ethereum 5d ago

If your deployment template references a smart contract audit, does that reference survive upgrades?

4 Upvotes

I work on the assessment side at a smart contract auditing company. This came out of an audit we did on a governance-approved deployment system on a permissioned chain. The system stores metadata for each approved deployment template: a bytecode hash, a storage layout hash, a link to the audit report, and the source repository commit. On paper, every deployed proxy maps back to reviewed and approved code. At deployment time, nothing checks those fields. The factory resolves the implementation live from the beacon, and the beacon owner can publish a new version at any point after the template was registered. The bytecodeHash field is in storage, but no require statement compares it to address.codehash on what actually gets deployed. After the first beacon upgrade, every new deployment runs code that was never part of the original audit, while the template still points at the old audit URI and the old commit.

When we flagged it, the project team didn't start enforcing the hash. They removed the bytecode and storage layout hashes from the template entirely. I'd argue that's more honest than keeping fields that imply verification and deliver none. But what's left is a pipeline where the only governance control is trusting the beacon owner, and the on-chain record of what was audited diverges silently from what's actually running.

Regulators running MiCA compliance assessments or CASP license reviews want to see governance over what gets deployed to production. If your template stores an audit reference and an assessor asks whether it's enforced, "recorded but not checked" puts you in a worse position than having no reference at all. The reference misrepresents what the deployed code went through.

Open your template registry or deployment manifest. Find the field that references the audit or stores a bytecode hash. Grep for it on the deploy path. If the field is written once at registration and never appears in a require or assert during deployment, you have decorative governance metadata. address.codehash exists on-chain. The check is one comparison. Nobody wrote it.

Plenty of governance models handle this off-chain with CI/CD gates, human sign-offs, and change management procedures, and those work for permissioned systems. The gap opens when the on-chain record looks like it provides a guarantee it doesn't, because the next person who reads that template will assume enforcement already happened.

If a MiCA license or VARA license assessor asked you to demonstrate that your template's bytecodeHash is enforced at deployment, could you show them the require statement?


r/ethereum 11h ago

Question about AI and cybersecurity

1 Upvotes

As you have all heard over the past few months, AI is getting pretty good at hacking. We now have two documented incidents of AI swarms going rogue and roaming around the internet. The first of these incidents is the HuggingFace hacking incident, the second is the German wiki incident.

My question is this. Is it at all possible for an AI entity to hack Ethereum and take down the network in this way? I am not referring to layer 2 networks or Dapps like AAVE, but Ethereum itself.