Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ERC-7751: Move to Review #690

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ERCS/erc-7751.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Wrapping of bubbled up reverts
description: Handling bubbled up reverts using custom errors with additional context
author: Daniel Gretzke (@gretzke), Sara Reynolds (@snreynolds), Alice Henshaw (@hensha256), Marko Veniger <[email protected]>, Hadrien Croubois (@Amxx)
discussions-to: https://ethereum-magicians.org/t/erc-7751-wrapping-of-bubbled-up-reverts/20740
status: Draft
status: Review
type: Standards Track
category: ERC
created: 2024-08-06
Expand Down Expand Up @@ -46,13 +46,13 @@ This ERC does not introduce any backwards incompatibilities. Existing contracts
## Test Cases

```solidity
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: CC0-1.0
pragma solidity 0.8.26;

contract Token {
mapping(address => uint256) public balanceOf;

event Transfer(address indexed sender, address indexed recipient, uint amount);
event Transfer(address indexed sender, address indexed recipient, uint amount);

function transfer(address to, uint256 amount) external returns (bool) {
require(balanceOf[msg.sender] >= amount, "insufficient balance");
Expand Down
Loading