Skip to content

Commit 55729ad

Browse files
zguesmiLe-CaignecCopilotgfournierPro
authored
feat: Upgrade all contracts to Solidity v0.8.0 (#287)
Co-authored-by: Robin Le Caignec <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: gfournieriExec <[email protected]> Co-authored-by: Le-Caignec <[email protected]>
1 parent ec8fedf commit 55729ad

File tree

139 files changed

+3340
-1664
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+3340
-1664
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
run: npm ci
2929
- name: Check code formatting
3030
run: npm run check-format
31-
- name: Build
32-
run: npm run build
3331
- name: Check documentation is up-to-date
3432
run: npm run check-doc
33+
- name: Build
34+
run: npm run build
3535
- name: Check storage layout
3636
run: npm run check-storage-layout
3737
- name: Test deployment

abis/contracts/facets/IexecERC20Facet.json renamed to abis/contracts/abstract/IexecERC20Base.json

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,75 @@
2424
"name": "Approval",
2525
"type": "event"
2626
},
27+
{
28+
"anonymous": false,
29+
"inputs": [
30+
{
31+
"indexed": false,
32+
"internalType": "address",
33+
"name": "owner",
34+
"type": "address"
35+
},
36+
{
37+
"indexed": false,
38+
"internalType": "uint256",
39+
"name": "amount",
40+
"type": "uint256"
41+
}
42+
],
43+
"name": "Lock",
44+
"type": "event"
45+
},
46+
{
47+
"anonymous": false,
48+
"inputs": [
49+
{
50+
"indexed": false,
51+
"internalType": "address",
52+
"name": "owner",
53+
"type": "address"
54+
},
55+
{
56+
"indexed": false,
57+
"internalType": "uint256",
58+
"name": "amount",
59+
"type": "uint256"
60+
},
61+
{
62+
"indexed": false,
63+
"internalType": "bytes32",
64+
"name": "ref",
65+
"type": "bytes32"
66+
}
67+
],
68+
"name": "Reward",
69+
"type": "event"
70+
},
71+
{
72+
"anonymous": false,
73+
"inputs": [
74+
{
75+
"indexed": false,
76+
"internalType": "address",
77+
"name": "owner",
78+
"type": "address"
79+
},
80+
{
81+
"indexed": false,
82+
"internalType": "uint256",
83+
"name": "amount",
84+
"type": "uint256"
85+
},
86+
{
87+
"indexed": false,
88+
"internalType": "bytes32",
89+
"name": "ref",
90+
"type": "bytes32"
91+
}
92+
],
93+
"name": "Seize",
94+
"type": "event"
95+
},
2796
{
2897
"anonymous": false,
2998
"inputs": [
@@ -49,6 +118,25 @@
49118
"name": "Transfer",
50119
"type": "event"
51120
},
121+
{
122+
"anonymous": false,
123+
"inputs": [
124+
{
125+
"indexed": false,
126+
"internalType": "address",
127+
"name": "owner",
128+
"type": "address"
129+
},
130+
{
131+
"indexed": false,
132+
"internalType": "uint256",
133+
"name": "amount",
134+
"type": "uint256"
135+
}
136+
],
137+
"name": "Unlock",
138+
"type": "event"
139+
},
52140
{
53141
"inputs": [
54142
{

abis/contracts/facets/IexecERC20Core.json

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

0 commit comments

Comments
 (0)