-
Notifications
You must be signed in to change notification settings - Fork 4
/
RevokeMod.sol
297 lines (220 loc) · 10.9 KB
/
RevokeMod.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.24;
/// @title Ether Deck Mk2 Mass Revoke Mod
/// @author jtriley.eth
/// @notice a reasonably optimized approval revocation mod for Ether Deck Mk2
/// @dev supports erc-20, erc-721, erc-1155, and erc-6909
contract RevokeMod {
mapping(bytes4 => address) internal dispatch;
address internal runner;
/// @notice revokes approvals for erc-20 tokens
/// @dev directives:
/// 01. check if caller is runner; cache as success
/// 02. load token offset; cache as tokenOffset
/// 03. load spender offset; cache as spenderOffset
/// 04. compute end of tokens; cache as tokensEnd
/// 05. check if tokens and spenders are equal length; compose success
/// 06. store `erc20.approve.selector` in memory
/// 07. store approve boolean in memory
/// 08. loop:
/// a. if tokenOffset is tokensEnd, break loop
/// b. move spender from calldata to memory
/// c. call `erc20.approve`; compose success
/// d. check that the return value is either true or nothing; compose success
/// e. increment tokenOffset
/// f. increment spenderOffset
/// 09. if success, return
/// 10. else, revert
/// @param tokens the tokens to revoke approval for
/// @param spenders the spenders to revoke approval for
function revokeERC20Approval(address[] calldata tokens, address[] calldata spenders) external {
assembly {
let success := eq(caller(), sload(runner.slot))
let tokenOffset := tokens.offset
let spenderOffset := spenders.offset
let tokensEnd := add(tokenOffset, mul(tokens.length, 0x20))
success := and(success, eq(tokens.length, spenders.length))
mstore(0x00, 0x095ea7b300000000000000000000000000000000000000000000000000000000)
mstore(0x24, 0x00)
for { } 1 { } {
if eq(tokenOffset, tokensEnd) { break }
mstore(0x04, calldataload(spenderOffset))
success := and(success, call(gas(), calldataload(tokenOffset), 0x00, 0x00, 0x44, 0x44, 0x20))
success := and(success, or(iszero(returndatasize()), mload(0x44)))
tokenOffset := add(tokenOffset, 0x20)
spenderOffset := add(spenderOffset, 0x20)
}
if success { return(0x00, 0x00) }
revert(0x00, 0x00)
}
}
/// @notice revokes approvals for erc-721 tokens
/// @dev directives:
/// 01. check if caller is runner; cache as success
/// 02. load token offset; cache as tokenOffset
/// 03. load id offset; cache as idOffset
/// 04. compute end of tokens; cache as tokensEnd
/// 05. check if tokens and ids are equal length; compose success
/// 06. store `erc721.approve.selector` in memory
/// 07. loop:
/// a. if tokenOffset is tokensEnd, break loop
/// b. move id from calldata to memory
/// c. call `erc721.approve`; compose success
/// d. increment tokenOffset
/// e. increment idOffset
/// 08. if success, return
/// 09. else, revert
/// @dev erc721.approve `_approved` argument is implicitly zero at memory[0x04]
/// @param tokens the tokens to revoke approval for
/// @param ids the ids to revoke approval for
function revokeERC721Approval(address[] calldata tokens, uint256[] calldata ids) external {
assembly {
let success := eq(caller(), sload(runner.slot))
let tokenOffset := tokens.offset
let idOffset := ids.offset
let tokensEnd := add(tokenOffset, mul(tokens.length, 0x20))
success := and(success, eq(tokens.length, ids.length))
mstore(0x00, 0x095ea7b300000000000000000000000000000000000000000000000000000000)
for { } 1 { } {
if eq(tokenOffset, tokensEnd) { break }
mstore(0x24, calldataload(idOffset))
success := and(success, call(gas(), calldataload(tokenOffset), 0x00, 0x00, 0x44, 0x00, 0x00))
tokenOffset := add(tokenOffset, 0x20)
idOffset := add(idOffset, 0x20)
}
if success { return(0x00, 0x00) }
revert(0x00, 0x00)
}
}
/// @notice revokes approvals for erc-6909 tokens
/// @dev directives:
/// 01. check if caller is runner; cache as success
/// 02. load token offset; cache as tokenOffset
/// 03. load id offset; cache as idOffset
/// 04. load operator offset; cache as operatorOffset
/// 05. compute end of tokens; cache as tokensEnd
/// 06. check if tokens and ids are equal length; compose success
/// 07. check if tokens and operators are equal length; compose success
/// 08. store `erc6909.approve.selector` in memory
/// 09. store approve boolean in memory
/// 10. loop:
/// a. if tokenOffset is tokensEnd, break loop
/// b. move id from calldata to memory
/// c. move operator from calldata to memory
/// d. call `erc6909.approve`; compose success
/// e. check that the return value is true; compose success
/// f. increment tokenOffset
/// g. increment idOffset
/// h. increment operatorOffset
/// 11. if success, return
/// 12. else, revert
/// @param tokens the tokens to revoke approval for
/// @param ids the ids to revoke approval for
/// @param operators the operators to revoke approval for
function revokeERC6909Approval(
address[] calldata tokens,
uint256[] calldata ids,
address[] calldata operators
) external {
assembly {
let success := eq(caller(), sload(runner.slot))
let tokenOffset := tokens.offset
let idOffset := ids.offset
let operatorOffset := operators.offset
let tokensEnd := add(tokenOffset, mul(tokens.length, 0x20))
success := and(success, eq(tokens.length, ids.length))
success := and(success, eq(tokens.length, operators.length))
mstore(0x00, 0x426a849300000000000000000000000000000000000000000000000000000000)
mstore(0x44, 0x00)
for { } 1 { } {
if eq(tokenOffset, tokensEnd) { break }
mstore(0x04, calldataload(operatorOffset))
mstore(0x24, calldataload(idOffset))
success := and(success, call(gas(), calldataload(tokenOffset), 0x00, 0x00, 0x64, 0x64, 0x20))
success := and(success, mload(0x64))
tokenOffset := add(tokenOffset, 0x20)
idOffset := add(idOffset, 0x20)
operatorOffset := add(operatorOffset, 0x20)
}
if success { return(0x00, 0x00) }
revert(0x00, 0x00)
}
}
/// @notice revokes operator approvals for erc-721 and erc-1155 tokens
/// @dev directives:
/// 01. check if caller is runner; cache as success
/// 02. load token offset; cache as tokenOffset
/// 03. load operator offset; cache as operatorOffset
/// 04. compute end of tokens; cache as tokensEnd
/// 05. check if tokens and operators are equal length; compose success
/// 06. store `{erc721, erc1155}.setApprovalForAll.selector` in memory
/// 07. store approve boolean in memory
/// 08. loop:
/// a. if tokenOffset is tokensEnd, break loop
/// b. move operator from calldata to memory
/// c. call `{erc721, erc1155}.setApprovalForAll`; compose success
/// d. increment tokenOffset
/// e. increment operatorOffset
/// 09. if success, return
/// 10. else, revert
/// @param tokens the tokens to revoke approval for
/// @param operators the operators to revoke approval for
function revokeApprovalForAll(address[] calldata tokens, address[] calldata operators) external {
assembly {
let success := eq(caller(), sload(runner.slot))
let tokenOffset := tokens.offset
let operatorOffset := operators.offset
let tokensEnd := add(tokenOffset, mul(tokens.length, 0x20))
success := and(success, eq(tokens.length, operators.length))
mstore(0x00, 0xa22cb46500000000000000000000000000000000000000000000000000000000)
mstore(0x44, 0x00)
for { } 1 { } {
if eq(tokenOffset, tokensEnd) { break }
mstore(0x04, calldataload(operatorOffset))
success := and(success, call(gas(), calldataload(tokenOffset), 0x00, 0x00, 0x64, 0x00, 0x00))
tokenOffset := add(tokenOffset, 0x20)
operatorOffset := add(operatorOffset, 0x20)
}
if success { return(0x00, 0x00) }
revert(0x00, 0x00)
}
}
/// @notice revokes operator approvals for erc-6909 tokens
/// @dev directives:
/// 01. check if caller is runner; cache as success
/// 02. load token offset; cache as tokenOffset
/// 03. load operator offset; cache as operatorOffset
/// 04. compute end of tokens; cache as tokensEnd
/// 05. check if tokens and operators are equal length; compose success
/// 06. store `erc6909.setOperator.selector` in memory
/// 07. loop:
/// a. if tokenOffset is tokensEnd, break loop
/// b. move operator from calldata to memory
/// c. call `erc6909.setOperator`; compose success
/// d. check that the return value is true; compose success
/// e. increment tokenOffset
/// f. increment operatorOffset
/// 08. if success, return
/// 09. else, revert
function revokeOperator(address[] calldata tokens, address[] calldata operators) external {
assembly {
let success := eq(caller(), sload(runner.slot))
let tokenOffset := tokens.offset
let operatorOffset := operators.offset
let tokensEnd := add(tokenOffset, mul(tokens.length, 0x20))
success := and(success, eq(tokens.length, operators.length))
mstore(0x00, 0x558a729700000000000000000000000000000000000000000000000000000000)
mstore(0x24, 0x00)
for { } 1 { } {
if eq(tokenOffset, tokensEnd) { break }
mstore(0x04, calldataload(operatorOffset))
success := and(success, call(gas(), calldataload(tokenOffset), 0x00, 0x00, 0x44, 0x44, 0x20))
success := and(success, mload(0x44))
tokenOffset := add(tokenOffset, 0x20)
operatorOffset := add(operatorOffset, 0x20)
}
if success { return(0x00, 0x00) }
revert(0x00, 0x00)
}
}
}