From 4e33f4ca90bf49990ae9ee64334460e042b56df9 Mon Sep 17 00:00:00 2001 From: Witek Date: Wed, 17 Jul 2019 19:53:42 -0700 Subject: [PATCH] Automatically merged updates to draft EIP(s) 1761 (#2198) Hi, I'm a bot! This change was automatically merged because: - It only modifies existing Draft or Last Call EIP(s) - The PR was approved or written by at least one author of each modified EIP - The build is passing --- EIPS/eip-1761.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EIPS/eip-1761.md b/EIPS/eip-1761.md index 7b4057e1..7d7a5116 100644 --- a/EIPS/eip-1761.md +++ b/EIPS/eip-1761.md @@ -1,7 +1,7 @@ --- eip: 1761 title: ERC-1761 Scoped Approval Interface -author: Witek Radomski , Andrew Cooke , James Therien , Eric Binet +author: Witek Radomski , Andrew Cooke , James Therien , Eric Binet type: Standards Track category: ERC status: Draft @@ -48,14 +48,14 @@ interface ScopedApproval { The range is inclusive: _idStart, _idEnd, and all IDs in between have been added to the scope. _idStart must be lower than or equal to _idEnd. */ - event AddIdsToScope(uint256 indexed _idStart, uint256 indexed _idEnd, bytes32 indexed _scope); + event IdsAddedToScope(uint256 indexed _idStart, uint256 indexed _idEnd, bytes32 indexed _scope); /** @dev MUST emit when the token IDs are removed from the scope. The range is inclusive: _idStart, _idEnd, and all IDs in between have been removed from the scope. _idStart must be lower than or equal to _idEnd. */ - event RemoveIdsFromScope(uint256 indexed _idStart, uint256 indexed _idEnd, bytes32 indexed _scope); + event IdsRemovedFromScope(uint256 indexed _idStart, uint256 indexed _idEnd, bytes32 indexed _scope); /** @dev MUST emit when a scope URI is set or changes. URIs are defined in RFC 3986.