morpho-contracts-helper 0.0.2 → 0.0.4

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 (201) hide show
  1. package/contracts/DComp.sol +137 -0
  2. package/contracts/external/Multicall3.sol +216 -0
  3. package/contracts/vendor/@compound-finance/compound-governance/contracts/Comp.sol +301 -0
  4. package/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp.sol +34 -0
  5. package/dist/hardhat.config.cjs +9 -0
  6. package/dist/hardhat.config.cjs.map +1 -1
  7. package/dist/hardhat.config.d.cts.map +1 -1
  8. package/dist/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +55 -0
  9. package/dist/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts.map +1 -0
  10. package/dist/typechain-types/@openzeppelin/contracts/access/Ownable.js +3 -0
  11. package/dist/typechain-types/@openzeppelin/contracts/access/Ownable.js.map +1 -0
  12. package/dist/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +78 -0
  13. package/dist/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts.map +1 -0
  14. package/dist/typechain-types/@openzeppelin/contracts/access/Ownable2Step.js +3 -0
  15. package/dist/typechain-types/@openzeppelin/contracts/access/Ownable2Step.js.map +1 -0
  16. package/dist/typechain-types/@openzeppelin/contracts/access/index.d.ts +3 -0
  17. package/dist/typechain-types/@openzeppelin/contracts/access/index.d.ts.map +1 -0
  18. package/dist/typechain-types/@openzeppelin/contracts/access/index.js +3 -0
  19. package/dist/typechain-types/@openzeppelin/contracts/access/index.js.map +1 -0
  20. package/dist/typechain-types/@openzeppelin/contracts/index.d.ts +4 -0
  21. package/dist/typechain-types/@openzeppelin/contracts/index.d.ts.map +1 -1
  22. package/dist/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +232 -0
  23. package/dist/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts.map +1 -0
  24. package/dist/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.js +3 -0
  25. package/dist/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.js.map +1 -0
  26. package/dist/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +1 -0
  27. package/dist/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts.map +1 -1
  28. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Wrapper.d.ts +174 -0
  29. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Wrapper.d.ts.map +1 -0
  30. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Wrapper.js +3 -0
  31. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Wrapper.js.map +1 -0
  32. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
  33. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts.map +1 -1
  34. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +2 -0
  35. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts.map +1 -1
  36. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +21 -0
  37. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts.map +1 -0
  38. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.js +3 -0
  39. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.js.map +1 -0
  40. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +2 -0
  41. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts.map +1 -0
  42. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.js +3 -0
  43. package/dist/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.js.map +1 -0
  44. package/dist/typechain-types/@openzeppelin/contracts/utils/index.d.ts +3 -0
  45. package/dist/typechain-types/@openzeppelin/contracts/utils/index.d.ts.map +1 -0
  46. package/dist/typechain-types/@openzeppelin/contracts/utils/index.js +3 -0
  47. package/dist/typechain-types/@openzeppelin/contracts/utils/index.js.map +1 -0
  48. package/dist/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +30 -0
  49. package/dist/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts.map +1 -0
  50. package/dist/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.js +3 -0
  51. package/dist/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.js.map +1 -0
  52. package/dist/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
  53. package/dist/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts.map +1 -0
  54. package/dist/typechain-types/@openzeppelin/contracts/utils/introspection/index.js +3 -0
  55. package/dist/typechain-types/@openzeppelin/contracts/utils/introspection/index.js.map +1 -0
  56. package/dist/typechain-types/contracts/DComp.d.ts +285 -0
  57. package/dist/typechain-types/contracts/DComp.d.ts.map +1 -0
  58. package/dist/typechain-types/contracts/DComp.js +3 -0
  59. package/dist/typechain-types/contracts/DComp.js.map +1 -0
  60. package/dist/typechain-types/contracts/external/Multicall3.d.ts +229 -0
  61. package/dist/typechain-types/contracts/external/Multicall3.d.ts.map +1 -0
  62. package/dist/typechain-types/contracts/external/Multicall3.js +3 -0
  63. package/dist/typechain-types/contracts/external/Multicall3.js.map +1 -0
  64. package/dist/typechain-types/contracts/external/index.d.ts +1 -0
  65. package/dist/typechain-types/contracts/external/index.d.ts.map +1 -1
  66. package/dist/typechain-types/contracts/index.d.ts +3 -0
  67. package/dist/typechain-types/contracts/index.d.ts.map +1 -1
  68. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/Comp.d.ts +285 -0
  69. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/Comp.d.ts.map +1 -0
  70. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/Comp.js +3 -0
  71. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/Comp.js.map +1 -0
  72. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/index.d.ts +4 -0
  73. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/index.d.ts.map +1 -0
  74. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/index.js +3 -0
  75. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/index.js.map +1 -0
  76. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp.d.ts +285 -0
  77. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp.d.ts.map +1 -0
  78. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp.js +3 -0
  79. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp.js.map +1 -0
  80. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.d.ts +2 -0
  81. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.d.ts.map +1 -0
  82. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.js +3 -0
  83. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.js.map +1 -0
  84. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/index.d.ts +3 -0
  85. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/index.d.ts.map +1 -0
  86. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/index.js +3 -0
  87. package/dist/typechain-types/contracts/vendor/@compound-finance/compound-governance/index.js.map +1 -0
  88. package/dist/typechain-types/contracts/vendor/@compound-finance/index.d.ts +3 -0
  89. package/dist/typechain-types/contracts/vendor/@compound-finance/index.d.ts.map +1 -0
  90. package/dist/typechain-types/contracts/vendor/@compound-finance/index.js +3 -0
  91. package/dist/typechain-types/contracts/vendor/@compound-finance/index.js.map +1 -0
  92. package/dist/typechain-types/contracts/vendor/index.d.ts +3 -0
  93. package/dist/typechain-types/contracts/vendor/index.d.ts.map +1 -0
  94. package/dist/typechain-types/contracts/vendor/index.js +3 -0
  95. package/dist/typechain-types/contracts/vendor/index.js.map +1 -0
  96. package/dist/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +96 -0
  97. package/dist/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts.map +1 -0
  98. package/dist/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.js +134 -0
  99. package/dist/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.js.map +1 -0
  100. package/dist/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +65 -0
  101. package/dist/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts.map +1 -0
  102. package/dist/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.js +95 -0
  103. package/dist/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.js.map +1 -0
  104. package/dist/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +3 -0
  105. package/dist/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts.map +1 -0
  106. package/dist/typechain-types/factories/@openzeppelin/contracts/access/index.js +12 -0
  107. package/dist/typechain-types/factories/@openzeppelin/contracts/access/index.js.map +1 -0
  108. package/dist/typechain-types/factories/@openzeppelin/contracts/index.d.ts +2 -0
  109. package/dist/typechain-types/factories/@openzeppelin/contracts/index.d.ts.map +1 -1
  110. package/dist/typechain-types/factories/@openzeppelin/contracts/index.js +3 -1
  111. package/dist/typechain-types/factories/@openzeppelin/contracts/index.js.map +1 -1
  112. package/dist/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +290 -0
  113. package/dist/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts.map +1 -0
  114. package/dist/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.js +392 -0
  115. package/dist/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.js.map +1 -0
  116. package/dist/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +1 -0
  117. package/dist/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts.map +1 -1
  118. package/dist/typechain-types/factories/@openzeppelin/contracts/interfaces/index.js +3 -1
  119. package/dist/typechain-types/factories/@openzeppelin/contracts/interfaces/index.js.map +1 -1
  120. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Wrapper__factory.d.ts +304 -0
  121. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Wrapper__factory.d.ts.map +1 -0
  122. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Wrapper__factory.js +412 -0
  123. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Wrapper__factory.js.map +1 -0
  124. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
  125. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts.map +1 -1
  126. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.js +3 -1
  127. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.js.map +1 -1
  128. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +1 -0
  129. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts.map +1 -1
  130. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.js +2 -1
  131. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.js.map +1 -1
  132. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +47 -0
  133. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts.map +1 -0
  134. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.js +73 -0
  135. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.js.map +1 -0
  136. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +2 -0
  137. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts.map +1 -0
  138. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.js +10 -0
  139. package/dist/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.js.map +1 -0
  140. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +2 -0
  141. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts.map +1 -0
  142. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/index.js +42 -0
  143. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/index.js.map +1 -0
  144. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +22 -0
  145. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts.map +1 -0
  146. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.js +40 -0
  147. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.js.map +1 -0
  148. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
  149. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts.map +1 -0
  150. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.js +10 -0
  151. package/dist/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.js.map +1 -0
  152. package/dist/typechain-types/factories/contracts/DComp__factory.d.ts +514 -0
  153. package/dist/typechain-types/factories/contracts/DComp__factory.d.ts.map +1 -0
  154. package/dist/typechain-types/factories/contracts/DComp__factory.js +686 -0
  155. package/dist/typechain-types/factories/contracts/DComp__factory.js.map +1 -0
  156. package/dist/typechain-types/factories/contracts/external/Multicall3__factory.d.ts +354 -0
  157. package/dist/typechain-types/factories/contracts/external/Multicall3__factory.d.ts.map +1 -0
  158. package/dist/typechain-types/factories/contracts/external/Multicall3__factory.js +479 -0
  159. package/dist/typechain-types/factories/contracts/external/Multicall3__factory.js.map +1 -0
  160. package/dist/typechain-types/factories/contracts/external/index.d.ts +1 -0
  161. package/dist/typechain-types/factories/contracts/external/index.d.ts.map +1 -1
  162. package/dist/typechain-types/factories/contracts/external/index.js +3 -1
  163. package/dist/typechain-types/factories/contracts/external/index.js.map +1 -1
  164. package/dist/typechain-types/factories/contracts/index.d.ts +2 -0
  165. package/dist/typechain-types/factories/contracts/index.d.ts.map +1 -1
  166. package/dist/typechain-types/factories/contracts/index.js +4 -1
  167. package/dist/typechain-types/factories/contracts/index.js.map +1 -1
  168. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/Comp__factory.d.ts +397 -0
  169. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/Comp__factory.d.ts.map +1 -0
  170. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/Comp__factory.js +530 -0
  171. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/Comp__factory.js.map +1 -0
  172. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/index.d.ts +3 -0
  173. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/index.d.ts.map +1 -0
  174. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/index.js +44 -0
  175. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/index.js.map +1 -0
  176. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp__factory.d.ts +374 -0
  177. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp__factory.d.ts.map +1 -0
  178. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp__factory.js +499 -0
  179. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp__factory.js.map +1 -0
  180. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.d.ts +2 -0
  181. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.d.ts.map +1 -0
  182. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.js +10 -0
  183. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.js.map +1 -0
  184. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/index.d.ts +2 -0
  185. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/index.d.ts.map +1 -0
  186. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/index.js +42 -0
  187. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/index.js.map +1 -0
  188. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/index.d.ts +2 -0
  189. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/index.d.ts.map +1 -0
  190. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/index.js +42 -0
  191. package/dist/typechain-types/factories/contracts/vendor/@compound-finance/index.js.map +1 -0
  192. package/dist/typechain-types/factories/contracts/vendor/index.d.ts +2 -0
  193. package/dist/typechain-types/factories/contracts/vendor/index.d.ts.map +1 -0
  194. package/dist/typechain-types/factories/contracts/vendor/index.js +42 -0
  195. package/dist/typechain-types/factories/contracts/vendor/index.js.map +1 -0
  196. package/dist/typechain-types/index.d.ts +20 -0
  197. package/dist/typechain-types/index.d.ts.map +1 -1
  198. package/dist/typechain-types/index.js +21 -1
  199. package/dist/typechain-types/index.js.map +1 -1
  200. package/hardhat.config.cts +9 -0
  201. package/package.json +1 -1
@@ -0,0 +1,499 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ // @ts-nocheck
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.IComp__factory = void 0;
8
+ const ethers_1 = require("ethers");
9
+ const _abi = [
10
+ {
11
+ anonymous: false,
12
+ inputs: [
13
+ {
14
+ indexed: true,
15
+ internalType: "address",
16
+ name: "owner",
17
+ type: "address",
18
+ },
19
+ {
20
+ indexed: true,
21
+ internalType: "address",
22
+ name: "spender",
23
+ type: "address",
24
+ },
25
+ {
26
+ indexed: false,
27
+ internalType: "uint256",
28
+ name: "amount",
29
+ type: "uint256",
30
+ },
31
+ ],
32
+ name: "Approval",
33
+ type: "event",
34
+ },
35
+ {
36
+ anonymous: false,
37
+ inputs: [
38
+ {
39
+ indexed: true,
40
+ internalType: "address",
41
+ name: "delegator",
42
+ type: "address",
43
+ },
44
+ {
45
+ indexed: true,
46
+ internalType: "address",
47
+ name: "fromDelegate",
48
+ type: "address",
49
+ },
50
+ {
51
+ indexed: true,
52
+ internalType: "address",
53
+ name: "toDelegate",
54
+ type: "address",
55
+ },
56
+ ],
57
+ name: "DelegateChanged",
58
+ type: "event",
59
+ },
60
+ {
61
+ anonymous: false,
62
+ inputs: [
63
+ {
64
+ indexed: true,
65
+ internalType: "address",
66
+ name: "delegate",
67
+ type: "address",
68
+ },
69
+ {
70
+ indexed: false,
71
+ internalType: "uint256",
72
+ name: "previousBalance",
73
+ type: "uint256",
74
+ },
75
+ {
76
+ indexed: false,
77
+ internalType: "uint256",
78
+ name: "newBalance",
79
+ type: "uint256",
80
+ },
81
+ ],
82
+ name: "DelegateVotesChanged",
83
+ type: "event",
84
+ },
85
+ {
86
+ anonymous: false,
87
+ inputs: [
88
+ {
89
+ indexed: true,
90
+ internalType: "address",
91
+ name: "from",
92
+ type: "address",
93
+ },
94
+ {
95
+ indexed: true,
96
+ internalType: "address",
97
+ name: "to",
98
+ type: "address",
99
+ },
100
+ {
101
+ indexed: false,
102
+ internalType: "uint256",
103
+ name: "amount",
104
+ type: "uint256",
105
+ },
106
+ ],
107
+ name: "Transfer",
108
+ type: "event",
109
+ },
110
+ {
111
+ inputs: [],
112
+ name: "DELEGATION_TYPEHASH",
113
+ outputs: [
114
+ {
115
+ internalType: "bytes32",
116
+ name: "",
117
+ type: "bytes32",
118
+ },
119
+ ],
120
+ stateMutability: "view",
121
+ type: "function",
122
+ },
123
+ {
124
+ inputs: [],
125
+ name: "DOMAIN_TYPEHASH",
126
+ outputs: [
127
+ {
128
+ internalType: "bytes32",
129
+ name: "",
130
+ type: "bytes32",
131
+ },
132
+ ],
133
+ stateMutability: "view",
134
+ type: "function",
135
+ },
136
+ {
137
+ inputs: [
138
+ {
139
+ internalType: "address",
140
+ name: "account",
141
+ type: "address",
142
+ },
143
+ {
144
+ internalType: "address",
145
+ name: "spender",
146
+ type: "address",
147
+ },
148
+ ],
149
+ name: "allowance",
150
+ outputs: [
151
+ {
152
+ internalType: "uint256",
153
+ name: "",
154
+ type: "uint256",
155
+ },
156
+ ],
157
+ stateMutability: "view",
158
+ type: "function",
159
+ },
160
+ {
161
+ inputs: [
162
+ {
163
+ internalType: "address",
164
+ name: "spender",
165
+ type: "address",
166
+ },
167
+ {
168
+ internalType: "uint256",
169
+ name: "rawAmount",
170
+ type: "uint256",
171
+ },
172
+ ],
173
+ name: "approve",
174
+ outputs: [
175
+ {
176
+ internalType: "bool",
177
+ name: "",
178
+ type: "bool",
179
+ },
180
+ ],
181
+ stateMutability: "nonpayable",
182
+ type: "function",
183
+ },
184
+ {
185
+ inputs: [
186
+ {
187
+ internalType: "address",
188
+ name: "account",
189
+ type: "address",
190
+ },
191
+ ],
192
+ name: "balanceOf",
193
+ outputs: [
194
+ {
195
+ internalType: "uint256",
196
+ name: "",
197
+ type: "uint256",
198
+ },
199
+ ],
200
+ stateMutability: "view",
201
+ type: "function",
202
+ },
203
+ {
204
+ inputs: [
205
+ {
206
+ internalType: "address",
207
+ name: "",
208
+ type: "address",
209
+ },
210
+ {
211
+ internalType: "uint32",
212
+ name: "",
213
+ type: "uint32",
214
+ },
215
+ ],
216
+ name: "checkpoints",
217
+ outputs: [
218
+ {
219
+ internalType: "uint32",
220
+ name: "fromBlock",
221
+ type: "uint32",
222
+ },
223
+ {
224
+ internalType: "uint96",
225
+ name: "votes",
226
+ type: "uint96",
227
+ },
228
+ ],
229
+ stateMutability: "view",
230
+ type: "function",
231
+ },
232
+ {
233
+ inputs: [],
234
+ name: "decimals",
235
+ outputs: [
236
+ {
237
+ internalType: "uint8",
238
+ name: "",
239
+ type: "uint8",
240
+ },
241
+ ],
242
+ stateMutability: "view",
243
+ type: "function",
244
+ },
245
+ {
246
+ inputs: [
247
+ {
248
+ internalType: "address",
249
+ name: "delegatee",
250
+ type: "address",
251
+ },
252
+ ],
253
+ name: "delegate",
254
+ outputs: [],
255
+ stateMutability: "nonpayable",
256
+ type: "function",
257
+ },
258
+ {
259
+ inputs: [
260
+ {
261
+ internalType: "address",
262
+ name: "delegatee",
263
+ type: "address",
264
+ },
265
+ {
266
+ internalType: "uint256",
267
+ name: "nonce",
268
+ type: "uint256",
269
+ },
270
+ {
271
+ internalType: "uint256",
272
+ name: "expiry",
273
+ type: "uint256",
274
+ },
275
+ {
276
+ internalType: "uint8",
277
+ name: "v",
278
+ type: "uint8",
279
+ },
280
+ {
281
+ internalType: "bytes32",
282
+ name: "r",
283
+ type: "bytes32",
284
+ },
285
+ {
286
+ internalType: "bytes32",
287
+ name: "s",
288
+ type: "bytes32",
289
+ },
290
+ ],
291
+ name: "delegateBySig",
292
+ outputs: [],
293
+ stateMutability: "nonpayable",
294
+ type: "function",
295
+ },
296
+ {
297
+ inputs: [
298
+ {
299
+ internalType: "address",
300
+ name: "",
301
+ type: "address",
302
+ },
303
+ ],
304
+ name: "delegates",
305
+ outputs: [
306
+ {
307
+ internalType: "address",
308
+ name: "",
309
+ type: "address",
310
+ },
311
+ ],
312
+ stateMutability: "view",
313
+ type: "function",
314
+ },
315
+ {
316
+ inputs: [
317
+ {
318
+ internalType: "address",
319
+ name: "account",
320
+ type: "address",
321
+ },
322
+ ],
323
+ name: "getCurrentVotes",
324
+ outputs: [
325
+ {
326
+ internalType: "uint96",
327
+ name: "",
328
+ type: "uint96",
329
+ },
330
+ ],
331
+ stateMutability: "view",
332
+ type: "function",
333
+ },
334
+ {
335
+ inputs: [
336
+ {
337
+ internalType: "address",
338
+ name: "account",
339
+ type: "address",
340
+ },
341
+ {
342
+ internalType: "uint256",
343
+ name: "blockNumber",
344
+ type: "uint256",
345
+ },
346
+ ],
347
+ name: "getPriorVotes",
348
+ outputs: [
349
+ {
350
+ internalType: "uint96",
351
+ name: "",
352
+ type: "uint96",
353
+ },
354
+ ],
355
+ stateMutability: "view",
356
+ type: "function",
357
+ },
358
+ {
359
+ inputs: [],
360
+ name: "name",
361
+ outputs: [
362
+ {
363
+ internalType: "string",
364
+ name: "",
365
+ type: "string",
366
+ },
367
+ ],
368
+ stateMutability: "view",
369
+ type: "function",
370
+ },
371
+ {
372
+ inputs: [
373
+ {
374
+ internalType: "address",
375
+ name: "",
376
+ type: "address",
377
+ },
378
+ ],
379
+ name: "nonces",
380
+ outputs: [
381
+ {
382
+ internalType: "uint256",
383
+ name: "",
384
+ type: "uint256",
385
+ },
386
+ ],
387
+ stateMutability: "view",
388
+ type: "function",
389
+ },
390
+ {
391
+ inputs: [
392
+ {
393
+ internalType: "address",
394
+ name: "",
395
+ type: "address",
396
+ },
397
+ ],
398
+ name: "numCheckpoints",
399
+ outputs: [
400
+ {
401
+ internalType: "uint32",
402
+ name: "",
403
+ type: "uint32",
404
+ },
405
+ ],
406
+ stateMutability: "view",
407
+ type: "function",
408
+ },
409
+ {
410
+ inputs: [],
411
+ name: "symbol",
412
+ outputs: [
413
+ {
414
+ internalType: "string",
415
+ name: "",
416
+ type: "string",
417
+ },
418
+ ],
419
+ stateMutability: "view",
420
+ type: "function",
421
+ },
422
+ {
423
+ inputs: [],
424
+ name: "totalSupply",
425
+ outputs: [
426
+ {
427
+ internalType: "uint256",
428
+ name: "",
429
+ type: "uint256",
430
+ },
431
+ ],
432
+ stateMutability: "view",
433
+ type: "function",
434
+ },
435
+ {
436
+ inputs: [
437
+ {
438
+ internalType: "address",
439
+ name: "dst",
440
+ type: "address",
441
+ },
442
+ {
443
+ internalType: "uint256",
444
+ name: "rawAmount",
445
+ type: "uint256",
446
+ },
447
+ ],
448
+ name: "transfer",
449
+ outputs: [
450
+ {
451
+ internalType: "bool",
452
+ name: "",
453
+ type: "bool",
454
+ },
455
+ ],
456
+ stateMutability: "nonpayable",
457
+ type: "function",
458
+ },
459
+ {
460
+ inputs: [
461
+ {
462
+ internalType: "address",
463
+ name: "src",
464
+ type: "address",
465
+ },
466
+ {
467
+ internalType: "address",
468
+ name: "dst",
469
+ type: "address",
470
+ },
471
+ {
472
+ internalType: "uint256",
473
+ name: "rawAmount",
474
+ type: "uint256",
475
+ },
476
+ ],
477
+ name: "transferFrom",
478
+ outputs: [
479
+ {
480
+ internalType: "bool",
481
+ name: "",
482
+ type: "bool",
483
+ },
484
+ ],
485
+ stateMutability: "nonpayable",
486
+ type: "function",
487
+ },
488
+ ];
489
+ class IComp__factory {
490
+ static abi = _abi;
491
+ static createInterface() {
492
+ return new ethers_1.Interface(_abi);
493
+ }
494
+ static connect(address, runner) {
495
+ return new ethers_1.Contract(address, _abi, runner);
496
+ }
497
+ }
498
+ exports.IComp__factory = IComp__factory;
499
+ //# sourceMappingURL=IComp__factory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IComp__factory.js","sourceRoot":"","sources":["../../../../../../../../../typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/IComp__factory.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export { IComp__factory } from "./IComp__factory";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IComp__factory = void 0;
4
+ /* Autogenerated file. Do not edit manually. */
5
+ // @ts-nocheck
6
+ /* tslint:disable */
7
+ /* eslint-disable */
8
+ var IComp__factory_1 = require("./IComp__factory");
9
+ Object.defineProperty(exports, "IComp__factory", { enumerable: true, get: function () { return IComp__factory_1.IComp__factory; } });
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/contracts/interfaces/index.ts"],"names":[],"mappings":";;;AAAA,+CAA+C;AAC/C,cAAc;AACd,oBAAoB;AACpB,oBAAoB;AACpB,mDAAkD;AAAzC,gHAAA,cAAc,OAAA"}
@@ -0,0 +1,2 @@
1
+ export * as contracts from "./contracts";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC"}
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.contracts = void 0;
37
+ /* Autogenerated file. Do not edit manually. */
38
+ // @ts-nocheck
39
+ /* tslint:disable */
40
+ /* eslint-disable */
41
+ exports.contracts = __importStar(require("./contracts"));
42
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../typechain-types/factories/contracts/vendor/@compound-finance/compound-governance/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,cAAc;AACd,oBAAoB;AACpB,oBAAoB;AACpB,yDAAyC"}
@@ -0,0 +1,2 @@
1
+ export * as compoundGovernance from "./compound-governance";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../typechain-types/factories/contracts/vendor/@compound-finance/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,kBAAkB,MAAM,uBAAuB,CAAC"}
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.compoundGovernance = void 0;
37
+ /* Autogenerated file. Do not edit manually. */
38
+ // @ts-nocheck
39
+ /* tslint:disable */
40
+ /* eslint-disable */
41
+ exports.compoundGovernance = __importStar(require("./compound-governance"));
42
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../typechain-types/factories/contracts/vendor/@compound-finance/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,cAAc;AACd,oBAAoB;AACpB,oBAAoB;AACpB,4EAA4D"}
@@ -0,0 +1,2 @@
1
+ export * as compoundFinance from "./@compound-finance";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../typechain-types/factories/contracts/vendor/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,eAAe,MAAM,qBAAqB,CAAC"}