Skip to content

Commit 45be1d7

Browse files
committed
Merge branch 'chore/solidity-v8' into feat/deal-with-tag
2 parents f2ff3a5 + 900c30e commit 45be1d7

37 files changed

+442
-438
lines changed
File renamed without changes.

abis/contracts/facets/IexecERC20Core.json

Lines changed: 0 additions & 140 deletions
This file was deleted.

abis/contracts/facets/IexecEscrowNativeFacet.json

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,83 @@
141141
"stateMutability": "payable",
142142
"type": "fallback"
143143
},
144+
{
145+
"inputs": [
146+
{
147+
"internalType": "address",
148+
"name": "spender",
149+
"type": "address"
150+
},
151+
{
152+
"internalType": "uint256",
153+
"name": "value",
154+
"type": "uint256"
155+
}
156+
],
157+
"name": "approve",
158+
"outputs": [
159+
{
160+
"internalType": "bool",
161+
"name": "",
162+
"type": "bool"
163+
}
164+
],
165+
"stateMutability": "nonpayable",
166+
"type": "function"
167+
},
168+
{
169+
"inputs": [
170+
{
171+
"internalType": "address",
172+
"name": "spender",
173+
"type": "address"
174+
},
175+
{
176+
"internalType": "uint256",
177+
"name": "value",
178+
"type": "uint256"
179+
},
180+
{
181+
"internalType": "bytes",
182+
"name": "extraData",
183+
"type": "bytes"
184+
}
185+
],
186+
"name": "approveAndCall",
187+
"outputs": [
188+
{
189+
"internalType": "bool",
190+
"name": "",
191+
"type": "bool"
192+
}
193+
],
194+
"stateMutability": "nonpayable",
195+
"type": "function"
196+
},
197+
{
198+
"inputs": [
199+
{
200+
"internalType": "address",
201+
"name": "spender",
202+
"type": "address"
203+
},
204+
{
205+
"internalType": "uint256",
206+
"name": "subtractedValue",
207+
"type": "uint256"
208+
}
209+
],
210+
"name": "decreaseAllowance",
211+
"outputs": [
212+
{
213+
"internalType": "bool",
214+
"name": "",
215+
"type": "bool"
216+
}
217+
],
218+
"stateMutability": "nonpayable",
219+
"type": "function"
220+
},
144221
{
145222
"inputs": [],
146223
"name": "deposit",
@@ -197,6 +274,30 @@
197274
"stateMutability": "payable",
198275
"type": "function"
199276
},
277+
{
278+
"inputs": [
279+
{
280+
"internalType": "address",
281+
"name": "spender",
282+
"type": "address"
283+
},
284+
{
285+
"internalType": "uint256",
286+
"name": "addedValue",
287+
"type": "uint256"
288+
}
289+
],
290+
"name": "increaseAllowance",
291+
"outputs": [
292+
{
293+
"internalType": "bool",
294+
"name": "",
295+
"type": "bool"
296+
}
297+
],
298+
"stateMutability": "nonpayable",
299+
"type": "function"
300+
},
200301
{
201302
"inputs": [],
202303
"name": "recover",
@@ -210,6 +311,59 @@
210311
"stateMutability": "nonpayable",
211312
"type": "function"
212313
},
314+
{
315+
"inputs": [
316+
{
317+
"internalType": "address",
318+
"name": "recipient",
319+
"type": "address"
320+
},
321+
{
322+
"internalType": "uint256",
323+
"name": "amount",
324+
"type": "uint256"
325+
}
326+
],
327+
"name": "transfer",
328+
"outputs": [
329+
{
330+
"internalType": "bool",
331+
"name": "",
332+
"type": "bool"
333+
}
334+
],
335+
"stateMutability": "nonpayable",
336+
"type": "function"
337+
},
338+
{
339+
"inputs": [
340+
{
341+
"internalType": "address",
342+
"name": "sender",
343+
"type": "address"
344+
},
345+
{
346+
"internalType": "address",
347+
"name": "recipient",
348+
"type": "address"
349+
},
350+
{
351+
"internalType": "uint256",
352+
"name": "amount",
353+
"type": "uint256"
354+
}
355+
],
356+
"name": "transferFrom",
357+
"outputs": [
358+
{
359+
"internalType": "bool",
360+
"name": "",
361+
"type": "bool"
362+
}
363+
],
364+
"stateMutability": "nonpayable",
365+
"type": "function"
366+
},
213367
{
214368
"inputs": [
215369
{

0 commit comments

Comments
 (0)