@venusprotocol/governance-contracts 1.0.1-dev.2 → 1.0.1-dev.3

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.
Files changed (97) hide show
  1. package/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.dbg.json +4 -0
  2. package/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.json +215 -0
  3. package/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.dbg.json +4 -0
  4. package/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.json +183 -0
  5. package/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +4 -0
  6. package/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json +10 -0
  7. package/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.dbg.json +4 -0
  8. package/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.json +10 -0
  9. package/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.dbg.json +4 -0
  10. package/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.json +30 -0
  11. package/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.dbg.json +4 -0
  12. package/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.json +30 -0
  13. package/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.dbg.json +4 -0
  14. package/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.json +10 -0
  15. package/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json +4 -0
  16. package/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json +115 -0
  17. package/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +4 -0
  18. package/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +76 -0
  19. package/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +4 -0
  20. package/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +24 -0
  21. package/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +4 -0
  22. package/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +10 -0
  23. package/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +4 -0
  24. package/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +24 -0
  25. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/Owned.dbg.json +4 -0
  26. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/Owned.json +66 -0
  27. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/Tokenlock.dbg.json +4 -0
  28. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/Tokenlock.json +90 -0
  29. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/XVS.dbg.json +4 -0
  30. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/XVS.json +618 -0
  31. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/Address.sol/Address.dbg.json +4 -0
  32. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/Address.sol/Address.json +10 -0
  33. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/ECDSA.sol/ECDSA.dbg.json +4 -0
  34. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/ECDSA.sol/ECDSA.json +10 -0
  35. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/IBEP20.sol/IBEP20.dbg.json +4 -0
  36. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/IBEP20.sol/IBEP20.json +206 -0
  37. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/SafeBEP20.sol/SafeBEP20.dbg.json +4 -0
  38. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/SafeBEP20.sol/SafeBEP20.json +10 -0
  39. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/SafeMath.sol/SafeMath.dbg.json +4 -0
  40. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/SafeMath.sol/SafeMath.json +10 -0
  41. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSStore.sol/XVSStore.dbg.json +4 -0
  42. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSStore.sol/XVSStore.json +244 -0
  43. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVault.sol/IXVSStore.dbg.json +4 -0
  44. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVault.sol/IXVSStore.json +56 -0
  45. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVault.sol/XVSVault.dbg.json +4 -0
  46. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVault.sol/XVSVault.json +1211 -0
  47. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultErrorReporter.sol/XVSVaultErrorReporter.dbg.json +4 -0
  48. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultErrorReporter.sol/XVSVaultErrorReporter.json +36 -0
  49. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultProxy.sol/XVSVaultProxy.dbg.json +4 -0
  50. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultProxy.sol/XVSVaultProxy.json +255 -0
  51. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultAdminStorage.dbg.json +4 -0
  52. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultAdminStorage.json +71 -0
  53. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultStorage.dbg.json +4 -0
  54. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultStorage.json +313 -0
  55. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultStorageV1.dbg.json +4 -0
  56. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultStorageV1.json +240 -0
  57. package/artifacts/build-info/0e028ff5062f0f59a7ffef92b702c074.json +1 -0
  58. package/artifacts/build-info/56323f6708e82b6f7b159248c3c1268a.json +1 -0
  59. package/artifacts/build-info/60a7730a05f99cbf38891be24e3a5c77.json +1 -0
  60. package/artifacts/build-info/bb792d434e41d4003eeb48354b3a6c5c.json +1 -0
  61. package/artifacts/build-info/e5638231ea42ec29d0230b1b013f1a57.json +1 -0
  62. package/artifacts/contracts/Governance/AccessControlManager.sol/AccessControlManager.dbg.json +4 -0
  63. package/artifacts/contracts/Governance/AccessControlManager.sol/AccessControlManager.json +369 -0
  64. package/artifacts/contracts/Governance/AccessControlledV5.sol/AccessControlledV5.dbg.json +4 -0
  65. package/artifacts/contracts/Governance/AccessControlledV5.sol/AccessControlledV5.json +45 -0
  66. package/artifacts/contracts/Governance/AccessControlledV8.sol/AccessControlledV8.dbg.json +4 -0
  67. package/artifacts/contracts/Governance/AccessControlledV8.sol/AccessControlledV8.json +181 -0
  68. package/artifacts/contracts/Governance/GovernorBravoDelegate.sol/GovernorBravoDelegate.dbg.json +4 -0
  69. package/artifacts/contracts/Governance/GovernorBravoDelegate.sol/GovernorBravoDelegate.json +1173 -0
  70. package/artifacts/contracts/Governance/GovernorBravoDelegator.sol/GovernorBravoDelegator.dbg.json +4 -0
  71. package/artifacts/contracts/Governance/GovernorBravoDelegator.sol/GovernorBravoDelegator.json +424 -0
  72. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorAlphaInterface.dbg.json +4 -0
  73. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorAlphaInterface.json +26 -0
  74. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegateStorageV1.dbg.json +4 -0
  75. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegateStorageV1.json +283 -0
  76. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegateStorageV2.dbg.json +4 -0
  77. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegateStorageV2.json +335 -0
  78. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegatorStorage.dbg.json +4 -0
  79. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegatorStorage.json +56 -0
  80. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoEvents.dbg.json +4 -0
  81. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoEvents.json +312 -0
  82. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/TimelockInterface.dbg.json +4 -0
  83. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/TimelockInterface.json +188 -0
  84. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/XvsVaultInterface.dbg.json +4 -0
  85. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/XvsVaultInterface.json +37 -0
  86. package/artifacts/contracts/Governance/IAccessControlManagerV5.sol/IAccessControlManagerV5.dbg.json +4 -0
  87. package/artifacts/contracts/Governance/IAccessControlManagerV5.sol/IAccessControlManagerV5.json +300 -0
  88. package/artifacts/contracts/Governance/IAccessControlManagerV8.sol/IAccessControlManagerV8.dbg.json +4 -0
  89. package/artifacts/contracts/Governance/IAccessControlManagerV8.sol/IAccessControlManagerV8.json +282 -0
  90. package/artifacts/contracts/Governance/Timelock.sol/Timelock.dbg.json +4 -0
  91. package/artifacts/contracts/Governance/Timelock.sol/Timelock.json +468 -0
  92. package/artifacts/contracts/Utils/SafeMath.sol/SafeMath.dbg.json +4 -0
  93. package/artifacts/contracts/Utils/SafeMath.sol/SafeMath.json +10 -0
  94. package/artifacts/contracts/test/MockAccessTest.sol/MockAccessTest.dbg.json +4 -0
  95. package/artifacts/contracts/test/MockAccessTest.sol/MockAccessTest.json +194 -0
  96. package/contracts/Governance/Timelock.sol +58 -1
  97. package/package.json +1 -1
@@ -0,0 +1,56 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "GovernorBravoDelegatorStorage",
4
+ "sourceName": "contracts/Governance/GovernorBravoInterfaces.sol",
5
+ "abi": [
6
+ {
7
+ "constant": true,
8
+ "inputs": [],
9
+ "name": "admin",
10
+ "outputs": [
11
+ {
12
+ "internalType": "address",
13
+ "name": "",
14
+ "type": "address"
15
+ }
16
+ ],
17
+ "payable": false,
18
+ "stateMutability": "view",
19
+ "type": "function"
20
+ },
21
+ {
22
+ "constant": true,
23
+ "inputs": [],
24
+ "name": "implementation",
25
+ "outputs": [
26
+ {
27
+ "internalType": "address",
28
+ "name": "",
29
+ "type": "address"
30
+ }
31
+ ],
32
+ "payable": false,
33
+ "stateMutability": "view",
34
+ "type": "function"
35
+ },
36
+ {
37
+ "constant": true,
38
+ "inputs": [],
39
+ "name": "pendingAdmin",
40
+ "outputs": [
41
+ {
42
+ "internalType": "address",
43
+ "name": "",
44
+ "type": "address"
45
+ }
46
+ ],
47
+ "payable": false,
48
+ "stateMutability": "view",
49
+ "type": "function"
50
+ }
51
+ ],
52
+ "bytecode": "0x608060405234801561001057600080fd5b50610106806100206000396000f3fe6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063267822471460415780635c60da1b14605b578063f851a440146061575b600080fd5b60476067565b6040516052919060a1565b60405180910390f35b60476076565b60476085565b6001546001600160a01b031681565b6002546001600160a01b031681565b6000546001600160a01b031681565b609b8160b3565b82525050565b6020810160ad82846094565b92915050565b60006001600160a01b03821660ad56fea365627a7a723158202a3d8dd9b0bfb56f9aa71474485acf85bff078f8f37b645cbbc9c1ac6fadbdf46c6578706572696d656e74616cf564736f6c63430005100040",
53
+ "deployedBytecode": "0x6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063267822471460415780635c60da1b14605b578063f851a440146061575b600080fd5b60476067565b6040516052919060a1565b60405180910390f35b60476076565b60476085565b6001546001600160a01b031681565b6002546001600160a01b031681565b6000546001600160a01b031681565b609b8160b3565b82525050565b6020810160ad82846094565b92915050565b60006001600160a01b03821660ad56fea365627a7a723158202a3d8dd9b0bfb56f9aa71474485acf85bff078f8f37b645cbbc9c1ac6fadbdf46c6578706572696d656e74616cf564736f6c63430005100040",
54
+ "linkReferences": {},
55
+ "deployedLinkReferences": {}
56
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/e5638231ea42ec29d0230b1b013f1a57.json"
4
+ }
@@ -0,0 +1,312 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "GovernorBravoEvents",
4
+ "sourceName": "contracts/Governance/GovernorBravoInterfaces.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "address",
12
+ "name": "oldAdmin",
13
+ "type": "address"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "newAdmin",
19
+ "type": "address"
20
+ }
21
+ ],
22
+ "name": "NewAdmin",
23
+ "type": "event"
24
+ },
25
+ {
26
+ "anonymous": false,
27
+ "inputs": [
28
+ {
29
+ "indexed": false,
30
+ "internalType": "address",
31
+ "name": "oldGuardian",
32
+ "type": "address"
33
+ },
34
+ {
35
+ "indexed": false,
36
+ "internalType": "address",
37
+ "name": "newGuardian",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "NewGuardian",
42
+ "type": "event"
43
+ },
44
+ {
45
+ "anonymous": false,
46
+ "inputs": [
47
+ {
48
+ "indexed": false,
49
+ "internalType": "address",
50
+ "name": "oldImplementation",
51
+ "type": "address"
52
+ },
53
+ {
54
+ "indexed": false,
55
+ "internalType": "address",
56
+ "name": "newImplementation",
57
+ "type": "address"
58
+ }
59
+ ],
60
+ "name": "NewImplementation",
61
+ "type": "event"
62
+ },
63
+ {
64
+ "anonymous": false,
65
+ "inputs": [
66
+ {
67
+ "indexed": false,
68
+ "internalType": "address",
69
+ "name": "oldPendingAdmin",
70
+ "type": "address"
71
+ },
72
+ {
73
+ "indexed": false,
74
+ "internalType": "address",
75
+ "name": "newPendingAdmin",
76
+ "type": "address"
77
+ }
78
+ ],
79
+ "name": "NewPendingAdmin",
80
+ "type": "event"
81
+ },
82
+ {
83
+ "anonymous": false,
84
+ "inputs": [
85
+ {
86
+ "indexed": false,
87
+ "internalType": "uint256",
88
+ "name": "id",
89
+ "type": "uint256"
90
+ }
91
+ ],
92
+ "name": "ProposalCanceled",
93
+ "type": "event"
94
+ },
95
+ {
96
+ "anonymous": false,
97
+ "inputs": [
98
+ {
99
+ "indexed": false,
100
+ "internalType": "uint256",
101
+ "name": "id",
102
+ "type": "uint256"
103
+ },
104
+ {
105
+ "indexed": false,
106
+ "internalType": "address",
107
+ "name": "proposer",
108
+ "type": "address"
109
+ },
110
+ {
111
+ "indexed": false,
112
+ "internalType": "address[]",
113
+ "name": "targets",
114
+ "type": "address[]"
115
+ },
116
+ {
117
+ "indexed": false,
118
+ "internalType": "uint256[]",
119
+ "name": "values",
120
+ "type": "uint256[]"
121
+ },
122
+ {
123
+ "indexed": false,
124
+ "internalType": "string[]",
125
+ "name": "signatures",
126
+ "type": "string[]"
127
+ },
128
+ {
129
+ "indexed": false,
130
+ "internalType": "bytes[]",
131
+ "name": "calldatas",
132
+ "type": "bytes[]"
133
+ },
134
+ {
135
+ "indexed": false,
136
+ "internalType": "uint256",
137
+ "name": "startBlock",
138
+ "type": "uint256"
139
+ },
140
+ {
141
+ "indexed": false,
142
+ "internalType": "uint256",
143
+ "name": "endBlock",
144
+ "type": "uint256"
145
+ },
146
+ {
147
+ "indexed": false,
148
+ "internalType": "string",
149
+ "name": "description",
150
+ "type": "string"
151
+ },
152
+ {
153
+ "indexed": false,
154
+ "internalType": "uint8",
155
+ "name": "proposalType",
156
+ "type": "uint8"
157
+ }
158
+ ],
159
+ "name": "ProposalCreated",
160
+ "type": "event"
161
+ },
162
+ {
163
+ "anonymous": false,
164
+ "inputs": [
165
+ {
166
+ "indexed": false,
167
+ "internalType": "uint256",
168
+ "name": "id",
169
+ "type": "uint256"
170
+ }
171
+ ],
172
+ "name": "ProposalExecuted",
173
+ "type": "event"
174
+ },
175
+ {
176
+ "anonymous": false,
177
+ "inputs": [
178
+ {
179
+ "indexed": false,
180
+ "internalType": "uint256",
181
+ "name": "oldMaxOperations",
182
+ "type": "uint256"
183
+ },
184
+ {
185
+ "indexed": false,
186
+ "internalType": "uint256",
187
+ "name": "newMaxOperations",
188
+ "type": "uint256"
189
+ }
190
+ ],
191
+ "name": "ProposalMaxOperationsUpdated",
192
+ "type": "event"
193
+ },
194
+ {
195
+ "anonymous": false,
196
+ "inputs": [
197
+ {
198
+ "indexed": false,
199
+ "internalType": "uint256",
200
+ "name": "id",
201
+ "type": "uint256"
202
+ },
203
+ {
204
+ "indexed": false,
205
+ "internalType": "uint256",
206
+ "name": "eta",
207
+ "type": "uint256"
208
+ }
209
+ ],
210
+ "name": "ProposalQueued",
211
+ "type": "event"
212
+ },
213
+ {
214
+ "anonymous": false,
215
+ "inputs": [
216
+ {
217
+ "indexed": false,
218
+ "internalType": "uint256",
219
+ "name": "oldProposalThreshold",
220
+ "type": "uint256"
221
+ },
222
+ {
223
+ "indexed": false,
224
+ "internalType": "uint256",
225
+ "name": "newProposalThreshold",
226
+ "type": "uint256"
227
+ }
228
+ ],
229
+ "name": "ProposalThresholdSet",
230
+ "type": "event"
231
+ },
232
+ {
233
+ "anonymous": false,
234
+ "inputs": [
235
+ {
236
+ "indexed": true,
237
+ "internalType": "address",
238
+ "name": "voter",
239
+ "type": "address"
240
+ },
241
+ {
242
+ "indexed": false,
243
+ "internalType": "uint256",
244
+ "name": "proposalId",
245
+ "type": "uint256"
246
+ },
247
+ {
248
+ "indexed": false,
249
+ "internalType": "uint8",
250
+ "name": "support",
251
+ "type": "uint8"
252
+ },
253
+ {
254
+ "indexed": false,
255
+ "internalType": "uint256",
256
+ "name": "votes",
257
+ "type": "uint256"
258
+ },
259
+ {
260
+ "indexed": false,
261
+ "internalType": "string",
262
+ "name": "reason",
263
+ "type": "string"
264
+ }
265
+ ],
266
+ "name": "VoteCast",
267
+ "type": "event"
268
+ },
269
+ {
270
+ "anonymous": false,
271
+ "inputs": [
272
+ {
273
+ "indexed": false,
274
+ "internalType": "uint256",
275
+ "name": "oldVotingDelay",
276
+ "type": "uint256"
277
+ },
278
+ {
279
+ "indexed": false,
280
+ "internalType": "uint256",
281
+ "name": "newVotingDelay",
282
+ "type": "uint256"
283
+ }
284
+ ],
285
+ "name": "VotingDelaySet",
286
+ "type": "event"
287
+ },
288
+ {
289
+ "anonymous": false,
290
+ "inputs": [
291
+ {
292
+ "indexed": false,
293
+ "internalType": "uint256",
294
+ "name": "oldVotingPeriod",
295
+ "type": "uint256"
296
+ },
297
+ {
298
+ "indexed": false,
299
+ "internalType": "uint256",
300
+ "name": "newVotingPeriod",
301
+ "type": "uint256"
302
+ }
303
+ ],
304
+ "name": "VotingPeriodSet",
305
+ "type": "event"
306
+ }
307
+ ],
308
+ "bytecode": "0x6080604052348015600f57600080fd5b50604c80601d6000396000f3fe6080604052600080fdfea365627a7a72315820364dd31c55c9a70defd7874f6f01047f21edea4a43143255f950aa2c96119dd06c6578706572696d656e74616cf564736f6c63430005100040",
309
+ "deployedBytecode": "0x6080604052600080fdfea365627a7a72315820364dd31c55c9a70defd7874f6f01047f21edea4a43143255f950aa2c96119dd06c6578706572696d656e74616cf564736f6c63430005100040",
310
+ "linkReferences": {},
311
+ "deployedLinkReferences": {}
312
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/e5638231ea42ec29d0230b1b013f1a57.json"
4
+ }
@@ -0,0 +1,188 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "TimelockInterface",
4
+ "sourceName": "contracts/Governance/GovernorBravoInterfaces.sol",
5
+ "abi": [
6
+ {
7
+ "constant": true,
8
+ "inputs": [],
9
+ "name": "GRACE_PERIOD",
10
+ "outputs": [
11
+ {
12
+ "internalType": "uint256",
13
+ "name": "",
14
+ "type": "uint256"
15
+ }
16
+ ],
17
+ "payable": false,
18
+ "stateMutability": "view",
19
+ "type": "function"
20
+ },
21
+ {
22
+ "constant": false,
23
+ "inputs": [],
24
+ "name": "acceptAdmin",
25
+ "outputs": [],
26
+ "payable": false,
27
+ "stateMutability": "nonpayable",
28
+ "type": "function"
29
+ },
30
+ {
31
+ "constant": false,
32
+ "inputs": [
33
+ {
34
+ "internalType": "address",
35
+ "name": "target",
36
+ "type": "address"
37
+ },
38
+ {
39
+ "internalType": "uint256",
40
+ "name": "value",
41
+ "type": "uint256"
42
+ },
43
+ {
44
+ "internalType": "string",
45
+ "name": "signature",
46
+ "type": "string"
47
+ },
48
+ {
49
+ "internalType": "bytes",
50
+ "name": "data",
51
+ "type": "bytes"
52
+ },
53
+ {
54
+ "internalType": "uint256",
55
+ "name": "eta",
56
+ "type": "uint256"
57
+ }
58
+ ],
59
+ "name": "cancelTransaction",
60
+ "outputs": [],
61
+ "payable": false,
62
+ "stateMutability": "nonpayable",
63
+ "type": "function"
64
+ },
65
+ {
66
+ "constant": true,
67
+ "inputs": [],
68
+ "name": "delay",
69
+ "outputs": [
70
+ {
71
+ "internalType": "uint256",
72
+ "name": "",
73
+ "type": "uint256"
74
+ }
75
+ ],
76
+ "payable": false,
77
+ "stateMutability": "view",
78
+ "type": "function"
79
+ },
80
+ {
81
+ "constant": false,
82
+ "inputs": [
83
+ {
84
+ "internalType": "address",
85
+ "name": "target",
86
+ "type": "address"
87
+ },
88
+ {
89
+ "internalType": "uint256",
90
+ "name": "value",
91
+ "type": "uint256"
92
+ },
93
+ {
94
+ "internalType": "string",
95
+ "name": "signature",
96
+ "type": "string"
97
+ },
98
+ {
99
+ "internalType": "bytes",
100
+ "name": "data",
101
+ "type": "bytes"
102
+ },
103
+ {
104
+ "internalType": "uint256",
105
+ "name": "eta",
106
+ "type": "uint256"
107
+ }
108
+ ],
109
+ "name": "executeTransaction",
110
+ "outputs": [
111
+ {
112
+ "internalType": "bytes",
113
+ "name": "",
114
+ "type": "bytes"
115
+ }
116
+ ],
117
+ "payable": true,
118
+ "stateMutability": "payable",
119
+ "type": "function"
120
+ },
121
+ {
122
+ "constant": false,
123
+ "inputs": [
124
+ {
125
+ "internalType": "address",
126
+ "name": "target",
127
+ "type": "address"
128
+ },
129
+ {
130
+ "internalType": "uint256",
131
+ "name": "value",
132
+ "type": "uint256"
133
+ },
134
+ {
135
+ "internalType": "string",
136
+ "name": "signature",
137
+ "type": "string"
138
+ },
139
+ {
140
+ "internalType": "bytes",
141
+ "name": "data",
142
+ "type": "bytes"
143
+ },
144
+ {
145
+ "internalType": "uint256",
146
+ "name": "eta",
147
+ "type": "uint256"
148
+ }
149
+ ],
150
+ "name": "queueTransaction",
151
+ "outputs": [
152
+ {
153
+ "internalType": "bytes32",
154
+ "name": "",
155
+ "type": "bytes32"
156
+ }
157
+ ],
158
+ "payable": false,
159
+ "stateMutability": "nonpayable",
160
+ "type": "function"
161
+ },
162
+ {
163
+ "constant": true,
164
+ "inputs": [
165
+ {
166
+ "internalType": "bytes32",
167
+ "name": "hash",
168
+ "type": "bytes32"
169
+ }
170
+ ],
171
+ "name": "queuedTransactions",
172
+ "outputs": [
173
+ {
174
+ "internalType": "bool",
175
+ "name": "",
176
+ "type": "bool"
177
+ }
178
+ ],
179
+ "payable": false,
180
+ "stateMutability": "view",
181
+ "type": "function"
182
+ }
183
+ ],
184
+ "bytecode": "0x",
185
+ "deployedBytecode": "0x",
186
+ "linkReferences": {},
187
+ "deployedLinkReferences": {}
188
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/e5638231ea42ec29d0230b1b013f1a57.json"
4
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "XvsVaultInterface",
4
+ "sourceName": "contracts/Governance/GovernorBravoInterfaces.sol",
5
+ "abi": [
6
+ {
7
+ "constant": true,
8
+ "inputs": [
9
+ {
10
+ "internalType": "address",
11
+ "name": "account",
12
+ "type": "address"
13
+ },
14
+ {
15
+ "internalType": "uint256",
16
+ "name": "blockNumber",
17
+ "type": "uint256"
18
+ }
19
+ ],
20
+ "name": "getPriorVotes",
21
+ "outputs": [
22
+ {
23
+ "internalType": "uint96",
24
+ "name": "",
25
+ "type": "uint96"
26
+ }
27
+ ],
28
+ "payable": false,
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ }
32
+ ],
33
+ "bytecode": "0x",
34
+ "deployedBytecode": "0x",
35
+ "linkReferences": {},
36
+ "deployedLinkReferences": {}
37
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/56323f6708e82b6f7b159248c3c1268a.json"
4
+ }