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

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 (105) hide show
  1. package/contracts/Governance/AccessControlManager.sol +44 -5
  2. package/contracts/Governance/AccessControlledV5.sol +4 -5
  3. package/contracts/Governance/AccessControlledV8.sol +4 -6
  4. package/contracts/Governance/GovernorBravoDelegate.sol +67 -0
  5. package/contracts/Governance/GovernorBravoDelegator.sol +5 -0
  6. package/contracts/Governance/GovernorBravoInterfaces.sol +23 -2
  7. package/contracts/Governance/IAccessControlManagerV5.sol +5 -0
  8. package/contracts/Governance/IAccessControlManagerV8.sol +5 -0
  9. package/contracts/Governance/Timelock.sol +5 -0
  10. package/package.json +1 -1
  11. package/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.dbg.json +0 -4
  12. package/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.json +0 -215
  13. package/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.dbg.json +0 -4
  14. package/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.json +0 -183
  15. package/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +0 -4
  16. package/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json +0 -10
  17. package/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.dbg.json +0 -4
  18. package/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.json +0 -10
  19. package/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.dbg.json +0 -4
  20. package/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.json +0 -30
  21. package/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.dbg.json +0 -4
  22. package/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.json +0 -30
  23. package/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.dbg.json +0 -4
  24. package/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.json +0 -10
  25. package/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json +0 -4
  26. package/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.json +0 -115
  27. package/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +0 -4
  28. package/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +0 -76
  29. package/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +0 -4
  30. package/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +0 -24
  31. package/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +0 -4
  32. package/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +0 -10
  33. package/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +0 -4
  34. package/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +0 -24
  35. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/Owned.dbg.json +0 -4
  36. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/Owned.json +0 -66
  37. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/Tokenlock.dbg.json +0 -4
  38. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/Tokenlock.json +0 -90
  39. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/XVS.dbg.json +0 -4
  40. package/artifacts/@venusprotocol/venus-protocol/contracts/Governance/XVS.sol/XVS.json +0 -618
  41. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/Address.sol/Address.dbg.json +0 -4
  42. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/Address.sol/Address.json +0 -10
  43. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/ECDSA.sol/ECDSA.dbg.json +0 -4
  44. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/ECDSA.sol/ECDSA.json +0 -10
  45. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/IBEP20.sol/IBEP20.dbg.json +0 -4
  46. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/IBEP20.sol/IBEP20.json +0 -206
  47. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/SafeBEP20.sol/SafeBEP20.dbg.json +0 -4
  48. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/SafeBEP20.sol/SafeBEP20.json +0 -10
  49. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/SafeMath.sol/SafeMath.dbg.json +0 -4
  50. package/artifacts/@venusprotocol/venus-protocol/contracts/Utils/SafeMath.sol/SafeMath.json +0 -10
  51. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSStore.sol/XVSStore.dbg.json +0 -4
  52. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSStore.sol/XVSStore.json +0 -244
  53. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVault.sol/IXVSStore.dbg.json +0 -4
  54. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVault.sol/IXVSStore.json +0 -56
  55. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVault.sol/XVSVault.dbg.json +0 -4
  56. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVault.sol/XVSVault.json +0 -1211
  57. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultErrorReporter.sol/XVSVaultErrorReporter.dbg.json +0 -4
  58. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultErrorReporter.sol/XVSVaultErrorReporter.json +0 -36
  59. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultProxy.sol/XVSVaultProxy.dbg.json +0 -4
  60. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultProxy.sol/XVSVaultProxy.json +0 -255
  61. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultAdminStorage.dbg.json +0 -4
  62. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultAdminStorage.json +0 -71
  63. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultStorage.dbg.json +0 -4
  64. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultStorage.json +0 -313
  65. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultStorageV1.dbg.json +0 -4
  66. package/artifacts/@venusprotocol/venus-protocol/contracts/XVSVault/XVSVaultStorage.sol/XVSVaultStorageV1.json +0 -240
  67. package/artifacts/build-info/0ed8a45a04a58741f8391cb7a77f7ff9.json +0 -1
  68. package/artifacts/build-info/1659b7cff20ee8b7949bfbefa681db8b.json +0 -1
  69. package/artifacts/build-info/21eeeec59918770851ef762f6f414247.json +0 -1
  70. package/artifacts/build-info/60a7730a05f99cbf38891be24e3a5c77.json +0 -1
  71. package/artifacts/build-info/fa9891803c56b8a530ff515ffc45dc03.json +0 -1
  72. package/artifacts/contracts/Governance/AccessControlManager.sol/AccessControlManager.dbg.json +0 -4
  73. package/artifacts/contracts/Governance/AccessControlManager.sol/AccessControlManager.json +0 -369
  74. package/artifacts/contracts/Governance/AccessControlledV5.sol/AccessControlledV5.dbg.json +0 -4
  75. package/artifacts/contracts/Governance/AccessControlledV5.sol/AccessControlledV5.json +0 -45
  76. package/artifacts/contracts/Governance/AccessControlledV8.sol/AccessControlledV8.dbg.json +0 -4
  77. package/artifacts/contracts/Governance/AccessControlledV8.sol/AccessControlledV8.json +0 -181
  78. package/artifacts/contracts/Governance/GovernorBravoDelegate.sol/GovernorBravoDelegate.dbg.json +0 -4
  79. package/artifacts/contracts/Governance/GovernorBravoDelegate.sol/GovernorBravoDelegate.json +0 -1173
  80. package/artifacts/contracts/Governance/GovernorBravoDelegator.sol/GovernorBravoDelegator.dbg.json +0 -4
  81. package/artifacts/contracts/Governance/GovernorBravoDelegator.sol/GovernorBravoDelegator.json +0 -424
  82. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorAlphaInterface.dbg.json +0 -4
  83. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorAlphaInterface.json +0 -26
  84. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegateStorageV1.dbg.json +0 -4
  85. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegateStorageV1.json +0 -283
  86. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegateStorageV2.dbg.json +0 -4
  87. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegateStorageV2.json +0 -335
  88. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegatorStorage.dbg.json +0 -4
  89. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoDelegatorStorage.json +0 -56
  90. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoEvents.dbg.json +0 -4
  91. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/GovernorBravoEvents.json +0 -312
  92. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/TimelockInterface.dbg.json +0 -4
  93. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/TimelockInterface.json +0 -188
  94. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/XvsVaultInterface.dbg.json +0 -4
  95. package/artifacts/contracts/Governance/GovernorBravoInterfaces.sol/XvsVaultInterface.json +0 -37
  96. package/artifacts/contracts/Governance/IAccessControlManagerV5.sol/IAccessControlManagerV5.dbg.json +0 -4
  97. package/artifacts/contracts/Governance/IAccessControlManagerV5.sol/IAccessControlManagerV5.json +0 -300
  98. package/artifacts/contracts/Governance/IAccessControlManagerV8.sol/IAccessControlManagerV8.dbg.json +0 -4
  99. package/artifacts/contracts/Governance/IAccessControlManagerV8.sol/IAccessControlManagerV8.json +0 -282
  100. package/artifacts/contracts/Governance/Timelock.sol/Timelock.dbg.json +0 -4
  101. package/artifacts/contracts/Governance/Timelock.sol/Timelock.json +0 -468
  102. package/artifacts/contracts/Utils/SafeMath.sol/SafeMath.dbg.json +0 -4
  103. package/artifacts/contracts/Utils/SafeMath.sol/SafeMath.json +0 -10
  104. package/artifacts/contracts/test/MockAccessTest.sol/MockAccessTest.dbg.json +0 -4
  105. package/artifacts/contracts/test/MockAccessTest.sol/MockAccessTest.json +0 -194
@@ -1,56 +0,0 @@
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": "0x608060405234801561001057600080fd5b50610106806100206000396000f3fe6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063267822471460415780635c60da1b14605b578063f851a440146061575b600080fd5b60476067565b6040516052919060a1565b60405180910390f35b60476076565b60476085565b6001546001600160a01b031681565b6002546001600160a01b031681565b6000546001600160a01b031681565b609b8160b3565b82525050565b6020810160ad82846094565b92915050565b60006001600160a01b03821660ad56fea365627a7a723158208970cfc9dd0cf002ce8a7051b247b7b33e7d9d1970c71b17cb28b8cd2fa9349e6c6578706572696d656e74616cf564736f6c63430005100040",
53
- "deployedBytecode": "0x6080604052348015600f57600080fd5b5060043610603c5760003560e01c8063267822471460415780635c60da1b14605b578063f851a440146061575b600080fd5b60476067565b6040516052919060a1565b60405180910390f35b60476076565b60476085565b6001546001600160a01b031681565b6002546001600160a01b031681565b6000546001600160a01b031681565b609b8160b3565b82525050565b6020810160ad82846094565b92915050565b60006001600160a01b03821660ad56fea365627a7a723158208970cfc9dd0cf002ce8a7051b247b7b33e7d9d1970c71b17cb28b8cd2fa9349e6c6578706572696d656e74616cf564736f6c63430005100040",
54
- "linkReferences": {},
55
- "deployedLinkReferences": {}
56
- }
@@ -1,4 +0,0 @@
1
- {
2
- "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/fa9891803c56b8a530ff515ffc45dc03.json"
4
- }
@@ -1,312 +0,0 @@
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": "0x6080604052348015600f57600080fd5b50604c80601d6000396000f3fe6080604052600080fdfea365627a7a72315820e013145920e1a9bd877dfe2c3ed873b3ec975ffeec240c717ece17ec87cc8e296c6578706572696d656e74616cf564736f6c63430005100040",
309
- "deployedBytecode": "0x6080604052600080fdfea365627a7a72315820e013145920e1a9bd877dfe2c3ed873b3ec975ffeec240c717ece17ec87cc8e296c6578706572696d656e74616cf564736f6c63430005100040",
310
- "linkReferences": {},
311
- "deployedLinkReferences": {}
312
- }
@@ -1,4 +0,0 @@
1
- {
2
- "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/fa9891803c56b8a530ff515ffc45dc03.json"
4
- }
@@ -1,188 +0,0 @@
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
- }
@@ -1,4 +0,0 @@
1
- {
2
- "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/fa9891803c56b8a530ff515ffc45dc03.json"
4
- }
@@ -1,37 +0,0 @@
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
- }
@@ -1,4 +0,0 @@
1
- {
2
- "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/21eeeec59918770851ef762f6f414247.json"
4
- }