@dodoex/dodo-contract-request 1.34.0 → 1.35.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cache/contract-info/DFTManager.json +2832 -0
- package/.cache/contract-info/ICHIVault.json +787 -0
- package/.cache/contract-info/RWAManager.json +1 -0
- package/.cache/contract-info/RWAToken.json +1 -0
- package/.cache/contract-info/TransparentUpgradeableProxyWithPros.json +2006 -0
- package/CHANGELOG.md +85 -21
- package/contract-config/arbitrum.json +1 -1
- package/contract-config/berachain.json +4 -2
- package/contract-config/birdlayer.json +66 -0
- package/contract-config/pharos-atlantic-testnet.json +2 -1
- package/contract-config/pharos.json +69 -0
- package/contract-config/rise.json +67 -0
- package/contract-config/sepolia.json +3 -1
- package/contract-config/zetachain-testnet.json +68 -0
- package/contract-config/zetachain.json +61 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types/config/birdlayer.d.ts +29 -0
- package/dist/types/config/index.d.ts +10 -0
- package/dist/types/config/pharos-atlantic-testnet.d.ts +1 -0
- package/dist/types/config/pharos.d.ts +33 -0
- package/dist/types/config/rise.d.ts +33 -0
- package/dist/types/config/sepolia.d.ts +2 -0
- package/dist/types/config/zetachain-testnet.d.ts +32 -0
- package/dist/types/config/zetachain.d.ts +30 -0
- package/dist/types/contract/DFTManager.d.ts +994 -0
- package/dist/types/contract/FeeRateDIP3Impl.d.ts +30 -21
- package/dist/types/contract/ICHIVault.d.ts +516 -0
- package/dist/types/contract/RWAManager.d.ts +264 -0
- package/dist/types/contract/RWAToken.d.ts +179 -0
- package/dist/types/contract/TransparentUpgradeableProxyWithPros.d.ts +679 -0
- package/dist/types/index.d.ts +5 -0
- package/package.json +1 -1
- package/scripts/contract-generate.ts +1 -0
- package/src/config/birdlayer.ts +4 -0
- package/src/config/index.ts +21 -1
- package/src/config/pharos-atlantic-testnet.ts +1 -1
- package/src/config/pharos.ts +4 -0
- package/src/config/rise.ts +4 -0
- package/src/config/sepolia.ts +1 -1
- package/src/config/zetachain-testnet.ts +4 -0
- package/src/config/zetachain.ts +4 -0
- package/src/contract/CrowdPoolingFactory.ts +1 -1
- package/src/contract/DFTManager.ts +1222 -0
- package/src/contract/DODOApprove.ts +1 -1
- package/src/contract/DODOApproveProxy.ts +1 -1
- package/src/contract/DODOCalleeHelper.ts +1 -1
- package/src/contract/DODOCpProxy.ts +1 -1
- package/src/contract/DODODppProxy.ts +1 -1
- package/src/contract/DODODspProxy.ts +1 -1
- package/src/contract/DODODspProxyWithoutGSP.ts +1 -1
- package/src/contract/DODOFeeRouteProxy1.ts +1 -1
- package/src/contract/DODOFeeRouteProxy2.ts +1 -1
- package/src/contract/DODOMineV2Factory.ts +1 -1
- package/src/contract/DODOMineV3Proxy.ts +1 -1
- package/src/contract/DODOMineV3Registry.ts +1 -1
- package/src/contract/DODOSellHelper.ts +1 -1
- package/src/contract/DODOSwapCalcHelper.ts +1 -1
- package/src/contract/DODOV1PmmHelper.ts +1 -1
- package/src/contract/DODOV2Adapter.ts +1 -1
- package/src/contract/DODOV2Proxy02.ts +1 -1
- package/src/contract/DODOV2RouteHelper.ts +1 -1
- package/src/contract/DPPFactory.ts +1 -1
- package/src/contract/DSPFactory.ts +1 -1
- package/src/contract/DVMFactory.ts +1 -1
- package/src/contract/ERC20Helper.ts +1 -1
- package/src/contract/ERC20V3Factory.ts +1 -1
- package/src/contract/FeeRateDIP3Impl.ts +61 -75
- package/src/contract/GSPFactory.ts +1 -1
- package/src/contract/ICHIVault.ts +863 -0
- package/src/contract/Multicall.ts +1 -1
- package/src/contract/MulticallWithValid.ts +1 -1
- package/src/contract/NonfungiblePositionManager.ts +1 -1
- package/src/contract/RWAManager.ts +479 -0
- package/src/contract/RWAToken.ts +330 -0
- package/src/contract/TransparentUpgradeableProxyWithPros.ts +1226 -0
- package/src/contract/UniswapV2Factory.ts +1 -1
- package/src/contract/UniswapV2Router02.ts +1 -1
- package/src/contract/UniswapV3Factory.ts +1 -1
- package/src/index.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
# [@dodoex/dodo-contract-request-v1.35.0-alpha.2](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.35.0-alpha.1...@dodoex/dodo-contract-request-v1.35.0-alpha.2) (2026-03-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add rise && pharos mainnet ([a6f11a8](https://github.com/DODOEX/contract-request/commit/a6f11a8f5bd0d7e06508de693211688b3fc03bce))
|
|
7
|
+
|
|
8
|
+
# [@dodoex/dodo-contract-request-v1.35.0-alpha.1](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.34.0...@dodoex/dodo-contract-request-v1.35.0-alpha.1) (2026-03-04)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update ERC20V3Factory ([5615684](https://github.com/DODOEX/contract-request/commit/5615684f16c1e52b8cf75f83de888d3489da6a63))
|
|
14
|
+
* update ZetaChain testnet configuration and contract addresses ([6bfb183](https://github.com/DODOEX/contract-request/commit/6bfb183b468e3abbd9e65acdb7e74452891c13d4))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* add birdlayer ([aa88c55](https://github.com/DODOEX/contract-request/commit/aa88c55d74442440770944e9089d336e0b3dc4e9))
|
|
20
|
+
* add DFTManager contract ([ba45e30](https://github.com/DODOEX/contract-request/commit/ba45e30d1118e559ce59119f16db50db663430f8))
|
|
21
|
+
* add ICHIVault contract ([b191ff6](https://github.com/DODOEX/contract-request/commit/b191ff6d13c8a8a5657cc4e1d46c6a7d027aa8c7))
|
|
22
|
+
* add stable configuration for DODO contract with comprehensive token and helper mappings ([c65ef95](https://github.com/DODOEX/contract-request/commit/c65ef95dd84f0ccfa9cdcb7697ca545c06646b4d))
|
|
23
|
+
* add stable testnet contract configuration ([00e84f0](https://github.com/DODOEX/contract-request/commit/00e84f0e55a087ddbc1ed551f5341de8f66ac791))
|
|
24
|
+
* add transparent upgradeable address ([51884f8](https://github.com/DODOEX/contract-request/commit/51884f8fdd8875b95fc0a58772932d68d7992416))
|
|
25
|
+
* add UniswapV2Factory and UniswapV2Router02 addresses to taiko.json configuration ([03706e5](https://github.com/DODOEX/contract-request/commit/03706e5d81b414b4fc3d06a9ab80dd0e2febc627))
|
|
26
|
+
* add UniswapV2Router02 to stable testnet contract configuration ([6ea2db9](https://github.com/DODOEX/contract-request/commit/6ea2db91c27148121a8f2ae8592d680362bf6831))
|
|
27
|
+
* add UniswapV2Router02 to zetachain-testnet configuration ([e46c4d3](https://github.com/DODOEX/contract-request/commit/e46c4d3be150cda7c3aaa058a914b13e53bc9f0d))
|
|
28
|
+
* add ZetaChain configuration with token and helper addresses ([99b621d](https://github.com/DODOEX/contract-request/commit/99b621d77bfae2a18bde48a67b6e3470c9609e56))
|
|
29
|
+
* add zetachain testnet support and update contract address mappings ([c0de1cf](https://github.com/DODOEX/contract-request/commit/c0de1cf70bedacab0a647fee69f430b9aba4cfe7))
|
|
30
|
+
* release nerochain alpha ([48ff8df](https://github.com/DODOEX/contract-request/commit/48ff8df3144867290b0104d3c4b180097b0a587e))
|
|
31
|
+
* test release ([f227c7d](https://github.com/DODOEX/contract-request/commit/f227c7d0b2b42292f80ea89ea2aed9c185448a89))
|
|
32
|
+
* update RWAManager contract address and add new functions for admin and balance queries ([49f555a](https://github.com/DODOEX/contract-request/commit/49f555a5dae87075e83b116519c12191f25ff62f))
|
|
33
|
+
* update Sepolia contract config address locations ([d08fd47](https://github.com/DODOEX/contract-request/commit/d08fd47d9c7c5d9f50cdeab8ef7acb4f86cf8f19))
|
|
34
|
+
|
|
1
35
|
# [@dodoex/dodo-contract-request-v1.34.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.33.0...@dodoex/dodo-contract-request-v1.34.0) (2026-02-05)
|
|
2
36
|
|
|
3
37
|
|
|
@@ -116,62 +150,92 @@
|
|
|
116
150
|
|
|
117
151
|
### Bug Fixes
|
|
118
152
|
|
|
119
|
-
*
|
|
153
|
+
* update ZetaChain testnet configuration and contract addresses ([6bfb183](https://github.com/DODOEX/contract-request/commit/6bfb183b468e3abbd9e65acdb7e74452891c13d4))
|
|
154
|
+
|
|
155
|
+
# [@dodoex/dodo-contract-request-v1.19.0-alpha.3](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.19.0-alpha.2...@dodoex/dodo-contract-request-v1.19.0-alpha.3) (2025-07-24)
|
|
120
156
|
|
|
121
|
-
|
|
157
|
+
|
|
158
|
+
### Bug Fixes
|
|
159
|
+
|
|
160
|
+
* update ERC20V3Factory ([5615684](https://github.com/DODOEX/contract-request/commit/5615684f16c1e52b8cf75f83de888d3489da6a63))
|
|
161
|
+
|
|
162
|
+
# [@dodoex/dodo-contract-request-v1.19.0-alpha.2](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.19.0-alpha.1...@dodoex/dodo-contract-request-v1.19.0-alpha.2) (2025-07-03)
|
|
122
163
|
|
|
123
164
|
|
|
124
165
|
### Features
|
|
125
166
|
|
|
126
|
-
*
|
|
167
|
+
* add ZetaChain configuration with token and helper addresses ([99b621d](https://github.com/DODOEX/contract-request/commit/99b621d77bfae2a18bde48a67b6e3470c9609e56))
|
|
127
168
|
|
|
128
|
-
# [@dodoex/dodo-contract-request-v1.
|
|
169
|
+
# [@dodoex/dodo-contract-request-v1.19.0-alpha.1](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.18.1...@dodoex/dodo-contract-request-v1.19.0-alpha.1) (2025-06-25)
|
|
129
170
|
|
|
130
171
|
|
|
131
172
|
### Features
|
|
132
173
|
|
|
133
|
-
*
|
|
174
|
+
* add birdlayer ([aa88c55](https://github.com/DODOEX/contract-request/commit/aa88c55d74442440770944e9089d336e0b3dc4e9))
|
|
175
|
+
* add DFTManager contract ([ba45e30](https://github.com/DODOEX/contract-request/commit/ba45e30d1118e559ce59119f16db50db663430f8))
|
|
176
|
+
* add ICHIVault contract ([b191ff6](https://github.com/DODOEX/contract-request/commit/b191ff6d13c8a8a5657cc4e1d46c6a7d027aa8c7))
|
|
177
|
+
* add more chain && change optimism ERC20Helper ([0db4f08](https://github.com/DODOEX/contract-request/commit/0db4f088a8b3cb76c85824e150df847ef21a12ae))
|
|
178
|
+
* add UniswapV2Factory and UniswapV2Router02 addresses to taiko.json configuration ([03706e5](https://github.com/DODOEX/contract-request/commit/03706e5d81b414b4fc3d06a9ab80dd0e2febc627))
|
|
179
|
+
* add UniswapV2Router02 to zetachain-testnet configuration ([e46c4d3](https://github.com/DODOEX/contract-request/commit/e46c4d3be150cda7c3aaa058a914b13e53bc9f0d))
|
|
180
|
+
* add zetachain testnet support and update contract address mappings ([c0de1cf](https://github.com/DODOEX/contract-request/commit/c0de1cf70bedacab0a647fee69f430b9aba4cfe7))
|
|
181
|
+
* release nerochain alpha ([48ff8df](https://github.com/DODOEX/contract-request/commit/48ff8df3144867290b0104d3c4b180097b0a587e))
|
|
182
|
+
* test release ([f227c7d](https://github.com/DODOEX/contract-request/commit/f227c7d0b2b42292f80ea89ea2aed9c185448a89))
|
|
183
|
+
* update RWAManager contract address and add new functions for admin and balance queries ([49f555a](https://github.com/DODOEX/contract-request/commit/49f555a5dae87075e83b116519c12191f25ff62f))
|
|
184
|
+
* update Sepolia contract config address locations ([d08fd47](https://github.com/DODOEX/contract-request/commit/d08fd47d9c7c5d9f50cdeab8ef7acb4f86cf8f19))
|
|
134
185
|
|
|
135
|
-
# [@dodoex/dodo-contract-request-v1.
|
|
186
|
+
# [@dodoex/dodo-contract-request-v1.18.1](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.18.0...@dodoex/dodo-contract-request-v1.18.1) (2025-06-24)
|
|
187
|
+
|
|
188
|
+
### Bug Fixes
|
|
189
|
+
|
|
190
|
+
- change DODODspProxy key ([744034d](https://github.com/DODOEX/contract-request/commit/744034d3207af85345b80435aad5efa0b76e71ef))
|
|
136
191
|
|
|
192
|
+
# [@dodoex/dodo-contract-request-v1.18.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.17.0...@dodoex/dodo-contract-request-v1.18.0) (2025-06-19)
|
|
137
193
|
|
|
138
194
|
### Features
|
|
139
195
|
|
|
140
|
-
|
|
196
|
+
- update pharos address ([7641d6c](https://github.com/DODOEX/contract-request/commit/7641d6c2626be2b31ee9ef99b957917b11e741f6))
|
|
141
197
|
|
|
142
|
-
# [@dodoex/dodo-contract-request-v1.
|
|
198
|
+
# [@dodoex/dodo-contract-request-v1.17.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.16.0...@dodoex/dodo-contract-request-v1.17.0) (2025-06-16)
|
|
143
199
|
|
|
200
|
+
### Features
|
|
201
|
+
|
|
202
|
+
- update pharos address ([51cc5af](https://github.com/DODOEX/contract-request/commit/51cc5aff6a63ca33c3107b41ea29681f0022ffdb))
|
|
203
|
+
|
|
204
|
+
# [@dodoex/dodo-contract-request-v1.16.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.15.0...@dodoex/dodo-contract-request-v1.16.0) (2025-06-10)
|
|
144
205
|
|
|
145
206
|
### Features
|
|
146
207
|
|
|
147
|
-
|
|
208
|
+
- add pharos tetnet chain ([50e9bfd](https://github.com/DODOEX/contract-request/commit/50e9bfd97e6bdaddb28ac2961c30197fd6c17c0c))
|
|
148
209
|
|
|
149
|
-
# [@dodoex/dodo-contract-request-v1.
|
|
210
|
+
# [@dodoex/dodo-contract-request-v1.15.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.14.0...@dodoex/dodo-contract-request-v1.15.0) (2025-05-09)
|
|
211
|
+
|
|
212
|
+
### Features
|
|
150
213
|
|
|
214
|
+
- add AMM contract ([ef286e5](https://github.com/DODOEX/contract-request/commit/ef286e5f36e3a0d39fa20b7330dde97b9d64ee24))
|
|
215
|
+
|
|
216
|
+
# [@dodoex/dodo-contract-request-v1.14.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.13.0...@dodoex/dodo-contract-request-v1.14.0) (2025-05-09)
|
|
151
217
|
|
|
152
218
|
### Features
|
|
153
219
|
|
|
154
|
-
|
|
220
|
+
- update nero chain ([2ff1374](https://github.com/DODOEX/contract-request/commit/2ff137482d4c66eeee8fb6c121a2d282c2a9d297))
|
|
155
221
|
|
|
156
222
|
# [@dodoex/dodo-contract-request-v1.13.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.12.0...@dodoex/dodo-contract-request-v1.13.0) (2025-05-09)
|
|
157
223
|
|
|
158
|
-
|
|
159
224
|
### Features
|
|
160
225
|
|
|
161
|
-
|
|
226
|
+
- add nero chain ([8aeb7b6](https://github.com/DODOEX/contract-request/commit/8aeb7b69a472a9c704dfd36eb0e6e8c2d31012a2))
|
|
162
227
|
|
|
163
228
|
# [@dodoex/dodo-contract-request-v1.12.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.11.0...@dodoex/dodo-contract-request-v1.12.0) (2025-05-09)
|
|
164
229
|
|
|
165
|
-
|
|
166
230
|
### Features
|
|
167
231
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
232
|
+
- add configuration for plume testnet ([6ec75b3](https://github.com/DODOEX/contract-request/commit/6ec75b39c76e01b57fc26772a41408254011f7a4))
|
|
233
|
+
- add hashkey && add hemi && update rise-testnet ([d8bd43c](https://github.com/DODOEX/contract-request/commit/d8bd43c817e79fbcd25c56c45cc1bfa07a65b5aa))
|
|
234
|
+
- add tac testnet ([51e57b5](https://github.com/DODOEX/contract-request/commit/51e57b51532e3f00890f284c7e45c6bec6c81b59))
|
|
235
|
+
- change contract address ([ba01410](https://github.com/DODOEX/contract-request/commit/ba01410484169d238cc13ac57c7d741bdca7b8a8))
|
|
236
|
+
- change contract address ([fa0749a](https://github.com/DODOEX/contract-request/commit/fa0749a86c0833976412072d974967adcf045381))
|
|
237
|
+
- update rise ([c034bb3](https://github.com/DODOEX/contract-request/commit/c034bb3324757a147d92746e349314e0f7a4a0b2))
|
|
238
|
+
- update WETH token ([bbd5f86](https://github.com/DODOEX/contract-request/commit/bbd5f866d019d77a69bf705bb1c4d8b4c8e24ee6))
|
|
175
239
|
|
|
176
240
|
# [@dodoex/dodo-contract-request-v1.11.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.10.0...@dodoex/dodo-contract-request-v1.11.0) (2025-04-11)
|
|
177
241
|
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"CustomERC20": "0x5B829f90eCd51E803917C1E25EC9A718f32ecB46",
|
|
30
30
|
"CustomMintableERC20": "0x3b73a6610db514e14b432c72Eb49723dAe9c1C10",
|
|
31
31
|
"ERC20MineV2": "0x4e5Ad9061d33621aF33Bad7d4dfF45Eb83Bc6a46",
|
|
32
|
-
"ERC20MineV3": "0xc90958D0466c7f1337d5D0B8947F812f636D3c63"
|
|
32
|
+
"ERC20MineV3": "0xc90958D0466c7f1337d5D0B8947F812f636D3c63",
|
|
33
|
+
"ICHIVault": "0xb00ae8a7be63036dbcd143a842bfc14708c440bb"
|
|
33
34
|
},
|
|
34
35
|
"Factory": {
|
|
35
36
|
"DVMFactory": "0x6694eebf40924e04c952EA8F1626d19E7a656Bb7",
|
|
@@ -63,4 +64,5 @@
|
|
|
63
64
|
"DefaultMaintainer": "0x43592930d05A17ac2DEBcb533E5f67ccC1ebe977",
|
|
64
65
|
"FeeReceiver": "0x5F7E6fd27C1F717AbC6CB8d5307b7E4Aa7678460"
|
|
65
66
|
}
|
|
66
|
-
}
|
|
67
|
+
}
|
|
68
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Chain": "birdlayer",
|
|
3
|
+
"ChainId": 53456,
|
|
4
|
+
"Token": {
|
|
5
|
+
"WETH": "0x8d312E9A5C7edF5612C9e28C22593dA40d707720"
|
|
6
|
+
},
|
|
7
|
+
"Helper": {
|
|
8
|
+
"Multicall": "0x46AFE01D758a46d64c7d8E0791314D5db3E2e683",
|
|
9
|
+
"MulticallWithValid": "0xB95eD7E958E196688984951F41Ac2888F4B10aB9",
|
|
10
|
+
"DODOSellHelper": "0x3a64Ec3606FF7310E8fAd6FcC008e39705fB496d",
|
|
11
|
+
"DODOSwapCalcHelper": "0xD0CF7dfbF09CAfaB8AEf00e0Ce19a4638004a364",
|
|
12
|
+
"ERC20Helper": "0x8b09DB11ea380d6454D2592D334FFC319ce6EF3E",
|
|
13
|
+
"DODOCalleeHelper": "0x2Da0855f04919D402Af88D0D04AbB38177FE47fa",
|
|
14
|
+
"DODOV1PmmHelper": "0x3A7Bc5F9E41356728f037f17D88c642EE46d1Aaa",
|
|
15
|
+
"DODOV2RouteHelper": "0xC975769aB5Ef947CB82535ca6607B0683a355195"
|
|
16
|
+
},
|
|
17
|
+
"Templates": {
|
|
18
|
+
"CloneFactory": "0x8b87D4B384517d2E1AFC61b3292d6e6C411ea303",
|
|
19
|
+
"FeeRateModel": "0xE6cecb7460c9E52aA483cb1f0E87d78D7085686F",
|
|
20
|
+
"FeeRateDIP3Impl": "0x2Ba2696c63fA8b67b395de6D12F849b17C3515F9",
|
|
21
|
+
"PermissionManager": "0x2e50e3e18c19C7d80B81888a961A13aEE49b962E",
|
|
22
|
+
"DVM": "0x5eC9BEaCe4a0f46F77945D54511e2b454cb8F38E",
|
|
23
|
+
"DSP": "0x577389Ef538f8767865f68f3EdBBFBfD60afa387",
|
|
24
|
+
"GSP": "0xFc66a1283a43Ce2f4d4FA0623d4654754577a09d",
|
|
25
|
+
"DPPAdvanced": "0x710409D2121B7C8EA4aCAdd6803FDE2D85DF6473",
|
|
26
|
+
"DPPAdvancedAdmin": "0x46E55A974c5995675b025f7F607C3278B36f0c29",
|
|
27
|
+
"CP": "0x5245f5E66792cfbaCB64eFAef3121e7c5ccD879b",
|
|
28
|
+
"InitializableERC20": "0xF0f8FB90039875e2682678E6C23828BdD16fAC9d",
|
|
29
|
+
"CustomERC20": "0xc88492049C990c0eF2eB0F77D1Aef8D66Bf16ba8",
|
|
30
|
+
"CustomMintableERC20": "0x78d43a889F42a344Fe98C3fb9455791Dc8178d55",
|
|
31
|
+
"ERC20MineV2": "0x69716E51E3F8Bec9c3D4E1bB46396384AE11C594",
|
|
32
|
+
"ERC20MineV3": "0xFe837A3530dD566401d35beFCd55582AF7c4dfFC",
|
|
33
|
+
"DFTManager": "0x79a0A160D3Ec0b8402f4F8d657B9a7e0a289663e"
|
|
34
|
+
},
|
|
35
|
+
"Factory": {
|
|
36
|
+
"DVMFactory": "0x701Ac6fAD7850956f966a85655348ac1B7c93368",
|
|
37
|
+
"DSPFactory": "0xB88f7eb2dA59E1E8E00E0158b195D5ca48403921",
|
|
38
|
+
"GSPFactory": "0xF9a6c9BE0a1149C69EF537359c78DeB5e6264ec6",
|
|
39
|
+
"DPPFactory": "0x82B26eb18382f7532015248078AB1f6030413396",
|
|
40
|
+
"CrowdPoolingFactory": "0x297B5D923b9C18081ddE398B5b5aC6E09336B27c",
|
|
41
|
+
"ERC20V3Factory": "0xDC249Ea92D2e532ed63B45dc7C05B21926B97c6F",
|
|
42
|
+
"DODOMineV2Factory": "0x9691bBce4680d0c0bb9E798a71984984Ab1440C1",
|
|
43
|
+
"DODOMineV3Registry": "0x7D381e6a9c23A0E6969658f6B8Eba57A4Dbf93a0"
|
|
44
|
+
},
|
|
45
|
+
"Approve": {
|
|
46
|
+
"DODOApprove": "0x056FcE6B76AF3050F54B71Fc9B5fcb7C387BfC1A",
|
|
47
|
+
"DODOApproveProxy": "0x0343C5757Fb98aD9eF39824e08B852aF61C71c64"
|
|
48
|
+
},
|
|
49
|
+
"Adapter": {
|
|
50
|
+
"DODOV2Adapter": "0x306ae919b99c187Fe5eCBdE980E24228ae888182"
|
|
51
|
+
},
|
|
52
|
+
"Proxy": {
|
|
53
|
+
"DODOV2Proxy02": "0xF5378974cfD5042A58c458E06cB6D2A2D1c2FAF8",
|
|
54
|
+
"DODODspProxyWithoutGSP": "0x90387d098B8F2a6497c55E13E45f51De423322ab",
|
|
55
|
+
"DODOCpProxy": "0x22AdDF954Ea92a3A80403Fe353093f7bF58665EC",
|
|
56
|
+
"DODODppProxy": "0x9ef37fD4791eb28e46c3D50Ed83F2a10B3082784",
|
|
57
|
+
"DODOMineV3Proxy": "0xDA89314035264Ade23313f971AaE5393068Ea6F7",
|
|
58
|
+
"DODOFeeRouteProxy1": "0x85C23863977dA7c3CEaCe129e292ba0F4d8aAA00",
|
|
59
|
+
"DODOFeeRouteProxy2": "0xA3148a1765897EC0A9bCA57f855C0B4718060b78"
|
|
60
|
+
},
|
|
61
|
+
"Account": {
|
|
62
|
+
"MultiSigAddress": "0x89Ba4039841587B0a4cFfDF17AEE30caCF006f4D",
|
|
63
|
+
"DefaultMaintainer": "0x89Ba4039841587B0a4cFfDF17AEE30caCF006f4D",
|
|
64
|
+
"FeeReceiver": "0x1271CAba4bf23f8Fb31F97448605d65EE302CA51"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -59,7 +59,8 @@
|
|
|
59
59
|
"DODOMineV3Proxy": "0x6bbfD968509752518c1e9fBb0918A8AF8615879e",
|
|
60
60
|
"DODOFeeRouteProxy1": "0x80465a300299e90132DFa2c7c3Fc3a12424599bB",
|
|
61
61
|
"DODOFeeRouteProxy2": "0x819829e5CF6e19F9fED92F6b4CC1edF45a2cC4A2",
|
|
62
|
-
"UniswapV2Router02": "0xb93Cd1E38809607a00FF9CaB633db5CAA6130dD0"
|
|
62
|
+
"UniswapV2Router02": "0xb93Cd1E38809607a00FF9CaB633db5CAA6130dD0",
|
|
63
|
+
"TransparentUpgradeableProxyWithPros": "0xc9a0b63d91c2a808dd631d031f037944feddaa12"
|
|
63
64
|
},
|
|
64
65
|
"Account": {
|
|
65
66
|
"MultiSigAddress": "0x8157668EC72c279C20C9d7387b7B711FcF713a4D",
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Chain": "pharos",
|
|
3
|
+
"ChainId": 1672,
|
|
4
|
+
"Token": {
|
|
5
|
+
"WETH": "0x52c48d4213107b20bc583832b0d951fb9ca8f0b0"
|
|
6
|
+
},
|
|
7
|
+
"Helper": {
|
|
8
|
+
"Multicall": "0x7C9074F75762F167B8930829454deF9a04Cf425A",
|
|
9
|
+
"MulticallWithValid": "0xAbdec8a193B7c0ADC8c4d8f51580D0cb52D5e41b",
|
|
10
|
+
"DODOSellHelper": "0x0048a6214f888BD98c1C075f2edCAe1fE953A75f",
|
|
11
|
+
"DODOSwapCalcHelper": "0x72E95793330F86d2139cC73A67A35dDB97A556dF",
|
|
12
|
+
"ERC20Helper": "0x24D48b3A3A4bFf2A42EcB1ebb66613FAFB007bFF",
|
|
13
|
+
"DODOCalleeHelper": "0xd993298A8e40b304874474CE83467c2580124Db5",
|
|
14
|
+
"DODOV1PmmHelper": "0x63Cff8CEa1bEfeB62bf6B72F450E6bEd989f7975",
|
|
15
|
+
"DODOV2RouteHelper": "0x75877C7A25f21E06524F0550A5688cB70C3bbC31"
|
|
16
|
+
},
|
|
17
|
+
"Templates": {
|
|
18
|
+
"CloneFactory": "0xfBe48974CEAd3cc03aa323c51D41FbA306b7061e",
|
|
19
|
+
"FeeRateModel": "0xaBD1CF1260c970d95F31b7F7F27589197372d9A5",
|
|
20
|
+
"FeeRateDIP3Impl": "0x074c662603eE307d817ab2AF47dCd1131910F3BC",
|
|
21
|
+
"PermissionManager": "0xfC92d4EFc33b959418bD81ff084263cae88795a3",
|
|
22
|
+
"DVM": "0x91989364698a133991b93Fd7CDABC82DB9E1467b",
|
|
23
|
+
"DSP": "0xD7198AF1b37ca69207FD892ff4259FD4f7F540e7",
|
|
24
|
+
"GSP": "0x81B04C62c53a716B7b5ce7fE8de42ab665BcA935",
|
|
25
|
+
"DPPAdvanced": "0x7b0Cd92E1B2Ea85deCeE8C8Fc6E19ec6f02F4745",
|
|
26
|
+
"DPPAdvancedAdmin": "0x20755D3Feba6E31e5fD4704AC9253D322841f61A",
|
|
27
|
+
"CP": "0xCEcB316D9CE1E8E7d9dEbb1af0f0F10DB53f73f6",
|
|
28
|
+
"InitializableERC20": "0x28616365047F40173dca9916E082F60e823D3565",
|
|
29
|
+
"CustomERC20": "0x16D046F726B5cCae5E11dB61655Db2CB0BF400C1",
|
|
30
|
+
"CustomMintableERC20": "0x9E02716f74E4c410bee42f78ee03eEa94c1bb9a9",
|
|
31
|
+
"ERC20MineV2": "0x8B5283e5794AfAD3CCb7D5bECB3C36eb688007E5",
|
|
32
|
+
"ERC20MineV3": "0x17Ae8C36FfE9E462E01D33A457b9221314372Ae0"
|
|
33
|
+
},
|
|
34
|
+
"Factory": {
|
|
35
|
+
"DVMFactory": "0xB9319bCEe26F1A6AC7207A738B021cdEC771b30E",
|
|
36
|
+
"DSPFactory": "0xd0aAC3c1c64038D0cd3aa11941cb002cbd865d4E",
|
|
37
|
+
"GSPFactory": "0xD15f2D50bbf777EFD529052686d0703e498F8380",
|
|
38
|
+
"DPPFactory": "0x02d2e6292eC57E84E183909cD0F7Ca513ADdC717",
|
|
39
|
+
"CrowdPoolingFactory": "0x1c3E8553BD77d903747255FB533e29d2f7a739f9",
|
|
40
|
+
"ERC20V3Factory": "0x3AdD5EFb8E7013357f47B2A29BC52F7F00B8EB4a",
|
|
41
|
+
"DODOMineV2Factory": "0xAdF6b22B034564B6D516B49b4028189BaAc4c1Ce",
|
|
42
|
+
"DODOMineV3Registry": "0x05cdf6982c6ee3FE3789bFf5fee37a30F0668afF",
|
|
43
|
+
"UniswapV2Factory": "0x18Fab7d7027E9FB33Fa90ca607439449209F7B09",
|
|
44
|
+
"UniswapV3Factory": "0x2c90CcB0b989afA2433F499698451a25744A552b",
|
|
45
|
+
"NonfungiblePositionManager": "0xc0479219f4FebA5A668cFF71BF96f4FFE124c3ab"
|
|
46
|
+
},
|
|
47
|
+
"Approve": {
|
|
48
|
+
"DODOApprove": "0xBF105f4ffBD3825f5433d074008B9A76237d849c",
|
|
49
|
+
"DODOApproveProxy": "0x2aFc65f51B8afd1dB9618643F89f0b135EaAeEAa"
|
|
50
|
+
},
|
|
51
|
+
"Adapter": {
|
|
52
|
+
"DODOV2Adapter": "0x60611853248cA87aF247B4c0fB257BDAb3bc7d6c"
|
|
53
|
+
},
|
|
54
|
+
"Proxy": {
|
|
55
|
+
"DODOV2Proxy02": "0x6F1142F4BF632E4877497c05818492824F540Ad5",
|
|
56
|
+
"DODODspProxy": "0xc3A335d1C83f9b92E36C0323c58809d19c9DB63C",
|
|
57
|
+
"DODOCpProxy": "0x61C13F38a5C56a49A4393e885c8Ce8B7A89A0BFB",
|
|
58
|
+
"DODODppProxy": "0xC8B3Beb3E4918eeea99a1Ba3C829a7AC20ba8016",
|
|
59
|
+
"DODOMineV3Proxy": "0x6EdFea4995C62AE0c49d826A28fE13CE65FCb6d6",
|
|
60
|
+
"DODOFeeRouteProxy1": "0xf7177bAf6442fB76B0833aECA3DE8d4dc8FfD695",
|
|
61
|
+
"DODOFeeRouteProxy2": "0xA5cA5Fbe34e444F366B373170541ec6902b0F75c",
|
|
62
|
+
"UniswapV2Router02": "0xd285E37678F07631f33EB99927EB3fF0591a12d7"
|
|
63
|
+
},
|
|
64
|
+
"Account": {
|
|
65
|
+
"MultiSigAddress": "0x4F36CdD2180b2F9b17745d8f7FF380440262Ae7A",
|
|
66
|
+
"DefaultMaintainer": "0x4F36CdD2180b2F9b17745d8f7FF380440262Ae7A",
|
|
67
|
+
"FeeReceiver": "0x903cF528c0C54eCB99991a69E0E095589917a0ce"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Chain": "rise",
|
|
3
|
+
"ChainId": 4153,
|
|
4
|
+
"Token": {
|
|
5
|
+
"WETH": "0x4200000000000000000000000000000000000006"
|
|
6
|
+
},
|
|
7
|
+
"Helper": {
|
|
8
|
+
"Multicall": "0xC60Ac5B8bDd9DBD1830E3f43252B7b0d50DFEea3",
|
|
9
|
+
"MulticallWithValid": "0x25B2F29DF47F4e66Cac54bA71dE3562F51b5ceEC",
|
|
10
|
+
"DODOSellHelper": "0xf7A57DeadcFa3030Ddbf9E1ad371DB3148BC7cB6",
|
|
11
|
+
"DODOSwapCalcHelper": "0x9CA028580667064A8741cEeA03aeb89cF537c5eE",
|
|
12
|
+
"ERC20Helper": "0x5580704224CE8090fc685FeeF0E35Fa6f86d8381",
|
|
13
|
+
"DODOCalleeHelper": "0x063778f207fBa0682215168C3fa4e69BFc787e8D",
|
|
14
|
+
"DODOV1PmmHelper": "0x6375abe2A675776E695d4dea01849a2816055FA6",
|
|
15
|
+
"DODOV2RouteHelper": "0xE59d098c36916397Cc14AB42Bb0F00093BDA9f04"
|
|
16
|
+
},
|
|
17
|
+
"Templates": {
|
|
18
|
+
"CloneFactory": "0xC68E75CA7b4315Ab7F81194f3B27627eB63c2Af0",
|
|
19
|
+
"FeeRateModel": "0xC863c5b575f47942d4B704c14900Cee7721f7774",
|
|
20
|
+
"FeeRateDIP3Impl": "0x8e4dB74c24e012DD2192943c12acF8B63f3B5A6E",
|
|
21
|
+
"PermissionManager": "0x893EcB7D0982D5d182cfD318EF3eFb76020065f1",
|
|
22
|
+
"DVM": "0x5B829f90eCd51E803917C1E25EC9A718f32ecB46",
|
|
23
|
+
"DSP": "0x3b73a6610db514e14b432c72Eb49723dAe9c1C10",
|
|
24
|
+
"GSP": "0x4e5Ad9061d33621aF33Bad7d4dfF45Eb83Bc6a46",
|
|
25
|
+
"DPPAdvanced": "0xc90958D0466c7f1337d5D0B8947F812f636D3c63",
|
|
26
|
+
"DPPAdvancedAdmin": "0x2629E610dB4AC081c108cCDf8b19ED39D702df43",
|
|
27
|
+
"CP": "0x7fB45a8AcA7DD30a136569B5E3eb7E1F1f0235a0",
|
|
28
|
+
"InitializableERC20": "0x1909B6842964030aF3897bdf8ba760bD91439463",
|
|
29
|
+
"CustomERC20": "0x6694eebf40924e04c952EA8F1626d19E7a656Bb7",
|
|
30
|
+
"CustomMintableERC20": "0xd0de7cA3298fff085E2cb82F8a861a0254256BA0",
|
|
31
|
+
"ERC20MineV2": "0x2235bB894b7600F1a370fc595Ee5477999A30441",
|
|
32
|
+
"ERC20MineV3": "0x297A4885a7da4AaeF340FABEd119e7a6E3f2BCe8"
|
|
33
|
+
},
|
|
34
|
+
"Factory": {
|
|
35
|
+
"DVMFactory": "0x3Cdf6B62D042179FAa21745b074a688BB4979FB7",
|
|
36
|
+
"DSPFactory": "0xC7EaBEc77Be175432DC20c0056Cce4c2C78B84F3",
|
|
37
|
+
"GSPFactory": "0xfcd8EF54A4dA96dE6B2DDF67C6265C7405a3A9c6",
|
|
38
|
+
"DPPFactory": "0x928e9762B5223d5A2ac1F5b13E8A61907aCaa9Bd",
|
|
39
|
+
"CrowdPoolingFactory": "0x7386F6F2375a38FBD1F4dA1d3eb39cd8dD8d1b40",
|
|
40
|
+
"ERC20V3Factory": "0x38886EDE1Fc92886F9a11C37a1f5e75474858eaa",
|
|
41
|
+
"DODOMineV2Factory": "0x1dFd36964e21a2eb633991f0B95b4241c20e1db3",
|
|
42
|
+
"DODOMineV3Registry": "0xcBF3378D432CB181aae32a6A80AA94CF8e00f534",
|
|
43
|
+
"UniswapV2Factory": "0x24D48b3A3A4bFf2A42EcB1ebb66613FAFB007bFF",
|
|
44
|
+
"UniswapV3Factory": "0xcCD262D1A7Cfe02B735369fE94d85e02515E6Ac7",
|
|
45
|
+
"NonfungiblePositionManager": "0x68d07fE3fce0DcE330836960e871cbfa7E2c142E"
|
|
46
|
+
},
|
|
47
|
+
"Approve": {
|
|
48
|
+
"DODOApprove": "0xc6F5e5Ff8AbBe6A94A879A1E378c101E2A6bb9e6",
|
|
49
|
+
"DODOApproveProxy": "0x8Ebbfe204E7EdA4be46b9d09c5dfa8b3e1500462"
|
|
50
|
+
},
|
|
51
|
+
"Adapter": {
|
|
52
|
+
"DODOV2Adapter": "0x5e8807fd1C80F7A43362CeBEFcB2Becedfc731Dc"
|
|
53
|
+
},
|
|
54
|
+
"Proxy": {
|
|
55
|
+
"DODOV2Proxy02": "0x79A273d00bBF7B73B92d6938b973f0197b734Acc",
|
|
56
|
+
"DODODspProxy": "0x7d6FF4f2bEdea9a757F1a5667b40Cb78c2be47Af",
|
|
57
|
+
"DODOCpProxy": "0x4d89ceaf1EACf83909e1CA0d508B132d7e204A5d",
|
|
58
|
+
"DODODppProxy": "0x9fEA2Ada0688B11138cEceA294CDF7d7564347Aa",
|
|
59
|
+
"DODOMineV3Proxy": "0xc1DFd16d42e696F54ca0717F3b74e8984Fd6e91B",
|
|
60
|
+
"DODOFeeRouteProxy1": "0xB4c33737794E46c62f76Bf7eBe79DcDC8319C11C",
|
|
61
|
+
"DODOFeeRouteProxy2": "0xF34E6a993A0Def26B3e5BFA1E44BEbB4CB42cEC6",
|
|
62
|
+
"UniswapV2Router02": "0xd993298A8e40b304874474CE83467c2580124Db5"
|
|
63
|
+
},
|
|
64
|
+
"Account": {
|
|
65
|
+
"FeeReceiver": "0x903cF528c0C54eCB99991a69E0E095589917a0ce"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -37,11 +37,13 @@
|
|
|
37
37
|
"GSPFactory": "",
|
|
38
38
|
"DPPFactory": "0x0B1467f71c082D8d410aF4376C685D9A6893cF36",
|
|
39
39
|
"CrowdPoolingFactory": "0xCDA4a6cc5997002B87f28D46852F9F0aA0f3c897",
|
|
40
|
-
"ERC20V3Factory": "
|
|
40
|
+
"ERC20V3Factory": "0x3450dBC7094bB20065f430D98087e37708C1ddfE",
|
|
41
41
|
"DODOMineV2Factory": "0x49186E32fEd50fd6B5604A2618c7B0b03Cd41414",
|
|
42
42
|
"DODOMineV3Registry": "0xa5fc92Ca57a21C87AA0477b1c8fE8B9Bbf69d6C2",
|
|
43
43
|
"UniswapV2Factory": "0xf553a3EA6ecc758ed6f05F62C831b1D71bA7e09c",
|
|
44
44
|
"UniswapV2FactoryFixedFee": "0xF62c03E08ada871A0bEb309762E260a7a6a880E6",
|
|
45
|
+
"RWAToken": "0xc3cc903e9E8D7fAe14192fc445E14D03fd5fDC09",
|
|
46
|
+
"RWAManager": "0x3378D3E726F4B9CF29e12F5463EC159fC0E46798",
|
|
45
47
|
"UniswapV3Factory": "0x3d2A7Bac4E8439ABe86B58324695e921a5FC0987",
|
|
46
48
|
"NonfungiblePositionManager": "0x483E5c0f309577f79b0a19cE65E332DD388aD7A8"
|
|
47
49
|
},
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Chain": "zetachain-testnet",
|
|
3
|
+
"ChainId": 7001,
|
|
4
|
+
"Token": {
|
|
5
|
+
"WETH": "0x5F0b1a82749cb4E2278EC87F8BF6B618dC71a8bf"
|
|
6
|
+
},
|
|
7
|
+
"Helper": {
|
|
8
|
+
"Multicall": "0x312fFF80F489bB3E855791D95c7CBaf53F244b76",
|
|
9
|
+
"MulticallWithValid": "0x312fFF80F489bB3E855791D95c7CBaf53F244b76",
|
|
10
|
+
"DODOSellHelper": "0x8D21588553F75C1065BC666d0D16fC0E4547E275",
|
|
11
|
+
"DODOSwapCalcHelper": "0xCFc91db56989c1E5212B68ddce877f57B2230919",
|
|
12
|
+
"ERC20Helper": "0x0C379957516490a0Ba7eCaE34097C0396F98031a",
|
|
13
|
+
"DODOCalleeHelper": "0xC70df4336Da9388b768dC4acE27573762e9b2fEE",
|
|
14
|
+
"DODOV1PmmHelper": "0x456DE38a5d4Fd57567456bFf9C4e9146f26e0039",
|
|
15
|
+
"DODOV2RouteHelper": "0xb9e68f05506423E9DA55a74A709bF6e7E3cc15ed"
|
|
16
|
+
},
|
|
17
|
+
"Templates": {
|
|
18
|
+
"CloneFactory": "0x4A4368Bf91891D72Ac1289cfDB89b8AdF65Fe91f",
|
|
19
|
+
"FeeRateModel": "0x82e884A644931256378fE6A951601bC6dd69837B",
|
|
20
|
+
"FeeRateDIP3Impl": "0x4f78C1F7130EF460593198A7D38732Da3eE91eF8",
|
|
21
|
+
"PermissionManager": "0xB3e0AE73e95410305fF720AE704E3f7ed0654d9D",
|
|
22
|
+
"DVM": "0x576A9F4d85D42355d0acc9dAD64DA8d2dc80f1f7",
|
|
23
|
+
"DSP": "0x63dE06313edE53cCD0Ca5a7AE2CF757f1e183861",
|
|
24
|
+
"GSP": "0xBaeee2dCE70fF978E3CD71435BE7Cb2fb3A4ccBD",
|
|
25
|
+
"DPPAdvanced": "0x8520F6642D7B9258e20C3D063Ee7e60AAc23E740",
|
|
26
|
+
"DPPAdvancedAdmin": "0x7CE15a614dBe7b5597dD66A75F5baF82BB125c5B",
|
|
27
|
+
"CP": "0x8EbFe5C0047bf8d5e07dc7cbe06D369240f12366",
|
|
28
|
+
"InitializableERC20": "0x42EDf453F8483c7168c158d28D610A58308517D1",
|
|
29
|
+
"CustomERC20": "0x64610da3092153a188278815c1f2072009F9Df1e",
|
|
30
|
+
"CustomMintableERC20": "0x2dA6Bf29baAB9Ac23Bb8E7fB04F6D9a20bbdfC82",
|
|
31
|
+
"ERC20MineV2": "0x64e4a9BDA0670Cdb30664383244dA60158Af847B",
|
|
32
|
+
"ERC20MineV3": "0xe77C7e8fE14662e07346A8e2797fee18809aCcEa"
|
|
33
|
+
},
|
|
34
|
+
"Factory": {
|
|
35
|
+
"DVMFactory": "0xaf6c1052A1114C7816C24a5e8bC485b180C49Deb",
|
|
36
|
+
"DSPFactory": "0x19c15CaF858e9D3d10272C739cDf3812B91e5508",
|
|
37
|
+
"GSPFactory": "0xBb5a0bF38C0BeA6829fDFef931B7988c8fF00a78",
|
|
38
|
+
"DPPFactory": "0x74CAd58eD9712e3236D61dea8696B6Dced3da2b6",
|
|
39
|
+
"ERC20V3Factory": "0x85C694fc4c19BEd3B559Ef9b43a6D315980aA7FA",
|
|
40
|
+
"DODOMineV2Factory": "0x468e60B84b11B3B1532D7C41FcBb79DA352aa12d",
|
|
41
|
+
"DODOMineV3Registry": "0xF7d33BB55C74048352DC0413733095Cc8e273A74",
|
|
42
|
+
"UniswapV2Factory": "0xB725b88b32868266782398ae7Ab6bDCcebe90368",
|
|
43
|
+
"UniswapV3Factory": "0x944568E880Edd3a610C8ADB4028D682D55c66f19",
|
|
44
|
+
"NonfungiblePositionManager": "0x7c4e2A9Cd4fCAACD09D8402Df12f03eC831cE69f"
|
|
45
|
+
},
|
|
46
|
+
"Approve": {
|
|
47
|
+
"DODOApprove": "0x69485b9B95df04dDbbF8669A33865C97E9B293B4",
|
|
48
|
+
"DODOApproveProxy": "0xB6362C3Ef78CDe47446a819B8131eC540a949EF8"
|
|
49
|
+
},
|
|
50
|
+
"Adapter": {
|
|
51
|
+
"DODOV2Adapter": "0x00Fc0223442630e2AaDAB831d2Ee1FD27ee8A6B2"
|
|
52
|
+
},
|
|
53
|
+
"Proxy": {
|
|
54
|
+
"DODOV2Proxy02": "0xae7D4fD9A9427D8B50BD4a4B9dd54dde17c4a53d",
|
|
55
|
+
"DODODspProxy": "0x4c0dC92e49473Ad6691f34a6615FD53f8A0bDC8d",
|
|
56
|
+
"DODOCpProxy": "0xD74c827c81cf933dF3EE47D6c248dd04268198B0",
|
|
57
|
+
"DODODppProxy": "0x7DaD05f757a2B56E50F780fe5E70d0B20A4b24d7",
|
|
58
|
+
"DODOMineV3Proxy": "0xafE1D3EE4513530B8D302e812FB07Df1d9e090c4",
|
|
59
|
+
"DODOFeeRouteProxy1": "0x898d8672d9f8811603bE3431D2163a0784e71D22",
|
|
60
|
+
"DODOFeeRouteProxy2": "0x0d3a1033d9F76A0bC5a444CdFB8fdE85B1290542",
|
|
61
|
+
"UniswapV2Router02": "0xA0abF41a231BaCeB1feB624Dca843B71c10311e8"
|
|
62
|
+
},
|
|
63
|
+
"Account": {
|
|
64
|
+
"MultiSigAddress": "0xfa0d8ebcA31a1501144A785a2929e9F91b0571d0",
|
|
65
|
+
"DefaultMaintainer": "0xfa0d8ebcA31a1501144A785a2929e9F91b0571d0",
|
|
66
|
+
"FeeReceiver": "0x903cF528c0C54eCB99991a69E0E095589917a0ce"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Chain": "zetachain",
|
|
3
|
+
"ChainId": 7000,
|
|
4
|
+
"Token": {
|
|
5
|
+
"WETH": "0x5F0b1a82749cb4E2278EC87F8BF6B618dC71a8bf"
|
|
6
|
+
},
|
|
7
|
+
"Helper": {
|
|
8
|
+
"Multicall": "0x9691bBce4680d0c0bb9E798a71984984Ab1440C1",
|
|
9
|
+
"MulticallWithValid": "0x7D381e6a9c23A0E6969658f6B8Eba57A4Dbf93a0",
|
|
10
|
+
"DODOSellHelper": "0xC975769aB5Ef947CB82535ca6607B0683a355195",
|
|
11
|
+
"DODOSwapCalcHelper": "0xF5378974cfD5042A58c458E06cB6D2A2D1c2FAF8",
|
|
12
|
+
"ERC20Helper": "0xFc66a1283a43Ce2f4d4FA0623d4654754577a09d",
|
|
13
|
+
"DODOCalleeHelper": "0xF9a6c9BE0a1149C69EF537359c78DeB5e6264ec6",
|
|
14
|
+
"DODOV1PmmHelper": "0x90387d098B8F2a6497c55E13E45f51De423322ab",
|
|
15
|
+
"DODOV2RouteHelper": "0xe70C62baf742140ED5bAbbCD35f15b7a9811932A"
|
|
16
|
+
},
|
|
17
|
+
"Templates": {
|
|
18
|
+
"CloneFactory": "0x22AdDF954Ea92a3A80403Fe353093f7bF58665EC",
|
|
19
|
+
"FeeRateModel": "0x9ef37fD4791eb28e46c3D50Ed83F2a10B3082784",
|
|
20
|
+
"FeeRateDIP3Impl": "0xDA89314035264Ade23313f971AaE5393068Ea6F7",
|
|
21
|
+
"PermissionManager": "0x85C23863977dA7c3CEaCe129e292ba0F4d8aAA00",
|
|
22
|
+
"DVM": "0x08e122Ee90099927E9764fE16d1094d563d2f4E2",
|
|
23
|
+
"DSP": "0xA3148a1765897EC0A9bCA57f855C0B4718060b78",
|
|
24
|
+
"GSP": "0xec1Ac56f266d1937ab69f7EB08D8889A41E39278",
|
|
25
|
+
"DPPAdvanced": "0x351a86A2C8dc47D396305AAcd7F126E096b2eee4",
|
|
26
|
+
"DPPAdvancedAdmin": "0x19E10fb5875C4901D9650aFc001197285dBBC060",
|
|
27
|
+
"CP": "0x78172691DD3B8ADa7aEbd9bFfB487FB11D735DB2",
|
|
28
|
+
"InitializableERC20": "0x8bBD9D807ffc5c772e802333FB41Ea059F2f44d6",
|
|
29
|
+
"CustomERC20": "0x202bEE65B164aEcBb6A2318438bf46bEF14E1072",
|
|
30
|
+
"CustomMintableERC20": "0x341ECDe9ae78d91e810cEad1D270AA0F7E0B0D1a",
|
|
31
|
+
"ERC20MineV2": "0x7d2eb244f31c4583763f9B4F381DB23784470d76",
|
|
32
|
+
"ERC20MineV3": "0xf50d3A044ff63bb476E02f442D813B177c432BFd"
|
|
33
|
+
},
|
|
34
|
+
"Factory": {
|
|
35
|
+
"DVMFactory": "0xd2b80519a88937A412415bAF1b7Fb1855189EA36",
|
|
36
|
+
"DSPFactory": "0x01AE7F0633E1D8d642c5A6a6d39B00A36b331C97",
|
|
37
|
+
"GSPFactory": "0xa97c5a70Be5B81f573a688F656E7bE569B492A56",
|
|
38
|
+
"DPPFactory": "0xC176ecf1Eae0883B2356593d1Ccd5DDEd0441eb1",
|
|
39
|
+
"ERC20V3Factory": "0x047F9cea5CE9Da358E493848daF73192E7D377d0",
|
|
40
|
+
"DODOMineV2Factory": "0x816D85D853a7Da1f91F427e4132056D88620e7d7",
|
|
41
|
+
"DODOMineV3Registry": "0x9de2F7b3BFf91c48d417c47055dABCb45FEFa48F",
|
|
42
|
+
"UniswapV2Factory": "0x4E36B2e9c9c9bfDd2516cAdacF07f5adAA33EF88",
|
|
43
|
+
"UniswapV3Factory": "0x9f48Ddad075e569cDc70D657D3aC171e23846009",
|
|
44
|
+
"NonfungiblePositionManager": "0xaF2403DD44B3C589f12680e715a8bBeB5b4B8471"
|
|
45
|
+
},
|
|
46
|
+
"Approve": {
|
|
47
|
+
"DODOApprove": "0x3a5980966a8774b357A807231F87F7FD792Ff6F9",
|
|
48
|
+
"DODOApproveProxy": "0x2623281DdcC34A73a9e8898f2c57A32A860903f1"
|
|
49
|
+
},
|
|
50
|
+
"Adapter": {
|
|
51
|
+
"DODOV2Adapter": "0x3212823a21f30fB1920473A1A82eDd6F40f3d8a2"
|
|
52
|
+
},
|
|
53
|
+
"Proxy": {
|
|
54
|
+
"DODOV2Proxy02": "0xA9f0d65aCAD51d57bCAB20b59601aa3360e7a5c4",
|
|
55
|
+
"DODODspProxy": "0x26f70388387124FE4e5AAA782155242d86b09daa",
|
|
56
|
+
"DODOCpProxy": "0xb63Ca55091d6F8e8b9995f04894638D98D3C0241",
|
|
57
|
+
"DODODppProxy": "0x183B9eAB8DBF824058e3Ba6d9ACF21c11dA9D491",
|
|
58
|
+
"DODOMineV3Proxy": "0x88d12e75EaF01e8f274D067309C145D2Aad6dc74",
|
|
59
|
+
"UniswapV2Router02": "0xBbc96730d39adff6D755820071ebc6dDe20a59b9"
|
|
60
|
+
}
|
|
61
|
+
}
|