ocean-contracts 2.2.1__py3-none-any.whl → 2.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- addresses/address.json +15 -8
- artifacts/ERC721Template.json +2 -2
- artifacts/ERC725Ocean.json +2 -2
- artifacts/Escrow.json +784 -0
- artifacts/IERC20.json +147 -4
- {ocean_contracts-2.2.1.dist-info → ocean_contracts-2.3.0.dist-info}/METADATA +2 -2
- {ocean_contracts-2.2.1.dist-info → ocean_contracts-2.3.0.dist-info}/RECORD +9 -8
- {ocean_contracts-2.2.1.dist-info → ocean_contracts-2.3.0.dist-info}/WHEEL +1 -1
- {ocean_contracts-2.2.1.dist-info → ocean_contracts-2.3.0.dist-info}/top_level.txt +0 -0
artifacts/IERC20.json
CHANGED
|
@@ -1,21 +1,164 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_format": "hh-sol-artifact-1",
|
|
3
3
|
"contractName": "IERC20",
|
|
4
|
-
"sourceName": "contracts/
|
|
4
|
+
"sourceName": "contracts/interfaces/IERC20.sol",
|
|
5
5
|
"abi": [
|
|
6
6
|
{
|
|
7
|
+
"anonymous": false,
|
|
7
8
|
"inputs": [
|
|
8
9
|
{
|
|
10
|
+
"indexed": true,
|
|
11
|
+
"internalType": "address",
|
|
12
|
+
"name": "owner",
|
|
13
|
+
"type": "address"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"indexed": true,
|
|
17
|
+
"internalType": "address",
|
|
18
|
+
"name": "spender",
|
|
19
|
+
"type": "address"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"indexed": false,
|
|
23
|
+
"internalType": "uint256",
|
|
24
|
+
"name": "value",
|
|
25
|
+
"type": "uint256"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"name": "Approval",
|
|
29
|
+
"type": "event"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"anonymous": false,
|
|
33
|
+
"inputs": [
|
|
34
|
+
{
|
|
35
|
+
"indexed": true,
|
|
36
|
+
"internalType": "address",
|
|
37
|
+
"name": "from",
|
|
38
|
+
"type": "address"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"indexed": true,
|
|
9
42
|
"internalType": "address",
|
|
10
43
|
"name": "to",
|
|
11
44
|
"type": "address"
|
|
12
45
|
},
|
|
13
46
|
{
|
|
47
|
+
"indexed": false,
|
|
14
48
|
"internalType": "uint256",
|
|
15
49
|
"name": "value",
|
|
16
50
|
"type": "uint256"
|
|
17
51
|
}
|
|
18
52
|
],
|
|
53
|
+
"name": "Transfer",
|
|
54
|
+
"type": "event"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"inputs": [
|
|
58
|
+
{
|
|
59
|
+
"internalType": "address",
|
|
60
|
+
"name": "owner",
|
|
61
|
+
"type": "address"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"internalType": "address",
|
|
65
|
+
"name": "spender",
|
|
66
|
+
"type": "address"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"name": "allowance",
|
|
70
|
+
"outputs": [
|
|
71
|
+
{
|
|
72
|
+
"internalType": "uint256",
|
|
73
|
+
"name": "",
|
|
74
|
+
"type": "uint256"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"stateMutability": "view",
|
|
78
|
+
"type": "function"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"inputs": [
|
|
82
|
+
{
|
|
83
|
+
"internalType": "address",
|
|
84
|
+
"name": "spender",
|
|
85
|
+
"type": "address"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"internalType": "uint256",
|
|
89
|
+
"name": "amount",
|
|
90
|
+
"type": "uint256"
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"name": "approve",
|
|
94
|
+
"outputs": [
|
|
95
|
+
{
|
|
96
|
+
"internalType": "bool",
|
|
97
|
+
"name": "",
|
|
98
|
+
"type": "bool"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"stateMutability": "nonpayable",
|
|
102
|
+
"type": "function"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"inputs": [
|
|
106
|
+
{
|
|
107
|
+
"internalType": "address",
|
|
108
|
+
"name": "account",
|
|
109
|
+
"type": "address"
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"name": "balanceOf",
|
|
113
|
+
"outputs": [
|
|
114
|
+
{
|
|
115
|
+
"internalType": "uint256",
|
|
116
|
+
"name": "",
|
|
117
|
+
"type": "uint256"
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"stateMutability": "view",
|
|
121
|
+
"type": "function"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"inputs": [],
|
|
125
|
+
"name": "decimals",
|
|
126
|
+
"outputs": [
|
|
127
|
+
{
|
|
128
|
+
"internalType": "uint8",
|
|
129
|
+
"name": "",
|
|
130
|
+
"type": "uint8"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"stateMutability": "view",
|
|
134
|
+
"type": "function"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"inputs": [],
|
|
138
|
+
"name": "totalSupply",
|
|
139
|
+
"outputs": [
|
|
140
|
+
{
|
|
141
|
+
"internalType": "uint256",
|
|
142
|
+
"name": "",
|
|
143
|
+
"type": "uint256"
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"stateMutability": "view",
|
|
147
|
+
"type": "function"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"inputs": [
|
|
151
|
+
{
|
|
152
|
+
"internalType": "address",
|
|
153
|
+
"name": "recipient",
|
|
154
|
+
"type": "address"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"internalType": "uint256",
|
|
158
|
+
"name": "amount",
|
|
159
|
+
"type": "uint256"
|
|
160
|
+
}
|
|
161
|
+
],
|
|
19
162
|
"name": "transfer",
|
|
20
163
|
"outputs": [
|
|
21
164
|
{
|
|
@@ -31,17 +174,17 @@
|
|
|
31
174
|
"inputs": [
|
|
32
175
|
{
|
|
33
176
|
"internalType": "address",
|
|
34
|
-
"name": "
|
|
177
|
+
"name": "sender",
|
|
35
178
|
"type": "address"
|
|
36
179
|
},
|
|
37
180
|
{
|
|
38
181
|
"internalType": "address",
|
|
39
|
-
"name": "
|
|
182
|
+
"name": "recipient",
|
|
40
183
|
"type": "address"
|
|
41
184
|
},
|
|
42
185
|
{
|
|
43
186
|
"internalType": "uint256",
|
|
44
|
-
"name": "
|
|
187
|
+
"name": "amount",
|
|
45
188
|
"type": "uint256"
|
|
46
189
|
}
|
|
47
190
|
],
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
addresses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
addresses/address.json,sha256=
|
|
2
|
+
addresses/address.json,sha256=NNkFPkvZbU7g6fDfjF_dUcdUQOmwQ6KrptQTuwQ6hUY,17324
|
|
3
3
|
artifacts/AccessList.json,sha256=ZAQWWkYIKtXffQsd2PaFh8Amg8mfg9kkSr8-wDRoRjE,51865
|
|
4
4
|
artifacts/AccessListFactory.json,sha256=zL4DwzaPj29HbE-Mfraf6xynjLeqdEKlBW3hvfhEv54,16700
|
|
5
5
|
artifacts/Address.json,sha256=tssTaRdkpkBsVnWVv-gcivrC1A22D31wSQ-38w-yKiU,691
|
|
@@ -27,10 +27,11 @@ artifacts/ERC20TemplateEnterprise.json,sha256=rN8_8Sqlpujbn5mw8uH5cJ6T6AaPflWZFM
|
|
|
27
27
|
artifacts/ERC721.json,sha256=j9W1Lxvw05dcrhBbcqKYEW3qXp6KS8eijx-46kV9Ztc,21917
|
|
28
28
|
artifacts/ERC721Factory.json,sha256=VkteXOpvmJutYqUfiBpBEBV8q57VI3IMmvMIqjLTdzo,106683
|
|
29
29
|
artifacts/ERC721RolesAddress.json,sha256=44T7Dda2K0pytws9XF-67_c0lrIfNm8OoTUqnWs6a-0,27611
|
|
30
|
-
artifacts/ERC721Template.json,sha256=
|
|
31
|
-
artifacts/ERC725Ocean.json,sha256=
|
|
30
|
+
artifacts/ERC721Template.json,sha256=EAyj2T01dLvHUMrkCBHsX57ByWcHqF6SlLva4vRtg6U,124832
|
|
31
|
+
artifacts/ERC725Ocean.json,sha256=FpuKKBTUU6I2hXwkGAowBkQg5-6riDDAAXKS2jzkItk,5227
|
|
32
32
|
artifacts/EnumerableMap.json,sha256=6mNXnQ6xrrML3ARhcczGt0Adm6tjJNkEbroywP2SXxw,703
|
|
33
33
|
artifacts/EnumerableSet.json,sha256=Z33HpyiFibyvY1vZxTzGPygtegrTdZprYxaxywlI0HA,703
|
|
34
|
+
artifacts/Escrow.json,sha256=QcyBzuSm31WYD4Q5VOGW21nT1YIFjvxfG3sXli2F1oE,79275
|
|
34
35
|
artifacts/FactoryRouter.json,sha256=y_G_CXlcaJvk7CQ8jtc4MKNHeh-Fm7uxImRz7r-WYMI,108738
|
|
35
36
|
artifacts/FixedRateExchange.json,sha256=YMw6j0NgyBLZ83nHlykqUTI4p5QPVbj_LYaFHUoWRLY,93761
|
|
36
37
|
artifacts/IAccessList.json,sha256=2SHDeP8dsAeru2B87bI9b66NNZZjcp51Xgbp_snkVuY,1406
|
|
@@ -39,7 +40,7 @@ artifacts/IAccessListFactory.json,sha256=JSIxOX92criYEetBhnnf6slhllHWVPNHTDiqI7z
|
|
|
39
40
|
artifacts/IDFRewards.json,sha256=vhbVHUlInecQNXt5NqpSinfJGTTbLcZEKTllM1NH708,3730
|
|
40
41
|
artifacts/IDispenser.json,sha256=GLYSCFxcJ3AOTeJiZ8bXL6cevHMrhkwmUAYy2D-QGIE,4232
|
|
41
42
|
artifacts/IERC165.json,sha256=GgImkcueprmmTy_cmaMSkjHuqX0mOEwBS0gH47m6S60,617
|
|
42
|
-
artifacts/IERC20.json,sha256=
|
|
43
|
+
artifacts/IERC20.json,sha256=sgpZ02ACkgJZr8N9tfLoAT2W59l2ysPfS9EHg1Jnodo,4247
|
|
43
44
|
artifacts/IERC20Template.json,sha256=JhjWbTgPQ4wqmuzBQZXPqwfIWWhBxAu0A3O-lDMiIVs,17955
|
|
44
45
|
artifacts/IERC20Template3.json,sha256=FBkXEy4AJ9h36e4ViXaGxtBLlDaXXqy-pNCWq--2f6U,22154
|
|
45
46
|
artifacts/IERC721.json,sha256=ePt_6UwimaHFtGuHBMOCvkJ8IEr2Ipdld3yGR0wTOGA,4615
|
|
@@ -81,7 +82,7 @@ artifacts/veFeeDistributor.json,sha256=tMEq3ifjXUL20omsA2HZBVq2OMWTboiWjYnB2ULt9
|
|
|
81
82
|
artifacts/veFeeDistributorOwner.json,sha256=_YmpseEGO9iehj7jsHZ_tKfoHn7tSkCDYdeLXRvODpE,18279
|
|
82
83
|
artifacts/veFeeEstimate.json,sha256=y2nVTf_WoO4lq33CTpoKw_bgwiauut-NnJZUDeXfSzk,14648
|
|
83
84
|
artifacts/veOCEAN.json,sha256=y7shCpV2_wu5l5ke5Jl5RXcIrfnKIcVlHNSnBLLRCdE,65773
|
|
84
|
-
ocean_contracts-2.
|
|
85
|
-
ocean_contracts-2.
|
|
86
|
-
ocean_contracts-2.
|
|
87
|
-
ocean_contracts-2.
|
|
85
|
+
ocean_contracts-2.3.0.dist-info/METADATA,sha256=eGcKpLI7ZJeZ3lu3otVuegXHsil3MRylgRe6Apm5dwE,5540
|
|
86
|
+
ocean_contracts-2.3.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
87
|
+
ocean_contracts-2.3.0.dist-info/top_level.txt,sha256=_iXuRoP5-QwLfapzrF8ti449ScRELwyqHevPSQskcRc,20
|
|
88
|
+
ocean_contracts-2.3.0.dist-info/RECORD,,
|
|
File without changes
|