ocean-contracts 2.1.0__py3-none-any.whl → 2.2.1__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 +10 -5
- artifacts/AccessList.json +60 -33
- artifacts/AccessListFactory.json +220 -0
- artifacts/BatchPayments.json +52 -0
- artifacts/ERC20Template4.json +2 -2
- artifacts/IAccessList.json +68 -0
- artifacts/{AccessListContract.json → IAccessListContract.json} +1 -1
- artifacts/IAccessListFactory.json +49 -0
- artifacts/IERC20.json +4 -147
- {ocean_contracts-2.1.0.dist-info → ocean_contracts-2.2.1.dist-info}/METADATA +1 -1
- {ocean_contracts-2.1.0.dist-info → ocean_contracts-2.2.1.dist-info}/RECORD +13 -9
- {ocean_contracts-2.1.0.dist-info → ocean_contracts-2.2.1.dist-info}/WHEEL +1 -1
- {ocean_contracts-2.1.0.dist-info → ocean_contracts-2.2.1.dist-info}/top_level.txt +0 -0
artifacts/IERC20.json
CHANGED
|
@@ -1,164 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_format": "hh-sol-artifact-1",
|
|
3
3
|
"contractName": "IERC20",
|
|
4
|
-
"sourceName": "contracts/
|
|
4
|
+
"sourceName": "contracts/rewards/BatchPayments.sol",
|
|
5
5
|
"abi": [
|
|
6
6
|
{
|
|
7
|
-
"anonymous": false,
|
|
8
7
|
"inputs": [
|
|
9
8
|
{
|
|
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,
|
|
42
9
|
"internalType": "address",
|
|
43
10
|
"name": "to",
|
|
44
11
|
"type": "address"
|
|
45
12
|
},
|
|
46
13
|
{
|
|
47
|
-
"indexed": false,
|
|
48
14
|
"internalType": "uint256",
|
|
49
15
|
"name": "value",
|
|
50
16
|
"type": "uint256"
|
|
51
17
|
}
|
|
52
18
|
],
|
|
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
|
-
],
|
|
162
19
|
"name": "transfer",
|
|
163
20
|
"outputs": [
|
|
164
21
|
{
|
|
@@ -174,17 +31,17 @@
|
|
|
174
31
|
"inputs": [
|
|
175
32
|
{
|
|
176
33
|
"internalType": "address",
|
|
177
|
-
"name": "
|
|
34
|
+
"name": "from",
|
|
178
35
|
"type": "address"
|
|
179
36
|
},
|
|
180
37
|
{
|
|
181
38
|
"internalType": "address",
|
|
182
|
-
"name": "
|
|
39
|
+
"name": "to",
|
|
183
40
|
"type": "address"
|
|
184
41
|
},
|
|
185
42
|
{
|
|
186
43
|
"internalType": "uint256",
|
|
187
|
-
"name": "
|
|
44
|
+
"name": "value",
|
|
188
45
|
"type": "uint256"
|
|
189
46
|
}
|
|
190
47
|
],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
addresses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
addresses/address.json,sha256=
|
|
3
|
-
artifacts/AccessList.json,sha256=
|
|
4
|
-
artifacts/
|
|
2
|
+
addresses/address.json,sha256=03J2GKZvHH7GHKaFp35wCkFiF2s7WriDJCVRbHtr8mM,16891
|
|
3
|
+
artifacts/AccessList.json,sha256=ZAQWWkYIKtXffQsd2PaFh8Amg8mfg9kkSr8-wDRoRjE,51865
|
|
4
|
+
artifacts/AccessListFactory.json,sha256=zL4DwzaPj29HbE-Mfraf6xynjLeqdEKlBW3hvfhEv54,16700
|
|
5
5
|
artifacts/Address.json,sha256=tssTaRdkpkBsVnWVv-gcivrC1A22D31wSQ-38w-yKiU,691
|
|
6
6
|
artifacts/BConst.json,sha256=Xe_qu9wqXeJUs05rrEV2I8S50eZYz5jLMAgEsk0kt5I,7529
|
|
7
7
|
artifacts/BFactory.json,sha256=KelLrboiXzZCzGCrVbaYi-Vf2EFfEgeKUzVSabFl9_E,16194
|
|
@@ -10,6 +10,7 @@ artifacts/BNum.json,sha256=rWWCaLQNDX1tY0kaPPzsJ1o0taM8BkHglu-mi5RLpMQ,7525
|
|
|
10
10
|
artifacts/BPool.json,sha256=yyEY0T8VSqh8WaDlqwTrBNFV968whrIjkCFXqrPPcxI,132390
|
|
11
11
|
artifacts/BToken.json,sha256=N3XpkpkyErwlzUjsfgm8CqRkch_cVls7G7gWn7fj4WQ,21360
|
|
12
12
|
artifacts/BTokenBase.json,sha256=CFHzSCaHYs9XMX7EoJdqivnreOwlXLeX9HBEKkjpc9w,8589
|
|
13
|
+
artifacts/BatchPayments.json,sha256=_-0RB3hwxLIQ-73JzDL4CCJnyxl1DTMt5ebN1ziTw8g,7872
|
|
13
14
|
artifacts/Booster.json,sha256=0GRerkuULRJ206VsR5hczZeiqUuUErNWra6OlcdQJOs,45439
|
|
14
15
|
artifacts/Context.json,sha256=n29yHbQPklAsofIOjVfeJFkVhymlYgJy67B-t-4S8eQ,237
|
|
15
16
|
artifacts/DFRewards.json,sha256=hNOzFigD2jetj1RqQoJIU0sB8aePtrwvY74TuUN5N8E,27574
|
|
@@ -21,7 +22,7 @@ artifacts/ERC165.json,sha256=hmAtmYoJpyU0fF6_K0nGgyOuxjOTH_shqUYYrUnvMo0,615
|
|
|
21
22
|
artifacts/ERC20Roles.json,sha256=NsB4pTKH2I8oYImv1deV3PHUgw9eKMsjjwprD88HvtE,7746
|
|
22
23
|
artifacts/ERC20Template.json,sha256=4VkdckUA-wpEcgV8lOSPNIhYgk8qye_2eaOnJABWqmI,134396
|
|
23
24
|
artifacts/ERC20Template3.json,sha256=xIAIR_gFvouOgkcEEpPeIZCsPHFkiqvrxlqjEiGd678,145718
|
|
24
|
-
artifacts/ERC20Template4.json,sha256=
|
|
25
|
+
artifacts/ERC20Template4.json,sha256=F3iiP6Zp27infpbW6sbEhj-FchSQAZ4sKWMslxf_IkM,140503
|
|
25
26
|
artifacts/ERC20TemplateEnterprise.json,sha256=rN8_8Sqlpujbn5mw8uH5cJ6T6AaPflWZFMG07xgyN9w,139597
|
|
26
27
|
artifacts/ERC721.json,sha256=j9W1Lxvw05dcrhBbcqKYEW3qXp6KS8eijx-46kV9Ztc,21917
|
|
27
28
|
artifacts/ERC721Factory.json,sha256=VkteXOpvmJutYqUfiBpBEBV8q57VI3IMmvMIqjLTdzo,106683
|
|
@@ -32,10 +33,13 @@ artifacts/EnumerableMap.json,sha256=6mNXnQ6xrrML3ARhcczGt0Adm6tjJNkEbroywP2SXxw,
|
|
|
32
33
|
artifacts/EnumerableSet.json,sha256=Z33HpyiFibyvY1vZxTzGPygtegrTdZprYxaxywlI0HA,703
|
|
33
34
|
artifacts/FactoryRouter.json,sha256=y_G_CXlcaJvk7CQ8jtc4MKNHeh-Fm7uxImRz7r-WYMI,108738
|
|
34
35
|
artifacts/FixedRateExchange.json,sha256=YMw6j0NgyBLZ83nHlykqUTI4p5QPVbj_LYaFHUoWRLY,93761
|
|
36
|
+
artifacts/IAccessList.json,sha256=2SHDeP8dsAeru2B87bI9b66NNZZjcp51Xgbp_snkVuY,1406
|
|
37
|
+
artifacts/IAccessListContract.json,sha256=0eZiMNXZeNeQ9V40WMaPVK9UofUkr1hwE5wVUQ4kaKU,634
|
|
38
|
+
artifacts/IAccessListFactory.json,sha256=JSIxOX92criYEetBhnnf6slhllHWVPNHTDiqI7zZjqU,979
|
|
35
39
|
artifacts/IDFRewards.json,sha256=vhbVHUlInecQNXt5NqpSinfJGTTbLcZEKTllM1NH708,3730
|
|
36
40
|
artifacts/IDispenser.json,sha256=GLYSCFxcJ3AOTeJiZ8bXL6cevHMrhkwmUAYy2D-QGIE,4232
|
|
37
41
|
artifacts/IERC165.json,sha256=GgImkcueprmmTy_cmaMSkjHuqX0mOEwBS0gH47m6S60,617
|
|
38
|
-
artifacts/IERC20.json,sha256=
|
|
42
|
+
artifacts/IERC20.json,sha256=KXimgzzTKZ3O57-KUXENGPooipptPR3iqAX30DAMank,1317
|
|
39
43
|
artifacts/IERC20Template.json,sha256=JhjWbTgPQ4wqmuzBQZXPqwfIWWhBxAu0A3O-lDMiIVs,17955
|
|
40
44
|
artifacts/IERC20Template3.json,sha256=FBkXEy4AJ9h36e4ViXaGxtBLlDaXXqy-pNCWq--2f6U,22154
|
|
41
45
|
artifacts/IERC721.json,sha256=ePt_6UwimaHFtGuHBMOCvkJ8IEr2Ipdld3yGR0wTOGA,4615
|
|
@@ -77,7 +81,7 @@ artifacts/veFeeDistributor.json,sha256=tMEq3ifjXUL20omsA2HZBVq2OMWTboiWjYnB2ULt9
|
|
|
77
81
|
artifacts/veFeeDistributorOwner.json,sha256=_YmpseEGO9iehj7jsHZ_tKfoHn7tSkCDYdeLXRvODpE,18279
|
|
78
82
|
artifacts/veFeeEstimate.json,sha256=y2nVTf_WoO4lq33CTpoKw_bgwiauut-NnJZUDeXfSzk,14648
|
|
79
83
|
artifacts/veOCEAN.json,sha256=y7shCpV2_wu5l5ke5Jl5RXcIrfnKIcVlHNSnBLLRCdE,65773
|
|
80
|
-
ocean_contracts-2.1.
|
|
81
|
-
ocean_contracts-2.1.
|
|
82
|
-
ocean_contracts-2.1.
|
|
83
|
-
ocean_contracts-2.1.
|
|
84
|
+
ocean_contracts-2.2.1.dist-info/METADATA,sha256=fmXiKJhs2Lppzk0HN7P9dTohufhHGDMQnyLSIZzKo0c,5540
|
|
85
|
+
ocean_contracts-2.2.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
86
|
+
ocean_contracts-2.2.1.dist-info/top_level.txt,sha256=_iXuRoP5-QwLfapzrF8ti449ScRELwyqHevPSQskcRc,20
|
|
87
|
+
ocean_contracts-2.2.1.dist-info/RECORD,,
|
|
File without changes
|