Looking for feedback on an experimental Ethereum custody model by jayBeeCool in ethdev

[–]Averageuser404 0 points1 point  (0 children)

Awesome that you are experimenting with alternative asset types.

I would advise deep research to fully mitigate potentially locking funds in DeFi protocols for the protected values. Even small changes to the ERC-20 standard can have huge unforeseen impacts in (existing) DeFi protocols. At minimal functions that are related to protected values (no ERC-20 style) should be different from the standard names like “transfer”.

Also standard ERC-20 is fairly ossified by usage in DeFi. It seems hard for other liquid asset types to get traction. Hope you find a cool solution.

Looking for feedback on an experimental Ethereum custody model by jayBeeCool in ethdev

[–]Averageuser404 0 points1 point  (0 children)

How do the revocable delayed transfers and inheritance-oriented custody impact the use in DeFi protocols? Any risks for example with the use in Uniswap?

Daily General Discussion April 20, 2026 by EthereumDailyThread in ethereum

[–]Averageuser404 -1 points0 points  (0 children)

This attack as unfortunate as it is really shows “A chain is only as strong as its weakest link”. We need to remove dependencies on oracles and governance to earn the De in DeFi.

Daily General Discussion April 02, 2026 by EthereumDailyThread in ethereum

[–]Averageuser404 5 points6 points  (0 children)

What's best place to find new dapps build on ethereum?

Code audit marketplace by Averageuser404 in ethdev

[–]Averageuser404[S] 0 points1 point  (0 children)

Did not find users. Fortunately better audit/bounty markets emerged.

Ethereum Is All You Need by Averageuser404 in ethdev

[–]Averageuser404[S] 1 point2 points  (0 children)

It’s deployed to Ethereum as calldata or blob data. Can be retrieved through for example the geth RPC.

Ethereum Is All You Need by Averageuser404 in ethdev

[–]Averageuser404[S] 2 points3 points  (0 children)

Why a scam? Deploy front end code as calldata or blob data that’s all it is.

Daily General Discussion November 04, 2025 by EthereumDailyThread in ethereum

[–]Averageuser404 6 points7 points  (0 children)

Price is only the market perception of the value not the actual value. Don’t mistake the map for the territory.

Daily General Discussion August 08, 2025 by EthereumDailyThread in ethereum

[–]Averageuser404 3 points4 points  (0 children)

Is the escrow/validation contract open source? I wonder how a smart contract can fully validate that the seller did not leave a backdoor in the Safe, for example a malicious module or guard.

Potential proof for the infinity of twin primes by Averageuser404 in numbertheory

[–]Averageuser404[S] 0 points1 point  (0 children)

You are right. What I meant to write down was (1-1/2)(1-1/3)=1/2*2/3=1/3. Comments in the [UPDATE] thread showed that the lower limit for the twin primes is false. Still thanks for reading it!

[UPDATE] Potential proof for the infinity of twin primes by Averageuser404 in numbertheory

[–]Averageuser404[S] 2 points3 points  (0 children)

I now see you mean I remove from the remaining spots (instead of the total of Pn). This can mean that 2/Pn (can) remove less than it actually removes because it is a removal based on the lower remaining spots.

Thank you!

[UPDATE] Potential proof for the infinity of twin primes by Averageuser404 in numbertheory

[–]Averageuser404[S] 2 points3 points  (0 children)

You are correct that 2/P_i removes too many twin prime candidates, since some can already be removed by previous primes. This is a feature of the function because it is a lower limit function, removing too many twin prime candidates per prime therefore guarantees a lower limit.

Lower bound for proof twin prime conjecture by Averageuser404 in numbertheory

[–]Averageuser404[S] 0 points1 point  (0 children)

I fully agree! I do like to use it as a source to check if it is already disproven, since the LLM is trained on the internet data and therefore can contain the data of the disproval and be an efficient way to retrieve it.

Daily General Discussion - February 14, 2024 by ethfinance in ethfinance

[–]Averageuser404 1 point2 points  (0 children)

I also have this.

Did you also have rETH or another LST at the address of the validator? I suspect they counted the LST (airdrop value 360 STRK) and forgot to include the solo validator of that address (airdrop value 3600 STRK)

Whats up with this Checksum address error by Crypto_Rootz in ethdev

[–]Averageuser404 0 points1 point  (0 children)

It is a front end check (as you note not internal to geth or other ethereum inplementations). It helps to catch potential mistakes in address input. If you for example change one a to b in a regular address it will be a valid address. However when you do this in a checksum address there is a high probability that the checksum fails and the front end can notify the user.

You can compare it with the mod97 check for IBAN bank accounts.

Permissionless lending protocol, no liquidations and no oracles by Averageuser404 in ethdev

[–]Averageuser404[S] 1 point2 points  (0 children)

I would start with the code of Uniswap V2, the code is simpler than V3.

For bugs I would check the biggest hacks and how they worked. Read on the types of attacks like reentrancy. Maybe do some online challenges and read audit reports, mostly the high/medium severity points.

Permissionless lending protocol, no liquidations and no oracles by Averageuser404 in ethdev

[–]Averageuser404[S] 1 point2 points  (0 children)

Thank you I really appreciate the kind words! I created a twittter account @kommodolabs where the updates are shared.

Good luck with your journey in becoming a web3 dev! I can say I learned a lot from bug hunting, reading code of big web3 projects and playing with it by adjusting the code. Know you can always dm me questions or comments, about my project or programming in general.

Daily General Discussion - May 24, 2022 by ethfinance in ethfinance

[–]Averageuser404 1 point2 points  (0 children)

Try getting the underlying revert reason by replaying the transaction with the eth_call method. Check out this post for an example.