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,479 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Multicall3__factory = void 0;
4
+ /* Autogenerated file. Do not edit manually. */
5
+ // @ts-nocheck
6
+ /* tslint:disable */
7
+ /* eslint-disable */
8
+ const ethers_1 = require("ethers");
9
+ const _abi = [
10
+ {
11
+ inputs: [
12
+ {
13
+ components: [
14
+ {
15
+ internalType: "address",
16
+ name: "target",
17
+ type: "address",
18
+ },
19
+ {
20
+ internalType: "bytes",
21
+ name: "callData",
22
+ type: "bytes",
23
+ },
24
+ ],
25
+ internalType: "struct Multicall3.Call[]",
26
+ name: "calls",
27
+ type: "tuple[]",
28
+ },
29
+ ],
30
+ name: "aggregate",
31
+ outputs: [
32
+ {
33
+ internalType: "uint256",
34
+ name: "blockNumber",
35
+ type: "uint256",
36
+ },
37
+ {
38
+ internalType: "bytes[]",
39
+ name: "returnData",
40
+ type: "bytes[]",
41
+ },
42
+ ],
43
+ stateMutability: "payable",
44
+ type: "function",
45
+ },
46
+ {
47
+ inputs: [
48
+ {
49
+ components: [
50
+ {
51
+ internalType: "address",
52
+ name: "target",
53
+ type: "address",
54
+ },
55
+ {
56
+ internalType: "bool",
57
+ name: "allowFailure",
58
+ type: "bool",
59
+ },
60
+ {
61
+ internalType: "bytes",
62
+ name: "callData",
63
+ type: "bytes",
64
+ },
65
+ ],
66
+ internalType: "struct Multicall3.Call3[]",
67
+ name: "calls",
68
+ type: "tuple[]",
69
+ },
70
+ ],
71
+ name: "aggregate3",
72
+ outputs: [
73
+ {
74
+ components: [
75
+ {
76
+ internalType: "bool",
77
+ name: "success",
78
+ type: "bool",
79
+ },
80
+ {
81
+ internalType: "bytes",
82
+ name: "returnData",
83
+ type: "bytes",
84
+ },
85
+ ],
86
+ internalType: "struct Multicall3.Result[]",
87
+ name: "returnData",
88
+ type: "tuple[]",
89
+ },
90
+ ],
91
+ stateMutability: "payable",
92
+ type: "function",
93
+ },
94
+ {
95
+ inputs: [
96
+ {
97
+ components: [
98
+ {
99
+ internalType: "address",
100
+ name: "target",
101
+ type: "address",
102
+ },
103
+ {
104
+ internalType: "bool",
105
+ name: "allowFailure",
106
+ type: "bool",
107
+ },
108
+ {
109
+ internalType: "uint256",
110
+ name: "value",
111
+ type: "uint256",
112
+ },
113
+ {
114
+ internalType: "bytes",
115
+ name: "callData",
116
+ type: "bytes",
117
+ },
118
+ ],
119
+ internalType: "struct Multicall3.Call3Value[]",
120
+ name: "calls",
121
+ type: "tuple[]",
122
+ },
123
+ ],
124
+ name: "aggregate3Value",
125
+ outputs: [
126
+ {
127
+ components: [
128
+ {
129
+ internalType: "bool",
130
+ name: "success",
131
+ type: "bool",
132
+ },
133
+ {
134
+ internalType: "bytes",
135
+ name: "returnData",
136
+ type: "bytes",
137
+ },
138
+ ],
139
+ internalType: "struct Multicall3.Result[]",
140
+ name: "returnData",
141
+ type: "tuple[]",
142
+ },
143
+ ],
144
+ stateMutability: "payable",
145
+ type: "function",
146
+ },
147
+ {
148
+ inputs: [
149
+ {
150
+ components: [
151
+ {
152
+ internalType: "address",
153
+ name: "target",
154
+ type: "address",
155
+ },
156
+ {
157
+ internalType: "bytes",
158
+ name: "callData",
159
+ type: "bytes",
160
+ },
161
+ ],
162
+ internalType: "struct Multicall3.Call[]",
163
+ name: "calls",
164
+ type: "tuple[]",
165
+ },
166
+ ],
167
+ name: "blockAndAggregate",
168
+ outputs: [
169
+ {
170
+ internalType: "uint256",
171
+ name: "blockNumber",
172
+ type: "uint256",
173
+ },
174
+ {
175
+ internalType: "bytes32",
176
+ name: "blockHash",
177
+ type: "bytes32",
178
+ },
179
+ {
180
+ components: [
181
+ {
182
+ internalType: "bool",
183
+ name: "success",
184
+ type: "bool",
185
+ },
186
+ {
187
+ internalType: "bytes",
188
+ name: "returnData",
189
+ type: "bytes",
190
+ },
191
+ ],
192
+ internalType: "struct Multicall3.Result[]",
193
+ name: "returnData",
194
+ type: "tuple[]",
195
+ },
196
+ ],
197
+ stateMutability: "payable",
198
+ type: "function",
199
+ },
200
+ {
201
+ inputs: [],
202
+ name: "getBasefee",
203
+ outputs: [
204
+ {
205
+ internalType: "uint256",
206
+ name: "basefee",
207
+ type: "uint256",
208
+ },
209
+ ],
210
+ stateMutability: "view",
211
+ type: "function",
212
+ },
213
+ {
214
+ inputs: [
215
+ {
216
+ internalType: "uint256",
217
+ name: "blockNumber",
218
+ type: "uint256",
219
+ },
220
+ ],
221
+ name: "getBlockHash",
222
+ outputs: [
223
+ {
224
+ internalType: "bytes32",
225
+ name: "blockHash",
226
+ type: "bytes32",
227
+ },
228
+ ],
229
+ stateMutability: "view",
230
+ type: "function",
231
+ },
232
+ {
233
+ inputs: [],
234
+ name: "getBlockNumber",
235
+ outputs: [
236
+ {
237
+ internalType: "uint256",
238
+ name: "blockNumber",
239
+ type: "uint256",
240
+ },
241
+ ],
242
+ stateMutability: "view",
243
+ type: "function",
244
+ },
245
+ {
246
+ inputs: [],
247
+ name: "getChainId",
248
+ outputs: [
249
+ {
250
+ internalType: "uint256",
251
+ name: "chainid",
252
+ type: "uint256",
253
+ },
254
+ ],
255
+ stateMutability: "view",
256
+ type: "function",
257
+ },
258
+ {
259
+ inputs: [],
260
+ name: "getCurrentBlockCoinbase",
261
+ outputs: [
262
+ {
263
+ internalType: "address",
264
+ name: "coinbase",
265
+ type: "address",
266
+ },
267
+ ],
268
+ stateMutability: "view",
269
+ type: "function",
270
+ },
271
+ {
272
+ inputs: [],
273
+ name: "getCurrentBlockDifficulty",
274
+ outputs: [
275
+ {
276
+ internalType: "uint256",
277
+ name: "difficulty",
278
+ type: "uint256",
279
+ },
280
+ ],
281
+ stateMutability: "view",
282
+ type: "function",
283
+ },
284
+ {
285
+ inputs: [],
286
+ name: "getCurrentBlockGasLimit",
287
+ outputs: [
288
+ {
289
+ internalType: "uint256",
290
+ name: "gaslimit",
291
+ type: "uint256",
292
+ },
293
+ ],
294
+ stateMutability: "view",
295
+ type: "function",
296
+ },
297
+ {
298
+ inputs: [],
299
+ name: "getCurrentBlockTimestamp",
300
+ outputs: [
301
+ {
302
+ internalType: "uint256",
303
+ name: "timestamp",
304
+ type: "uint256",
305
+ },
306
+ ],
307
+ stateMutability: "view",
308
+ type: "function",
309
+ },
310
+ {
311
+ inputs: [
312
+ {
313
+ internalType: "address",
314
+ name: "addr",
315
+ type: "address",
316
+ },
317
+ ],
318
+ name: "getEthBalance",
319
+ outputs: [
320
+ {
321
+ internalType: "uint256",
322
+ name: "balance",
323
+ type: "uint256",
324
+ },
325
+ ],
326
+ stateMutability: "view",
327
+ type: "function",
328
+ },
329
+ {
330
+ inputs: [],
331
+ name: "getLastBlockHash",
332
+ outputs: [
333
+ {
334
+ internalType: "bytes32",
335
+ name: "blockHash",
336
+ type: "bytes32",
337
+ },
338
+ ],
339
+ stateMutability: "view",
340
+ type: "function",
341
+ },
342
+ {
343
+ inputs: [
344
+ {
345
+ internalType: "bool",
346
+ name: "requireSuccess",
347
+ type: "bool",
348
+ },
349
+ {
350
+ components: [
351
+ {
352
+ internalType: "address",
353
+ name: "target",
354
+ type: "address",
355
+ },
356
+ {
357
+ internalType: "bytes",
358
+ name: "callData",
359
+ type: "bytes",
360
+ },
361
+ ],
362
+ internalType: "struct Multicall3.Call[]",
363
+ name: "calls",
364
+ type: "tuple[]",
365
+ },
366
+ ],
367
+ name: "tryAggregate",
368
+ outputs: [
369
+ {
370
+ components: [
371
+ {
372
+ internalType: "bool",
373
+ name: "success",
374
+ type: "bool",
375
+ },
376
+ {
377
+ internalType: "bytes",
378
+ name: "returnData",
379
+ type: "bytes",
380
+ },
381
+ ],
382
+ internalType: "struct Multicall3.Result[]",
383
+ name: "returnData",
384
+ type: "tuple[]",
385
+ },
386
+ ],
387
+ stateMutability: "payable",
388
+ type: "function",
389
+ },
390
+ {
391
+ inputs: [
392
+ {
393
+ internalType: "bool",
394
+ name: "requireSuccess",
395
+ type: "bool",
396
+ },
397
+ {
398
+ components: [
399
+ {
400
+ internalType: "address",
401
+ name: "target",
402
+ type: "address",
403
+ },
404
+ {
405
+ internalType: "bytes",
406
+ name: "callData",
407
+ type: "bytes",
408
+ },
409
+ ],
410
+ internalType: "struct Multicall3.Call[]",
411
+ name: "calls",
412
+ type: "tuple[]",
413
+ },
414
+ ],
415
+ name: "tryBlockAndAggregate",
416
+ outputs: [
417
+ {
418
+ internalType: "uint256",
419
+ name: "blockNumber",
420
+ type: "uint256",
421
+ },
422
+ {
423
+ internalType: "bytes32",
424
+ name: "blockHash",
425
+ type: "bytes32",
426
+ },
427
+ {
428
+ components: [
429
+ {
430
+ internalType: "bool",
431
+ name: "success",
432
+ type: "bool",
433
+ },
434
+ {
435
+ internalType: "bytes",
436
+ name: "returnData",
437
+ type: "bytes",
438
+ },
439
+ ],
440
+ internalType: "struct Multicall3.Result[]",
441
+ name: "returnData",
442
+ type: "tuple[]",
443
+ },
444
+ ],
445
+ stateMutability: "payable",
446
+ type: "function",
447
+ },
448
+ ];
449
+ const _bytecode = "0x608060405234801561001057600080fd5b50610cd6806100206000396000f3fe6080604052600436106100f35760003560e01c80634d2301cc1161008a578063a8b0574e11610059578063a8b0574e1461022f578063bce38bd71461024a578063c3077fa91461025d578063ee82ac5e1461027057600080fd5b80634d2301cc146101ce57806372425d9d146101f657806382ad56cb1461020957806386d516e81461021c57600080fd5b80633408e470116100c65780633408e47014610173578063399542e9146101865780633e64a696146101a857806342cbb15c146101bb57600080fd5b80630f28c97d146100f8578063174dea711461011a578063252dba421461013a57806327e86d6e1461015b575b600080fd5b34801561010457600080fd5b50425b6040519081526020015b60405180910390f35b61012d61012836600461098c565b61028f565b6040516101119190610a89565b61014d61014836600461098c565b61047d565b604051610111929190610aa3565b34801561016757600080fd5b50436000190140610107565b34801561017f57600080fd5b5046610107565b610199610194366004610b0d565b6105f1565b60405161011193929190610b67565b3480156101b457600080fd5b5048610107565b3480156101c757600080fd5b5043610107565b3480156101da57600080fd5b506101076101e9366004610b8f565b6001600160a01b03163190565b34801561020257600080fd5b5044610107565b61012d61021736600461098c565b61060c565b34801561022857600080fd5b5045610107565b34801561023b57600080fd5b50604051418152602001610111565b61012d610258366004610b0d565b61078e565b61019961026b36600461098c565b610921565b34801561027c57600080fd5b5061010761028b366004610bb8565b4090565b60606000828067ffffffffffffffff8111156102ad576102ad610bd1565b6040519080825280602002602001820160405280156102f357816020015b6040805180820190915260008152606060208201528152602001906001900390816102cb5790505b5092503660005b8281101561041f57600085828151811061031657610316610be7565b6020026020010151905087878381811061033257610332610be7565b90506020028101906103449190610bfd565b60408101359586019590935061035d6020850185610b8f565b6001600160a01b0316816103746060870187610c1d565b604051610382929190610c64565b60006040518083038185875af1925050503d80600081146103bf576040519150601f19603f3d011682016040523d82523d6000602084013e6103c4565b606091505b5060208085019190915290151580845290850135176104155762461bcd60e51b6000526020600452601760245276135d5b1d1a58d85b1b0cce8818d85b1b0819985a5b1959604a1b60445260846000fd5b50506001016102fa565b508234146104745760405162461bcd60e51b815260206004820152601a60248201527f4d756c746963616c6c333a2076616c7565206d69736d6174636800000000000060448201526064015b60405180910390fd5b50505092915050565b436060828067ffffffffffffffff81111561049a5761049a610bd1565b6040519080825280602002602001820160405280156104cd57816020015b60608152602001906001900390816104b85790505b5091503660005b828110156105e75760008787838181106104f0576104f0610be7565b90506020028101906105029190610c74565b92506105116020840184610b8f565b6001600160a01b03166105276020850185610c1d565b604051610535929190610c64565b6000604051808303816000865af19150503d8060008114610572576040519150601f19603f3d011682016040523d82523d6000602084013e610577565b606091505b5086848151811061058a5761058a610be7565b60209081029190910101529050806105de5760405162461bcd60e51b8152602060048201526017602482015276135d5b1d1a58d85b1b0cce8818d85b1b0819985a5b1959604a1b604482015260640161046b565b506001016104d4565b5050509250929050565b438040606061060186868661078e565b905093509350939050565b6060818067ffffffffffffffff81111561062857610628610bd1565b60405190808252806020026020018201604052801561066e57816020015b6040805180820190915260008152606060208201528152602001906001900390816106465790505b5091503660005b8281101561047457600084828151811061069157610691610be7565b602002602001015190508686838181106106ad576106ad610be7565b90506020028101906106bf9190610c8a565b92506106ce6020840184610b8f565b6001600160a01b03166106e46040850185610c1d565b6040516106f2929190610c64565b6000604051808303816000865af19150503d806000811461072f576040519150601f19603f3d011682016040523d82523d6000602084013e610734565b606091505b5060208084019190915290151580835290840135176107855762461bcd60e51b6000526020600452601760245276135d5b1d1a58d85b1b0cce8818d85b1b0819985a5b1959604a1b60445260646000fd5b50600101610675565b6060818067ffffffffffffffff8111156107aa576107aa610bd1565b6040519080825280602002602001820160405280156107f057816020015b6040805180820190915260008152606060208201528152602001906001900390816107c85790505b5091503660005b8281101561091757600084828151811061081357610813610be7565b6020026020010151905086868381811061082f5761082f610be7565b90506020028101906108419190610c74565b92506108506020840184610b8f565b6001600160a01b03166108666020850185610c1d565b604051610874929190610c64565b6000604051808303816000865af19150503d80600081146108b1576040519150601f19603f3d011682016040523d82523d6000602084013e6108b6565b606091505b50602083015215158152871561090e57805161090e5760405162461bcd60e51b8152602060048201526017602482015276135d5b1d1a58d85b1b0cce8818d85b1b0819985a5b1959604a1b604482015260640161046b565b506001016107f7565b5050509392505050565b6000806060610932600186866105f1565b919790965090945092505050565b60008083601f84011261095257600080fd5b50813567ffffffffffffffff81111561096a57600080fd5b6020830191508360208260051b850101111561098557600080fd5b9250929050565b6000806020838503121561099f57600080fd5b823567ffffffffffffffff8111156109b657600080fd5b6109c285828601610940565b90969095509350505050565b6000815180845260005b818110156109f4576020818501810151868301820152016109d8565b81811115610a06576000602083870101525b50601f01601f19169290920160200192915050565b600082825180855260208086019550808260051b84010181860160005b84811015610a7c57858303601f1901895281518051151584528401516040858501819052610a68818601836109ce565b9a86019a9450505090830190600101610a38565b5090979650505050505050565b602081526000610a9c6020830184610a1b565b9392505050565b600060408201848352602060408185015281855180845260608601915060608160051b870101935082870160005b82811015610aff57605f19888703018452610aed8683516109ce565b95509284019290840190600101610ad1565b509398975050505050505050565b600080600060408486031215610b2257600080fd5b83358015158114610b3257600080fd5b9250602084013567ffffffffffffffff811115610b4e57600080fd5b610b5a86828701610940565b9497909650939450505050565b838152826020820152606060408201526000610b866060830184610a1b565b95945050505050565b600060208284031215610ba157600080fd5b81356001600160a01b0381168114610a9c57600080fd5b600060208284031215610bca57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235607e19833603018112610c1357600080fd5b9190910192915050565b6000808335601e19843603018112610c3457600080fd5b83018035915067ffffffffffffffff821115610c4f57600080fd5b60200191503681900382131561098557600080fd5b8183823760009101908152919050565b60008235603e19833603018112610c1357600080fd5b60008235605e19833603018112610c1357600080fdfea26469706673582212204ee4c46b253a0482d732d569fd7c3b669aff92b33f7e35c84cfb1dd4979349cf64736f6c634300080c0033";
450
+ const isSuperArgs = (xs) => xs.length > 1;
451
+ class Multicall3__factory extends ethers_1.ContractFactory {
452
+ constructor(...args) {
453
+ if (isSuperArgs(args)) {
454
+ super(...args);
455
+ }
456
+ else {
457
+ super(_abi, _bytecode, args[0]);
458
+ }
459
+ }
460
+ getDeployTransaction(overrides) {
461
+ return super.getDeployTransaction(overrides || {});
462
+ }
463
+ deploy(overrides) {
464
+ return super.deploy(overrides || {});
465
+ }
466
+ connect(runner) {
467
+ return super.connect(runner);
468
+ }
469
+ static bytecode = _bytecode;
470
+ static abi = _abi;
471
+ static createInterface() {
472
+ return new ethers_1.Interface(_abi);
473
+ }
474
+ static connect(address, runner) {
475
+ return new ethers_1.Contract(address, _abi, runner);
476
+ }
477
+ }
478
+ exports.Multicall3__factory = Multicall3__factory;
479
+ //# sourceMappingURL=Multicall3__factory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Multicall3__factory.js","sourceRoot":"","sources":["../../../../../typechain-types/factories/contracts/external/Multicall3__factory.ts"],"names":[],"mappings":";;;AAAA,+CAA+C;AAC/C,cAAc;AACd,oBAAoB;AACpB,oBAAoB;AACpB,mCAKgB;AAQhB,MAAM,IAAI,GAAG;IACX;QACE,MAAM,EAAE;YACN;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,0BAA0B;gBACxC,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,WAAW;QACjB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,SAAS;QAC1B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,MAAM;wBACpB,IAAI,EAAE,cAAc;wBACpB,IAAI,EAAE,MAAM;qBACb;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,2BAA2B;gBACzC,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,YAAY;QAClB,OAAO,EAAE;YACP;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,MAAM;wBACpB,IAAI,EAAE,SAAS;wBACf,IAAI,EAAE,MAAM;qBACb;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,YAAY;wBAClB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,4BAA4B;gBAC1C,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,SAAS;QAC1B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,MAAM;wBACpB,IAAI,EAAE,cAAc;wBACpB,IAAI,EAAE,MAAM;qBACb;oBACD;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,OAAO;wBACb,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,gCAAgC;gBAC9C,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,iBAAiB;QACvB,OAAO,EAAE;YACP;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,MAAM;wBACpB,IAAI,EAAE,SAAS;wBACf,IAAI,EAAE,MAAM;qBACb;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,YAAY;wBAClB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,4BAA4B;gBAC1C,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,SAAS;QAC1B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,0BAA0B;gBACxC,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,mBAAmB;QACzB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,MAAM;wBACpB,IAAI,EAAE,SAAS;wBACf,IAAI,EAAE,MAAM;qBACb;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,YAAY;wBAClB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,4BAA4B;gBAC1C,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,SAAS;QAC1B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,YAAY;QAClB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,cAAc;QACpB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,gBAAgB;QACtB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,YAAY;QAClB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,yBAAyB;QAC/B,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,2BAA2B;QACjC,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,yBAAyB;QAC/B,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,0BAA0B;QAChC,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,MAAM;gBACZ,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,eAAe;QACrB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,kBAAkB;QACxB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,MAAM;gBACpB,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,MAAM;aACb;YACD;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,0BAA0B;gBACxC,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,cAAc;QACpB,OAAO,EAAE;YACP;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,MAAM;wBACpB,IAAI,EAAE,SAAS;wBACf,IAAI,EAAE,MAAM;qBACb;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,YAAY;wBAClB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,4BAA4B;gBAC1C,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,SAAS;QAC1B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,MAAM;gBACpB,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,MAAM;aACb;YACD;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,SAAS;wBACvB,IAAI,EAAE,QAAQ;wBACd,IAAI,EAAE,SAAS;qBAChB;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,UAAU;wBAChB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,0BAA0B;gBACxC,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,sBAAsB;QAC5B,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,UAAU,EAAE;oBACV;wBACE,YAAY,EAAE,MAAM;wBACpB,IAAI,EAAE,SAAS;wBACf,IAAI,EAAE,MAAM;qBACb;oBACD;wBACE,YAAY,EAAE,OAAO;wBACrB,IAAI,EAAE,YAAY;wBAClB,IAAI,EAAE,OAAO;qBACd;iBACF;gBACD,YAAY,EAAE,4BAA4B;gBAC1C,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,SAAS;QAC1B,IAAI,EAAE,UAAU;KACjB;CACO,CAAC;AAEX,MAAM,SAAS,GACb,g/MAAg/M,CAAC;AAMn/M,MAAM,WAAW,GAAG,CAClB,EAA+B,EACsB,EAAE,CAAC,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC;AAExE,MAAa,mBAAoB,SAAQ,wBAAe;IACtD,YAAY,GAAG,IAAiC;QAC9C,IAAI,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC;YACtB,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC;QACjB,CAAC;aAAM,CAAC;YACN,KAAK,CAAC,IAAI,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;QAClC,CAAC;IACH,CAAC;IAEQ,oBAAoB,CAC3B,SAAmD;QAEnD,OAAO,KAAK,CAAC,oBAAoB,CAAC,SAAS,IAAI,EAAE,CAAC,CAAC;IACrD,CAAC;IACQ,MAAM,CAAC,SAAmD;QACjE,OAAO,KAAK,CAAC,MAAM,CAAC,SAAS,IAAI,EAAE,CAIlC,CAAC;IACJ,CAAC;IACQ,OAAO,CAAC,MAA6B;QAC5C,OAAO,KAAK,CAAC,OAAO,CAAC,MAAM,CAAwB,CAAC;IACtD,CAAC;IAED,MAAM,CAAU,QAAQ,GAAG,SAAS,CAAC;IACrC,MAAM,CAAU,GAAG,GAAG,IAAI,CAAC;IAC3B,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,kBAAS,CAAC,IAAI,CAAwB,CAAC;IACpD,CAAC;IACD,MAAM,CAAC,OAAO,CAAC,OAAe,EAAE,MAA8B;QAC5D,OAAO,IAAI,iBAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,MAAM,CAA0B,CAAC;IACtE,CAAC;;AAhCH,kDAiCC"}
@@ -1,2 +1,3 @@
1
1
  export * as morpho from "./morpho";
2
+ export { Multicall3__factory } from "./Multicall3__factory";
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../typechain-types/factories/contracts/external/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../typechain-types/factories/contracts/external/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC"}
@@ -33,10 +33,12 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.morpho = void 0;
36
+ exports.Multicall3__factory = exports.morpho = void 0;
37
37
  /* Autogenerated file. Do not edit manually. */
38
38
  // @ts-nocheck
39
39
  /* tslint:disable */
40
40
  /* eslint-disable */
41
41
  exports.morpho = __importStar(require("./morpho"));
42
+ var Multicall3__factory_1 = require("./Multicall3__factory");
43
+ Object.defineProperty(exports, "Multicall3__factory", { enumerable: true, get: function () { return Multicall3__factory_1.Multicall3__factory; } });
42
44
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../typechain-types/factories/contracts/external/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,cAAc;AACd,oBAAoB;AACpB,oBAAoB;AACpB,mDAAmC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../typechain-types/factories/contracts/external/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,cAAc;AACd,oBAAoB;AACpB,oBAAoB;AACpB,mDAAmC;AACnC,6DAA4D;AAAnD,0HAAA,mBAAmB,OAAA"}
@@ -1,2 +1,4 @@
1
1
  export * as external from "./external";
2
+ export * as vendor from "./vendor";
3
+ export { DComp__factory } from "./DComp__factory";
2
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../typechain-types/factories/contracts/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../typechain-types/factories/contracts/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,QAAQ,MAAM,YAAY,CAAC;AACvC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -33,10 +33,13 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.external = void 0;
36
+ exports.DComp__factory = exports.vendor = exports.external = void 0;
37
37
  /* Autogenerated file. Do not edit manually. */
38
38
  // @ts-nocheck
39
39
  /* tslint:disable */
40
40
  /* eslint-disable */
41
41
  exports.external = __importStar(require("./external"));
42
+ exports.vendor = __importStar(require("./vendor"));
43
+ var DComp__factory_1 = require("./DComp__factory");
44
+ Object.defineProperty(exports, "DComp__factory", { enumerable: true, get: function () { return DComp__factory_1.DComp__factory; } });
42
45
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../typechain-types/factories/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,cAAc;AACd,oBAAoB;AACpB,oBAAoB;AACpB,uDAAuC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../typechain-types/factories/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,cAAc;AACd,oBAAoB;AACpB,oBAAoB;AACpB,uDAAuC;AACvC,mDAAmC;AACnC,mDAAkD;AAAzC,gHAAA,cAAc,OAAA"}