@dodoex/dodo-contract-request 1.0.0

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 (257) hide show
  1. package/.cache/contract-info/BuyoutModel.json +1 -0
  2. package/.cache/contract-info/CP.json +1 -0
  3. package/.cache/contract-info/CloneFactory.json +1 -0
  4. package/.cache/contract-info/CrowdPoolingFactory.json +1 -0
  5. package/.cache/contract-info/CustomERC20.json +1 -0
  6. package/.cache/contract-info/CustomMintableERC20.json +1 -0
  7. package/.cache/contract-info/D3Proxy.json +1 -0
  8. package/.cache/contract-info/D3Vault.json +1 -0
  9. package/.cache/contract-info/DODOApprove.json +1 -0
  10. package/.cache/contract-info/DODOApproveProxy.json +1 -0
  11. package/.cache/contract-info/DODOCalleeHelper.json +1 -0
  12. package/.cache/contract-info/DODOCirculationHelper.json +1 -0
  13. package/.cache/contract-info/DODOCpProxy.json +148 -0
  14. package/.cache/contract-info/DODOCpProxyWithoutGlobalQuota.json +1 -0
  15. package/.cache/contract-info/DODODppProxy.json +1 -0
  16. package/.cache/contract-info/DODODspProxy.json +1 -0
  17. package/.cache/contract-info/DODODspProxyWithoutGSP.json +1 -0
  18. package/.cache/contract-info/DODOIncentive.json +1 -0
  19. package/.cache/contract-info/DODOMineV2Factory.json +1 -0
  20. package/.cache/contract-info/DODOMineV3Proxy.json +373 -0
  21. package/.cache/contract-info/DODOMineV3ProxyWithoutPlatform.json +1 -0
  22. package/.cache/contract-info/DODOMineV3Registry.json +1 -0
  23. package/.cache/contract-info/DODONFT.json +1 -0
  24. package/.cache/contract-info/DODONFT1155.json +1 -0
  25. package/.cache/contract-info/DODONFTApprove.json +1 -0
  26. package/.cache/contract-info/DODONFTPoolProxy.json +1 -0
  27. package/.cache/contract-info/DODONFTProxy.json +1 -0
  28. package/.cache/contract-info/DODONFTRegistry.json +1 -0
  29. package/.cache/contract-info/DODONFTRouteHelper.json +1 -0
  30. package/.cache/contract-info/DODOSellHelper.json +1 -0
  31. package/.cache/contract-info/DODOStarterProxy.json +1 -0
  32. package/.cache/contract-info/DODOV1.json +1 -0
  33. package/.cache/contract-info/DODOV1Adapter.json +1 -0
  34. package/.cache/contract-info/DODOV1PmmHelper.json +88 -0
  35. package/.cache/contract-info/DODOV1Proxy.json +1 -0
  36. package/.cache/contract-info/DODOV2Proxy02.json +1 -0
  37. package/.cache/contract-info/DODOV2RouteHelper.json +1 -0
  38. package/.cache/contract-info/DPPAdvanced.json +1 -0
  39. package/.cache/contract-info/DPPAdvancedAdmin.json +1 -0
  40. package/.cache/contract-info/DPPFactory.json +1 -0
  41. package/.cache/contract-info/DSP.json +1 -0
  42. package/.cache/contract-info/DSPFactory.json +1 -0
  43. package/.cache/contract-info/DVM.json +1 -0
  44. package/.cache/contract-info/DVMFactory.json +1 -0
  45. package/.cache/contract-info/ERC20.json +1 -0
  46. package/.cache/contract-info/ERC20Helper.json +1 -0
  47. package/.cache/contract-info/ERC20MineV3.json +1 -0
  48. package/.cache/contract-info/ERC20V3Factory.json +1 -0
  49. package/.cache/contract-info/FeeRateDIP3Impl.json +1 -0
  50. package/.cache/contract-info/FeeRateModel.json +1 -0
  51. package/.cache/contract-info/GSP.json +1 -0
  52. package/.cache/contract-info/GSPFactory.json +1 -0
  53. package/.cache/contract-info/InitializableERC20.json +1 -0
  54. package/.cache/contract-info/LimitOrder.json +1 -0
  55. package/.cache/contract-info/LimitOrderBot.json +1 -0
  56. package/.cache/contract-info/MulticallWithValid.json +1 -0
  57. package/.cache/contract-info/PermissionManager.json +1 -0
  58. package/.cache/contract-info/dodoTeam.json +1 -0
  59. package/.cache/contract-info/vDODOToken.json +1 -0
  60. package/.env.sample +1 -0
  61. package/.releaserc.json +31 -0
  62. package/CHANGELOG.md +16 -0
  63. package/README.md +75 -0
  64. package/babel.config.js +6 -0
  65. package/contract-config/arbitrum.json +85 -0
  66. package/contract-config/aurora.json +84 -0
  67. package/contract-config/avalanche.json +84 -0
  68. package/contract-config/base.json +84 -0
  69. package/contract-config/berachain-testnet.json +65 -0
  70. package/contract-config/bitlayer.json +84 -0
  71. package/contract-config/bsc.json +85 -0
  72. package/contract-config/conflux.json +84 -0
  73. package/contract-config/eth.json +90 -0
  74. package/contract-config/linea.json +84 -0
  75. package/contract-config/manta.json +84 -0
  76. package/contract-config/mantle.json +85 -0
  77. package/contract-config/morph.json +65 -0
  78. package/contract-config/optimism.json +84 -0
  79. package/contract-config/polygon.json +84 -0
  80. package/contract-config/scroll.json +84 -0
  81. package/contract-config/sepolia.json +85 -0
  82. package/contract-config/taiko.json +65 -0
  83. package/contract-config/x-layer.json +84 -0
  84. package/contract-config/zero-mainnet.json +65 -0
  85. package/contract-config/zircuit-mainnet.json +84 -0
  86. package/dist/config.js +1 -0
  87. package/dist/index.js +1 -0
  88. package/dist/types/config/arbitrum.d.ts +40 -0
  89. package/dist/types/config/aurora.d.ts +25 -0
  90. package/dist/types/config/avalanche.d.ts +27 -0
  91. package/dist/types/config/base.d.ts +23 -0
  92. package/dist/types/config/berachain-testnet.d.ts +30 -0
  93. package/dist/types/config/bitlayer.d.ts +24 -0
  94. package/dist/types/config/bsc.d.ts +40 -0
  95. package/dist/types/config/conflux.d.ts +23 -0
  96. package/dist/types/config/ethereum.d.ts +45 -0
  97. package/dist/types/config/index.d.ts +179 -0
  98. package/dist/types/config/linea.d.ts +24 -0
  99. package/dist/types/config/manta.d.ts +24 -0
  100. package/dist/types/config/mantle.d.ts +24 -0
  101. package/dist/types/config/morph.d.ts +30 -0
  102. package/dist/types/config/optimism.d.ts +26 -0
  103. package/dist/types/config/polygon.d.ts +38 -0
  104. package/dist/types/config/scroll.d.ts +24 -0
  105. package/dist/types/config/sepolia.d.ts +27 -0
  106. package/dist/types/config/taiko.d.ts +30 -0
  107. package/dist/types/config/x-layer.d.ts +25 -0
  108. package/dist/types/config/zero-mainnet.d.ts +30 -0
  109. package/dist/types/config/zircuit-mainnet.d.ts +24 -0
  110. package/dist/types/contract/BuyoutModel.d.ts +83 -0
  111. package/dist/types/contract/CP.d.ts +317 -0
  112. package/dist/types/contract/CloneFactory.d.ts +6 -0
  113. package/dist/types/contract/CrowdPoolingFactory.d.ts +207 -0
  114. package/dist/types/contract/CustomERC20.d.ts +145 -0
  115. package/dist/types/contract/CustomMintableERC20.d.ts +158 -0
  116. package/dist/types/contract/D3Proxy.d.ts +104 -0
  117. package/dist/types/contract/D3Vault.d.ts +639 -0
  118. package/dist/types/contract/DODOApprove.d.ts +89 -0
  119. package/dist/types/contract/DODOApproveProxy.d.ts +103 -0
  120. package/dist/types/contract/DODOCalleeHelper.d.ts +42 -0
  121. package/dist/types/contract/DODOCirculationHelper.d.ts +74 -0
  122. package/dist/types/contract/DODOCpProxy.d.ts +40 -0
  123. package/dist/types/contract/DODOCpProxyWithoutGlobalQuota.d.ts +40 -0
  124. package/dist/types/contract/DODODppProxy.d.ts +45 -0
  125. package/dist/types/contract/DODODspProxy.d.ts +67 -0
  126. package/dist/types/contract/DODODspProxyWithoutGSP.d.ts +45 -0
  127. package/dist/types/contract/DODOIncentive.d.ts +137 -0
  128. package/dist/types/contract/DODOMineV2Factory.d.ts +99 -0
  129. package/dist/types/contract/DODOMineV3Proxy.d.ts +88 -0
  130. package/dist/types/contract/DODOMineV3ProxyWithoutPlatform.d.ts +88 -0
  131. package/dist/types/contract/DODOMineV3Registry.d.ts +89 -0
  132. package/dist/types/contract/DODONFT.d.ts +172 -0
  133. package/dist/types/contract/DODONFT1155.d.ts +117 -0
  134. package/dist/types/contract/DODONFTApprove.d.ts +117 -0
  135. package/dist/types/contract/DODONFTPoolProxy.d.ts +181 -0
  136. package/dist/types/contract/DODONFTProxy.d.ts +152 -0
  137. package/dist/types/contract/DODONFTRegistry.d.ts +101 -0
  138. package/dist/types/contract/DODONFTRouteHelper.d.ts +16 -0
  139. package/dist/types/contract/DODOSellHelper.d.ts +17 -0
  140. package/dist/types/contract/DODOStarterProxy.d.ts +22 -0
  141. package/dist/types/contract/DODOV1.d.ts +514 -0
  142. package/dist/types/contract/DODOV1Adapter.d.ts +23 -0
  143. package/dist/types/contract/DODOV1PmmHelper.d.ts +8 -0
  144. package/dist/types/contract/DODOV1Proxy.d.ts +55 -0
  145. package/dist/types/contract/DODOV2Proxy02.d.ts +280 -0
  146. package/dist/types/contract/DODOV2RouteHelper.d.ts +28 -0
  147. package/dist/types/contract/DPPAdvanced.d.ts +320 -0
  148. package/dist/types/contract/DPPAdvancedAdmin.d.ts +115 -0
  149. package/dist/types/contract/DPPFactory.d.ts +194 -0
  150. package/dist/types/contract/DSP.d.ts +392 -0
  151. package/dist/types/contract/DSPFactory.d.ts +134 -0
  152. package/dist/types/contract/DVM.d.ts +363 -0
  153. package/dist/types/contract/DVMFactory.d.ts +134 -0
  154. package/dist/types/contract/ERC20.d.ts +79 -0
  155. package/dist/types/contract/ERC20Helper.d.ts +67 -0
  156. package/dist/types/contract/ERC20MineV3.d.ts +204 -0
  157. package/dist/types/contract/ERC20V3Factory.d.ts +161 -0
  158. package/dist/types/contract/FeeRateDIP3Impl.d.ts +158 -0
  159. package/dist/types/contract/FeeRateModel.d.ts +53 -0
  160. package/dist/types/contract/GSP.d.ts +488 -0
  161. package/dist/types/contract/GSPFactory.d.ts +137 -0
  162. package/dist/types/contract/InitializableERC20.d.ts +84 -0
  163. package/dist/types/contract/LimitOrder.d.ts +164 -0
  164. package/dist/types/contract/LimitOrderBot.d.ts +102 -0
  165. package/dist/types/contract/MulticallWithValid.d.ts +51 -0
  166. package/dist/types/contract/PermissionManager.d.ts +83 -0
  167. package/dist/types/contract/dodoTeam.d.ts +244 -0
  168. package/dist/types/contract/vDODOToken.d.ts +309 -0
  169. package/dist/types/contractRequests.d.ts +3 -0
  170. package/dist/types/index.d.ts +60 -0
  171. package/package.json +41 -0
  172. package/rollup.config.mjs +51 -0
  173. package/scripts/contract-generate.ts +192 -0
  174. package/src/config/arbitrum.ts +4 -0
  175. package/src/config/aurora.ts +4 -0
  176. package/src/config/avalanche.ts +4 -0
  177. package/src/config/base.ts +4 -0
  178. package/src/config/berachain-testnet.ts +4 -0
  179. package/src/config/bitlayer.ts +4 -0
  180. package/src/config/bsc.ts +4 -0
  181. package/src/config/conflux.ts +4 -0
  182. package/src/config/ethereum.ts +4 -0
  183. package/src/config/index.ts +95 -0
  184. package/src/config/linea.ts +4 -0
  185. package/src/config/manta.ts +4 -0
  186. package/src/config/mantle.ts +4 -0
  187. package/src/config/morph.ts +4 -0
  188. package/src/config/optimism.ts +4 -0
  189. package/src/config/polygon.ts +4 -0
  190. package/src/config/scroll.ts +4 -0
  191. package/src/config/sepolia.ts +4 -0
  192. package/src/config/taiko.ts +4 -0
  193. package/src/config/x-layer.ts +4 -0
  194. package/src/config/zero-mainnet.ts +4 -0
  195. package/src/config/zircuit-mainnet.ts +4 -0
  196. package/src/contract/BuyoutModel.ts +158 -0
  197. package/src/contract/CP.ts +532 -0
  198. package/src/contract/CloneFactory.ts +15 -0
  199. package/src/contract/CrowdPoolingFactory.ts +397 -0
  200. package/src/contract/CustomERC20.ts +241 -0
  201. package/src/contract/CustomMintableERC20.ts +262 -0
  202. package/src/contract/D3Proxy.ts +177 -0
  203. package/src/contract/D3Vault.ts +1124 -0
  204. package/src/contract/DODOApprove.ts +172 -0
  205. package/src/contract/DODOApproveProxy.ts +197 -0
  206. package/src/contract/DODOCalleeHelper.ts +74 -0
  207. package/src/contract/DODOCirculationHelper.ts +152 -0
  208. package/src/contract/DODOCpProxy.ts +78 -0
  209. package/src/contract/DODOCpProxyWithoutGlobalQuota.ts +78 -0
  210. package/src/contract/DODODppProxy.ts +83 -0
  211. package/src/contract/DODODspProxy.ts +116 -0
  212. package/src/contract/DODODspProxyWithoutGSP.ts +83 -0
  213. package/src/contract/DODOIncentive.ts +259 -0
  214. package/src/contract/DODOMineV2Factory.ts +189 -0
  215. package/src/contract/DODOMineV3Proxy.ts +167 -0
  216. package/src/contract/DODOMineV3ProxyWithoutPlatform.ts +167 -0
  217. package/src/contract/DODOMineV3Registry.ts +168 -0
  218. package/src/contract/DODONFT.ts +323 -0
  219. package/src/contract/DODONFT1155.ts +214 -0
  220. package/src/contract/DODONFTApprove.ts +212 -0
  221. package/src/contract/DODONFTPoolProxy.ts +316 -0
  222. package/src/contract/DODONFTProxy.ts +293 -0
  223. package/src/contract/DODONFTRegistry.ts +187 -0
  224. package/src/contract/DODONFTRouteHelper.ts +39 -0
  225. package/src/contract/DODOSellHelper.ts +40 -0
  226. package/src/contract/DODOStarterProxy.ts +49 -0
  227. package/src/contract/DODOV1.ts +854 -0
  228. package/src/contract/DODOV1Adapter.ts +47 -0
  229. package/src/contract/DODOV1PmmHelper.ts +24 -0
  230. package/src/contract/DODOV1Proxy.ts +99 -0
  231. package/src/contract/DODOV2Proxy02.ts +456 -0
  232. package/src/contract/DODOV2RouteHelper.ts +65 -0
  233. package/src/contract/DPPAdvanced.ts +492 -0
  234. package/src/contract/DPPAdvancedAdmin.ts +191 -0
  235. package/src/contract/DPPFactory.ts +353 -0
  236. package/src/contract/DSP.ts +608 -0
  237. package/src/contract/DSPFactory.ts +248 -0
  238. package/src/contract/DVM.ts +564 -0
  239. package/src/contract/DVMFactory.ts +248 -0
  240. package/src/contract/ERC20.ts +134 -0
  241. package/src/contract/ERC20Helper.ts +104 -0
  242. package/src/contract/ERC20MineV3.ts +326 -0
  243. package/src/contract/ERC20V3Factory.ts +291 -0
  244. package/src/contract/FeeRateDIP3Impl.ts +281 -0
  245. package/src/contract/FeeRateModel.ts +94 -0
  246. package/src/contract/GSP.ts +766 -0
  247. package/src/contract/GSPFactory.ts +248 -0
  248. package/src/contract/InitializableERC20.ts +140 -0
  249. package/src/contract/LimitOrder.ts +267 -0
  250. package/src/contract/LimitOrderBot.ts +189 -0
  251. package/src/contract/MulticallWithValid.ts +113 -0
  252. package/src/contract/PermissionManager.ts +144 -0
  253. package/src/contract/dodoTeam.ts +415 -0
  254. package/src/contract/vDODOToken.ts +592 -0
  255. package/src/contractRequests.ts +10 -0
  256. package/src/index.ts +61 -0
  257. package/tsconfig.json +21 -0
@@ -0,0 +1,27 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV3Registry: string;
15
+ DODOApprove: string;
16
+ DODOApproveProxy: string;
17
+ DODOV1Adapter: string;
18
+ DODOStarterProxy: string;
19
+ DODOV2Proxy02: string;
20
+ DODODspProxyWithoutGSP: string;
21
+ DODOCpProxyWithoutGlobalQuota: string;
22
+ DODODppProxy: string;
23
+ DODOMineV3ProxyWithoutPlatform: string;
24
+ D3Proxy: string;
25
+ D3Vault: string;
26
+ };
27
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,23 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ ERC20Helper: string;
4
+ DODOCalleeHelper: string;
5
+ DODOV1PmmHelper: string;
6
+ DODOV2RouteHelper: string;
7
+ FeeRateDIP3Impl: string;
8
+ DVMFactory: string;
9
+ DSPFactory: string;
10
+ DPPFactory: string;
11
+ CrowdPoolingFactory: string;
12
+ ERC20V3Factory: string;
13
+ DODOMineV2Factory: string;
14
+ DODOMineV3Registry: string;
15
+ DODOApprove: string;
16
+ DODOApproveProxy: string;
17
+ DODOV2Proxy02: string;
18
+ DODODspProxyWithoutGSP: string;
19
+ DODOCpProxy: string;
20
+ DODODppProxy: string;
21
+ DODOMineV3Proxy: string;
22
+ };
23
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,30 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ Multicall: string;
3
+ MulticallWithValid: string;
4
+ DODOSellHelper: string;
5
+ DODOSwapCalcHelper: string;
6
+ ERC20Helper: string;
7
+ DODOCalleeHelper: string;
8
+ DODOV1PmmHelper: string;
9
+ DODOV2RouteHelper: string;
10
+ FeeRateDIP3Impl: string;
11
+ DVMFactory: string;
12
+ DSPFactory: string;
13
+ GSPFactory: string;
14
+ DPPFactory: string;
15
+ CrowdPoolingFactory: string;
16
+ ERC20V3Factory: string;
17
+ DODOMineV2Factory: string;
18
+ DODOMineV3Registry: string;
19
+ DODOApprove: string;
20
+ DODOApproveProxy: string;
21
+ DODOV2Adapter: string;
22
+ DODOV2Proxy02: string;
23
+ DODODspProxy: string;
24
+ DODOCpProxy: string;
25
+ DODODppProxy: string;
26
+ DODOMineV3Proxy: string;
27
+ DODOFeeRouteProxy1: string;
28
+ DODOFeeRouteProxy2: string;
29
+ };
30
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,24 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV2Factory: string;
15
+ DODOMineV3Registry: string;
16
+ DODOApprove: string;
17
+ DODOApproveProxy: string;
18
+ DODOV2Proxy02: string;
19
+ DODODspProxyWithoutGSP: string;
20
+ DODOCpProxy: string;
21
+ DODODppProxy: string;
22
+ DODOMineV3Proxy: string;
23
+ };
24
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,40 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV3Registry: string;
15
+ DODOApprove: string;
16
+ DODOApproveProxy: string;
17
+ DODOV1Adapter: string;
18
+ DODOStarterProxy: string;
19
+ DODOV1Proxy: string;
20
+ DODOV2Proxy02: string;
21
+ DODODspProxyWithoutGSP: string;
22
+ DODODspProxy: string;
23
+ DODOCpProxy: string;
24
+ DODODppProxy: string;
25
+ DODOMineV3Proxy: string;
26
+ LimitOrderBot: string;
27
+ LimitOrder: string;
28
+ DODOIncentive: string;
29
+ DODONFTRouteHelper: string;
30
+ DODONFTProxy: string;
31
+ BuyoutModel: string;
32
+ DODONFTRegistry: string;
33
+ DODONFT: string;
34
+ DODONFT1155: string;
35
+ DODONFTPoolProxy: string;
36
+ DODONFTApprove: string;
37
+ D3Proxy: string;
38
+ D3Vault: string;
39
+ };
40
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,23 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ ERC20Helper: string;
4
+ DODOCalleeHelper: string;
5
+ DODOV1PmmHelper: string;
6
+ DODOV2RouteHelper: string;
7
+ FeeRateDIP3Impl: string;
8
+ DVMFactory: string;
9
+ DSPFactory: string;
10
+ DPPFactory: string;
11
+ CrowdPoolingFactory: string;
12
+ ERC20V3Factory: string;
13
+ DODOMineV2Factory: string;
14
+ DODOMineV3Registry: string;
15
+ DODOApprove: string;
16
+ DODOApproveProxy: string;
17
+ DODOV2Proxy02: string;
18
+ DODODspProxyWithoutGSP: string;
19
+ DODOCpProxy: string;
20
+ DODODppProxy: string;
21
+ DODOMineV3Proxy: string;
22
+ };
23
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,45 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ vDODOToken: string;
3
+ MulticallWithValid: string;
4
+ DODOSellHelper: string;
5
+ ERC20Helper: string;
6
+ DODOCalleeHelper: string;
7
+ DODOV1PmmHelper: string;
8
+ DODOV2RouteHelper: string;
9
+ FeeRateDIP3Impl: string;
10
+ DVMFactory: string;
11
+ DSPFactory: string;
12
+ GSPFactory: string;
13
+ DPPFactory: string;
14
+ CrowdPoolingFactory: string;
15
+ ERC20V3Factory: string;
16
+ DODOMineV2Factory: string;
17
+ DODOMineV3Registry: string;
18
+ DODOApprove: string;
19
+ DODOApproveProxy: string;
20
+ DODOV1Adapter: string;
21
+ DODOStarterProxy: string;
22
+ DODOV1Proxy: string;
23
+ DODOV2Proxy02: string;
24
+ DODODspProxyWithoutGSP: string;
25
+ DODODspProxy: string;
26
+ DODOCpProxyWithoutGlobalQuota: string;
27
+ DODODppProxy: string;
28
+ DODOMineV3ProxyWithoutPlatform: string;
29
+ DODOCirculationHelper: string;
30
+ dodoTeam: string;
31
+ LimitOrderBot: string;
32
+ LimitOrder: string;
33
+ DODOIncentive: string;
34
+ DODONFTRouteHelper: string;
35
+ DODONFTProxy: string;
36
+ BuyoutModel: string;
37
+ DODONFTRegistry: string;
38
+ DODONFT: string;
39
+ DODONFT1155: string;
40
+ DODONFTPoolProxy: string;
41
+ DODONFTApprove: string;
42
+ D3Proxy: string;
43
+ D3Vault: string;
44
+ };
45
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,179 @@
1
+ export declare function getConfig(chainId: number): {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV3Registry: string;
15
+ DODOApprove: string;
16
+ DODOApproveProxy: string;
17
+ DODOV1Adapter: string;
18
+ DODOStarterProxy: string;
19
+ DODOV2Proxy02: string;
20
+ DODODspProxyWithoutGSP: string;
21
+ DODOCpProxyWithoutGlobalQuota: string;
22
+ DODODppProxy: string;
23
+ DODOMineV3ProxyWithoutPlatform: string;
24
+ } | {
25
+ MulticallWithValid: string;
26
+ ERC20Helper: string;
27
+ DODOCalleeHelper: string;
28
+ DODOV1PmmHelper: string;
29
+ DODOV2RouteHelper: string;
30
+ FeeRateDIP3Impl: string;
31
+ DVMFactory: string;
32
+ DSPFactory: string;
33
+ DPPFactory: string;
34
+ CrowdPoolingFactory: string;
35
+ ERC20V3Factory: string;
36
+ DODOMineV2Factory: string;
37
+ DODOMineV3Registry: string;
38
+ DODOApprove: string;
39
+ DODOApproveProxy: string;
40
+ DODOV2Proxy02: string;
41
+ DODODspProxyWithoutGSP: string;
42
+ DODOCpProxy: string;
43
+ DODODppProxy: string;
44
+ DODOMineV3Proxy: string;
45
+ } | {
46
+ Multicall: string;
47
+ MulticallWithValid: string;
48
+ DODOSellHelper: string;
49
+ DODOSwapCalcHelper: string;
50
+ ERC20Helper: string;
51
+ DODOCalleeHelper: string;
52
+ DODOV1PmmHelper: string;
53
+ DODOV2RouteHelper: string;
54
+ FeeRateDIP3Impl: string;
55
+ DVMFactory: string;
56
+ DSPFactory: string;
57
+ GSPFactory: string;
58
+ DPPFactory: string;
59
+ CrowdPoolingFactory: string;
60
+ ERC20V3Factory: string;
61
+ DODOMineV2Factory: string;
62
+ DODOMineV3Registry: string;
63
+ DODOApprove: string;
64
+ DODOApproveProxy: string;
65
+ DODOV2Adapter: string;
66
+ DODOV2Proxy02: string;
67
+ DODODspProxy: string;
68
+ DODOCpProxy: string;
69
+ DODODppProxy: string;
70
+ DODOMineV3Proxy: string;
71
+ DODOFeeRouteProxy1: string;
72
+ DODOFeeRouteProxy2: string;
73
+ } | {
74
+ MulticallWithValid: string;
75
+ DODOSellHelper: string;
76
+ ERC20Helper: string;
77
+ DODOCalleeHelper: string;
78
+ DODOV1PmmHelper: string;
79
+ DODOV2RouteHelper: string;
80
+ FeeRateDIP3Impl: string;
81
+ DVMFactory: string;
82
+ DSPFactory: string;
83
+ DPPFactory: string;
84
+ CrowdPoolingFactory: string;
85
+ ERC20V3Factory: string;
86
+ DODOMineV3Registry: string;
87
+ DODOApprove: string;
88
+ DODOApproveProxy: string;
89
+ DODOV1Adapter: string;
90
+ DODOStarterProxy: string;
91
+ DODOV1Proxy: string;
92
+ DODOV2Proxy02: string;
93
+ DODODspProxyWithoutGSP: string;
94
+ DODODspProxy: string;
95
+ DODOCpProxy: string;
96
+ DODODppProxy: string;
97
+ DODOMineV3Proxy: string;
98
+ LimitOrderBot: string;
99
+ LimitOrder: string;
100
+ DODOIncentive: string;
101
+ DODONFTRouteHelper: string;
102
+ DODONFTProxy: string;
103
+ BuyoutModel: string;
104
+ DODONFTRegistry: string;
105
+ DODONFT: string;
106
+ DODONFT1155: string;
107
+ DODONFTPoolProxy: string;
108
+ DODONFTApprove: string;
109
+ D3Proxy: string;
110
+ D3Vault: string;
111
+ } | {
112
+ MulticallWithValid: string;
113
+ ERC20Helper: string;
114
+ DODOCalleeHelper: string;
115
+ DODOV1PmmHelper: string;
116
+ DODOV2RouteHelper: string;
117
+ FeeRateDIP3Impl: string;
118
+ DVMFactory: string;
119
+ DSPFactory: string;
120
+ DPPFactory: string;
121
+ CrowdPoolingFactory: string;
122
+ ERC20V3Factory: string;
123
+ DODOMineV2Factory: string;
124
+ DODOMineV3Registry: string;
125
+ DODOApprove: string;
126
+ DODOApproveProxy: string;
127
+ DODOV1Adapter: string;
128
+ DODOV2Proxy02: string;
129
+ DODODspProxyWithoutGSP: string;
130
+ DODOCpProxyWithoutGlobalQuota: string;
131
+ DODODppProxy: string;
132
+ DODOMineV3ProxyWithoutPlatform: string;
133
+ D3Proxy: string;
134
+ D3Vault: string;
135
+ } | null;
136
+ export { default as arbitrum } from './arbitrum';
137
+ export { default as aurora } from './aurora';
138
+ export { default as avalanche } from './avalanche';
139
+ export { default as base } from './base';
140
+ export { default as berachainTestnet } from './berachain-testnet';
141
+ export { default as bitlayer } from './bitlayer';
142
+ export { default as bsc } from './bsc';
143
+ export { default as conflux } from './conflux';
144
+ export { default as ethereum } from './ethereum';
145
+ export { default as linea } from './linea';
146
+ export { default as manta } from './manta';
147
+ export { default as mantle } from './mantle';
148
+ export { default as morph } from './morph';
149
+ export { default as optimism } from './optimism';
150
+ export { default as polygon } from './polygon';
151
+ export { default as scroll } from './scroll';
152
+ export { default as sepolia } from './sepolia';
153
+ export { default as taiko } from './taiko';
154
+ export { default as xLayer } from './x-layer';
155
+ export { default as zeroMainnet } from './zero-mainnet';
156
+ export { default as zircuitMainnet } from './zircuit-mainnet';
157
+ export declare const multiCallAddressList: {
158
+ "1": string;
159
+ "10": string;
160
+ "56": string;
161
+ "137": string;
162
+ "196": string;
163
+ "1030": string;
164
+ "2818": string;
165
+ "5000": string;
166
+ "8453": string;
167
+ "10169": string;
168
+ "42161": string;
169
+ "43114": string;
170
+ "48900": string;
171
+ "59144": string;
172
+ "80084": string;
173
+ "167000": string;
174
+ "200901": string;
175
+ "534352": string;
176
+ "543210": string;
177
+ "11155111": string;
178
+ "1313161554": string;
179
+ };
@@ -0,0 +1,24 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV2Factory: string;
15
+ DODOMineV3Registry: string;
16
+ DODOApprove: string;
17
+ DODOApproveProxy: string;
18
+ DODOV2Proxy02: string;
19
+ DODODspProxyWithoutGSP: string;
20
+ DODOCpProxy: string;
21
+ DODODppProxy: string;
22
+ DODOMineV3Proxy: string;
23
+ };
24
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,24 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV2Factory: string;
15
+ DODOMineV3Registry: string;
16
+ DODOApprove: string;
17
+ DODOApproveProxy: string;
18
+ DODOV2Proxy02: string;
19
+ DODODspProxyWithoutGSP: string;
20
+ DODOCpProxy: string;
21
+ DODODppProxy: string;
22
+ DODOMineV3Proxy: string;
23
+ };
24
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,24 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ ERC20Helper: string;
4
+ DODOCalleeHelper: string;
5
+ DODOV1PmmHelper: string;
6
+ DODOV2RouteHelper: string;
7
+ FeeRateDIP3Impl: string;
8
+ DVMFactory: string;
9
+ DSPFactory: string;
10
+ DPPFactory: string;
11
+ CrowdPoolingFactory: string;
12
+ ERC20V3Factory: string;
13
+ DODOMineV2Factory: string;
14
+ DODOMineV3Registry: string;
15
+ DODOApprove: string;
16
+ DODOApproveProxy: string;
17
+ DODOV2Proxy02: string;
18
+ DODODspProxyWithoutGSP: string;
19
+ DODODspProxy: string;
20
+ DODOCpProxy: string;
21
+ DODODppProxy: string;
22
+ DODOMineV3Proxy: string;
23
+ };
24
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,30 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ Multicall: string;
3
+ MulticallWithValid: string;
4
+ DODOSellHelper: string;
5
+ DODOSwapCalcHelper: string;
6
+ ERC20Helper: string;
7
+ DODOCalleeHelper: string;
8
+ DODOV1PmmHelper: string;
9
+ DODOV2RouteHelper: string;
10
+ FeeRateDIP3Impl: string;
11
+ DVMFactory: string;
12
+ DSPFactory: string;
13
+ GSPFactory: string;
14
+ DPPFactory: string;
15
+ CrowdPoolingFactory: string;
16
+ ERC20V3Factory: string;
17
+ DODOMineV2Factory: string;
18
+ DODOMineV3Registry: string;
19
+ DODOApprove: string;
20
+ DODOApproveProxy: string;
21
+ DODOV2Adapter: string;
22
+ DODOV2Proxy02: string;
23
+ DODODspProxyWithoutGSP: string;
24
+ DODOCpProxy: string;
25
+ DODODppProxy: string;
26
+ DODOMineV3Proxy: string;
27
+ DODOFeeRouteProxy1: string;
28
+ DODOFeeRouteProxy2: string;
29
+ };
30
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,26 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ ERC20Helper: string;
4
+ DODOCalleeHelper: string;
5
+ DODOV1PmmHelper: string;
6
+ DODOV2RouteHelper: string;
7
+ FeeRateDIP3Impl: string;
8
+ DVMFactory: string;
9
+ DSPFactory: string;
10
+ DPPFactory: string;
11
+ CrowdPoolingFactory: string;
12
+ ERC20V3Factory: string;
13
+ DODOMineV2Factory: string;
14
+ DODOMineV3Registry: string;
15
+ DODOApprove: string;
16
+ DODOApproveProxy: string;
17
+ DODOV1Adapter: string;
18
+ DODOV2Proxy02: string;
19
+ DODODspProxyWithoutGSP: string;
20
+ DODOCpProxyWithoutGlobalQuota: string;
21
+ DODODppProxy: string;
22
+ DODOMineV3ProxyWithoutPlatform: string;
23
+ D3Proxy: string;
24
+ D3Vault: string;
25
+ };
26
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,38 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV3Registry: string;
15
+ DODOApprove: string;
16
+ DODOApproveProxy: string;
17
+ DODOV1Adapter: string;
18
+ DODOStarterProxy: string;
19
+ DODOV1Proxy: string;
20
+ DODOV2Proxy02: string;
21
+ DODODspProxyWithoutGSP: string;
22
+ DODOCpProxyWithoutGlobalQuota: string;
23
+ DODODppProxy: string;
24
+ DODOMineV3ProxyWithoutPlatform: string;
25
+ LimitOrderBot: string;
26
+ LimitOrder: string;
27
+ DODONFTRouteHelper: string;
28
+ DODONFTProxy: string;
29
+ BuyoutModel: string;
30
+ DODONFTRegistry: string;
31
+ DODONFT: string;
32
+ DODONFT1155: string;
33
+ DODONFTPoolProxy: string;
34
+ DODONFTApprove: string;
35
+ D3Proxy: string;
36
+ D3Vault: string;
37
+ };
38
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,24 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV2Factory: string;
15
+ DODOMineV3Registry: string;
16
+ DODOApprove: string;
17
+ DODOApproveProxy: string;
18
+ DODOV2Proxy02: string;
19
+ DODODspProxyWithoutGSP: string;
20
+ DODOCpProxy: string;
21
+ DODODppProxy: string;
22
+ DODOMineV3Proxy: string;
23
+ };
24
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,27 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ DPPFactory: string;
12
+ CrowdPoolingFactory: string;
13
+ ERC20V3Factory: string;
14
+ DODOMineV2Factory: string;
15
+ DODOMineV3Registry: string;
16
+ DODOApprove: string;
17
+ DODOApproveProxy: string;
18
+ DODOV2Proxy02: string;
19
+ DODODspProxyWithoutGSP: string;
20
+ DODODspProxy: string;
21
+ DODOCpProxy: string;
22
+ DODODppProxy: string;
23
+ DODOMineV3Proxy: string;
24
+ D3Proxy: string;
25
+ D3Vault: string;
26
+ };
27
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,30 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ Multicall: string;
3
+ MulticallWithValid: string;
4
+ DODOSellHelper: string;
5
+ DODOSwapCalcHelper: string;
6
+ ERC20Helper: string;
7
+ DODOCalleeHelper: string;
8
+ DODOV1PmmHelper: string;
9
+ DODOV2RouteHelper: string;
10
+ FeeRateDIP3Impl: string;
11
+ DVMFactory: string;
12
+ DSPFactory: string;
13
+ GSPFactory: string;
14
+ DPPFactory: string;
15
+ CrowdPoolingFactory: string;
16
+ ERC20V3Factory: string;
17
+ DODOMineV2Factory: string;
18
+ DODOMineV3Registry: string;
19
+ DODOApprove: string;
20
+ DODOApproveProxy: string;
21
+ DODOV2Adapter: string;
22
+ DODOV2Proxy02: string;
23
+ DODODspProxy: string;
24
+ DODOCpProxy: string;
25
+ DODODppProxy: string;
26
+ DODOMineV3Proxy: string;
27
+ DODOFeeRouteProxy1: string;
28
+ DODOFeeRouteProxy2: string;
29
+ };
30
+ export default CONTRACT_CONFIG;
@@ -0,0 +1,25 @@
1
+ declare const CONTRACT_CONFIG: {
2
+ MulticallWithValid: string;
3
+ DODOSellHelper: string;
4
+ ERC20Helper: string;
5
+ DODOCalleeHelper: string;
6
+ DODOV1PmmHelper: string;
7
+ DODOV2RouteHelper: string;
8
+ FeeRateDIP3Impl: string;
9
+ DVMFactory: string;
10
+ DSPFactory: string;
11
+ GSPFactory: string;
12
+ DPPFactory: string;
13
+ CrowdPoolingFactory: string;
14
+ ERC20V3Factory: string;
15
+ DODOMineV2Factory: string;
16
+ DODOMineV3Registry: string;
17
+ DODOApprove: string;
18
+ DODOApproveProxy: string;
19
+ DODOV2Proxy02: string;
20
+ DODODspProxyWithoutGSP: string;
21
+ DODOCpProxy: string;
22
+ DODODppProxy: string;
23
+ DODOMineV3Proxy: string;
24
+ };
25
+ export default CONTRACT_CONFIG;