@dodoex/dodo-contract-request 1.19.0-alpha.3 → 1.19.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.
- package/CHANGELOG.md +24 -39
- package/contract-config/berachain.json +2 -4
- package/contract-config/hyperevm.json +69 -0
- package/contract-config/katana.json +69 -0
- package/contract-config/rari.json +69 -0
- package/contract-config/sepolia.json +1 -3
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types/config/hyperevm.d.ts +5 -0
- package/dist/types/config/index.d.ts +6 -140
- package/dist/types/config/katana.d.ts +5 -0
- package/dist/types/config/rari.d.ts +5 -0
- package/dist/types/config/sepolia.d.ts +0 -2
- package/dist/types/contract/FeeRateDIP3Impl.d.ts +21 -30
- package/dist/types/index.d.ts +0 -4
- package/package.json +1 -1
- package/src/config/hyperevm.ts +4 -0
- package/src/config/index.ts +13 -13
- package/src/config/katana.ts +4 -0
- package/src/config/rari.ts +4 -0
- package/src/config/sepolia.ts +1 -1
- package/src/contract/CrowdPoolingFactory.ts +1 -1
- 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 +75 -61
- package/src/contract/GSPFactory.ts +1 -1
- package/src/contract/Multicall.ts +1 -1
- package/src/contract/MulticallWithValid.ts +1 -1
- package/src/contract/NonfungiblePositionManager.ts +1 -1
- 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 +0 -4
- package/.cache/contract-info/DFTManager.json +0 -2832
- package/.cache/contract-info/ICHIVault.json +0 -787
- package/.cache/contract-info/RWAManager.json +0 -1
- package/.cache/contract-info/RWAToken.json +0 -1
- package/contract-config/birdlayer.json +0 -66
- package/contract-config/zetachain-testnet.json +0 -69
- package/contract-config/zetachain.json +0 -61
- package/dist/types/config/birdlayer.d.ts +0 -29
- package/dist/types/config/zetachain-testnet.d.ts +0 -33
- package/dist/types/config/zetachain.d.ts +0 -30
- package/dist/types/contract/DFTManager.d.ts +0 -994
- package/dist/types/contract/ICHIVault.d.ts +0 -516
- package/dist/types/contract/RWAManager.d.ts +0 -264
- package/dist/types/contract/RWAToken.d.ts +0 -179
- package/src/config/birdlayer.ts +0 -4
- package/src/config/zetachain-testnet.ts +0 -4
- package/src/config/zetachain.ts +0 -4
- package/src/contract/DFTManager.ts +0 -1222
- package/src/contract/ICHIVault.ts +0 -863
- package/src/contract/RWAManager.ts +0 -479
- package/src/contract/RWAToken.ts +0 -330
package/CHANGELOG.md
CHANGED
|
@@ -1,87 +1,72 @@
|
|
|
1
|
-
# [@dodoex/dodo-contract-request-v1.19.0
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* update ERC20V3Factory ([5615684](https://github.com/DODOEX/contract-request/commit/5615684f16c1e52b8cf75f83de888d3489da6a63))
|
|
7
|
-
|
|
8
|
-
# [@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)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Features
|
|
12
|
-
|
|
13
|
-
* add ZetaChain configuration with token and helper addresses ([99b621d](https://github.com/DODOEX/contract-request/commit/99b621d77bfae2a18bde48a67b6e3470c9609e56))
|
|
14
|
-
|
|
15
|
-
# [@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)
|
|
1
|
+
# [@dodoex/dodo-contract-request-v1.19.0](https://github.com/DODOEX/contract-request/compare/@dodoex/dodo-contract-request-v1.18.1...@dodoex/dodo-contract-request-v1.19.0) (2025-09-12)
|
|
16
2
|
|
|
17
3
|
|
|
18
4
|
### Features
|
|
19
5
|
|
|
20
|
-
* add
|
|
21
|
-
* add DFTManager contract ([ba45e30](https://github.com/DODOEX/contract-request/commit/ba45e30d1118e559ce59119f16db50db663430f8))
|
|
22
|
-
* add ICHIVault contract ([b191ff6](https://github.com/DODOEX/contract-request/commit/b191ff6d13c8a8a5657cc4e1d46c6a7d027aa8c7))
|
|
6
|
+
* add more chain ([49a2b0c](https://github.com/DODOEX/contract-request/commit/49a2b0c04377f7a9dd0385074bb289c8349ae7b9))
|
|
23
7
|
* add more chain && change optimism ERC20Helper ([0db4f08](https://github.com/DODOEX/contract-request/commit/0db4f088a8b3cb76c85824e150df847ef21a12ae))
|
|
24
|
-
* add UniswapV2Factory and UniswapV2Router02 addresses to taiko.json configuration ([03706e5](https://github.com/DODOEX/contract-request/commit/03706e5d81b414b4fc3d06a9ab80dd0e2febc627))
|
|
25
|
-
* add UniswapV2Router02 to zetachain-testnet configuration ([e46c4d3](https://github.com/DODOEX/contract-request/commit/e46c4d3be150cda7c3aaa058a914b13e53bc9f0d))
|
|
26
|
-
* add zetachain testnet support and update contract address mappings ([c0de1cf](https://github.com/DODOEX/contract-request/commit/c0de1cf70bedacab0a647fee69f430b9aba4cfe7))
|
|
27
|
-
* release nerochain alpha ([48ff8df](https://github.com/DODOEX/contract-request/commit/48ff8df3144867290b0104d3c4b180097b0a587e))
|
|
28
|
-
* test release ([f227c7d](https://github.com/DODOEX/contract-request/commit/f227c7d0b2b42292f80ea89ea2aed9c185448a89))
|
|
29
|
-
* update RWAManager contract address and add new functions for admin and balance queries ([49f555a](https://github.com/DODOEX/contract-request/commit/49f555a5dae87075e83b116519c12191f25ff62f))
|
|
30
|
-
* update Sepolia contract config address locations ([d08fd47](https://github.com/DODOEX/contract-request/commit/d08fd47d9c7c5d9f50cdeab8ef7acb4f86cf8f19))
|
|
31
8
|
|
|
32
9
|
# [@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)
|
|
33
10
|
|
|
11
|
+
|
|
34
12
|
### Bug Fixes
|
|
35
13
|
|
|
36
|
-
|
|
14
|
+
* change DODODspProxy key ([744034d](https://github.com/DODOEX/contract-request/commit/744034d3207af85345b80435aad5efa0b76e71ef))
|
|
37
15
|
|
|
38
16
|
# [@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)
|
|
39
17
|
|
|
18
|
+
|
|
40
19
|
### Features
|
|
41
20
|
|
|
42
|
-
|
|
21
|
+
* update pharos address ([7641d6c](https://github.com/DODOEX/contract-request/commit/7641d6c2626be2b31ee9ef99b957917b11e741f6))
|
|
43
22
|
|
|
44
23
|
# [@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)
|
|
45
24
|
|
|
25
|
+
|
|
46
26
|
### Features
|
|
47
27
|
|
|
48
|
-
|
|
28
|
+
* update pharos address ([51cc5af](https://github.com/DODOEX/contract-request/commit/51cc5aff6a63ca33c3107b41ea29681f0022ffdb))
|
|
49
29
|
|
|
50
30
|
# [@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)
|
|
51
31
|
|
|
32
|
+
|
|
52
33
|
### Features
|
|
53
34
|
|
|
54
|
-
|
|
35
|
+
* add pharos tetnet chain ([50e9bfd](https://github.com/DODOEX/contract-request/commit/50e9bfd97e6bdaddb28ac2961c30197fd6c17c0c))
|
|
55
36
|
|
|
56
37
|
# [@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)
|
|
57
38
|
|
|
39
|
+
|
|
58
40
|
### Features
|
|
59
41
|
|
|
60
|
-
|
|
42
|
+
* add AMM contract ([ef286e5](https://github.com/DODOEX/contract-request/commit/ef286e5f36e3a0d39fa20b7330dde97b9d64ee24))
|
|
61
43
|
|
|
62
44
|
# [@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)
|
|
63
45
|
|
|
46
|
+
|
|
64
47
|
### Features
|
|
65
48
|
|
|
66
|
-
|
|
49
|
+
* update nero chain ([2ff1374](https://github.com/DODOEX/contract-request/commit/2ff137482d4c66eeee8fb6c121a2d282c2a9d297))
|
|
67
50
|
|
|
68
51
|
# [@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)
|
|
69
52
|
|
|
53
|
+
|
|
70
54
|
### Features
|
|
71
55
|
|
|
72
|
-
|
|
56
|
+
* add nero chain ([8aeb7b6](https://github.com/DODOEX/contract-request/commit/8aeb7b69a472a9c704dfd36eb0e6e8c2d31012a2))
|
|
73
57
|
|
|
74
58
|
# [@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)
|
|
75
59
|
|
|
60
|
+
|
|
76
61
|
### Features
|
|
77
62
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
63
|
+
* add configuration for plume testnet ([6ec75b3](https://github.com/DODOEX/contract-request/commit/6ec75b39c76e01b57fc26772a41408254011f7a4))
|
|
64
|
+
* add hashkey && add hemi && update rise-testnet ([d8bd43c](https://github.com/DODOEX/contract-request/commit/d8bd43c817e79fbcd25c56c45cc1bfa07a65b5aa))
|
|
65
|
+
* add tac testnet ([51e57b5](https://github.com/DODOEX/contract-request/commit/51e57b51532e3f00890f284c7e45c6bec6c81b59))
|
|
66
|
+
* change contract address ([ba01410](https://github.com/DODOEX/contract-request/commit/ba01410484169d238cc13ac57c7d741bdca7b8a8))
|
|
67
|
+
* change contract address ([fa0749a](https://github.com/DODOEX/contract-request/commit/fa0749a86c0833976412072d974967adcf045381))
|
|
68
|
+
* update rise ([c034bb3](https://github.com/DODOEX/contract-request/commit/c034bb3324757a147d92746e349314e0f7a4a0b2))
|
|
69
|
+
* update WETH token ([bbd5f86](https://github.com/DODOEX/contract-request/commit/bbd5f866d019d77a69bf705bb1c4d8b4c8e24ee6))
|
|
85
70
|
|
|
86
71
|
# [@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)
|
|
87
72
|
|
|
@@ -29,8 +29,7 @@
|
|
|
29
29
|
"CustomERC20": "0x5B829f90eCd51E803917C1E25EC9A718f32ecB46",
|
|
30
30
|
"CustomMintableERC20": "0x3b73a6610db514e14b432c72Eb49723dAe9c1C10",
|
|
31
31
|
"ERC20MineV2": "0x4e5Ad9061d33621aF33Bad7d4dfF45Eb83Bc6a46",
|
|
32
|
-
"ERC20MineV3": "0xc90958D0466c7f1337d5D0B8947F812f636D3c63"
|
|
33
|
-
"ICHIVault": "0xb00ae8a7be63036dbcd143a842bfc14708c440bb"
|
|
32
|
+
"ERC20MineV3": "0xc90958D0466c7f1337d5D0B8947F812f636D3c63"
|
|
34
33
|
},
|
|
35
34
|
"Factory": {
|
|
36
35
|
"DVMFactory": "0x6694eebf40924e04c952EA8F1626d19E7a656Bb7",
|
|
@@ -64,5 +63,4 @@
|
|
|
64
63
|
"DefaultMaintainer": "0x43592930d05A17ac2DEBcb533E5f67ccC1ebe977",
|
|
65
64
|
"FeeReceiver": "0x5F7E6fd27C1F717AbC6CB8d5307b7E4Aa7678460"
|
|
66
65
|
}
|
|
67
|
-
}
|
|
68
|
-
|
|
66
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Chain": "hyperevm",
|
|
3
|
+
"ChainId": 999,
|
|
4
|
+
"Token": {
|
|
5
|
+
"WETH": ""
|
|
6
|
+
},
|
|
7
|
+
"Helper": {
|
|
8
|
+
"MulticallWithValid": "0xf3d60Ba9e76459A7075E9676740347B7413462Dd",
|
|
9
|
+
"DODOSellHelper": "",
|
|
10
|
+
"ERC20Helper": "0x08fF57e8Bfe7A01a831e18a8c948fa81C3cF32Ed",
|
|
11
|
+
"DODOCalleeHelper": "",
|
|
12
|
+
"DODOV1PmmHelper": "",
|
|
13
|
+
"DODOV2RouteHelper": "",
|
|
14
|
+
"FeeRateDIP3Impl": ""
|
|
15
|
+
},
|
|
16
|
+
"Templates": {
|
|
17
|
+
"CloneFactory": "",
|
|
18
|
+
"FeeRateModel": "",
|
|
19
|
+
"PermissionManager": "",
|
|
20
|
+
"DODOV1": "",
|
|
21
|
+
"DVM": "",
|
|
22
|
+
"DSP": "",
|
|
23
|
+
"GSP": "",
|
|
24
|
+
"DPPAdvanced": "",
|
|
25
|
+
"DPPAdvancedAdmin": "",
|
|
26
|
+
"CP": "",
|
|
27
|
+
"InitializableERC20": "",
|
|
28
|
+
"CustomERC20": "",
|
|
29
|
+
"CustomMintableERC20": "",
|
|
30
|
+
"ERC20MineV3": ""
|
|
31
|
+
},
|
|
32
|
+
"Factory": {
|
|
33
|
+
"DVMFactory": "",
|
|
34
|
+
"DSPFactory": "",
|
|
35
|
+
"GSPFactory": "",
|
|
36
|
+
"DPPFactory": "",
|
|
37
|
+
"CrowdPoolingFactory": "",
|
|
38
|
+
"ERC20V3Factory": "",
|
|
39
|
+
"DODOMineV2Factory": "",
|
|
40
|
+
"DODOMineV3Registry": ""
|
|
41
|
+
},
|
|
42
|
+
"Approve": {
|
|
43
|
+
"DODOApprove": "",
|
|
44
|
+
"DODOApproveProxy": ""
|
|
45
|
+
},
|
|
46
|
+
"Adapter": {
|
|
47
|
+
"DODOV1Adapter": ""
|
|
48
|
+
},
|
|
49
|
+
"Proxy": {
|
|
50
|
+
"DODOStarterProxy": "",
|
|
51
|
+
"DODOV1Proxy": "",
|
|
52
|
+
"DODOV2Proxy02": "",
|
|
53
|
+
"DODODspProxyWithoutGSP": "",
|
|
54
|
+
"DODOCpProxyWithoutGlobalQuota": "",
|
|
55
|
+
"DODODppProxy": "",
|
|
56
|
+
"DODOMineV3ProxyWithoutPlatform": ""
|
|
57
|
+
},
|
|
58
|
+
"Account": {
|
|
59
|
+
"MultiSigAddress": "",
|
|
60
|
+
"DefaultMaintainer": ""
|
|
61
|
+
},
|
|
62
|
+
"LimitOrder": {
|
|
63
|
+
"LimitOrderBot": "",
|
|
64
|
+
"LimitOrder": ""
|
|
65
|
+
},
|
|
66
|
+
"Periphery": {
|
|
67
|
+
"DODOIncentive": ""
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Chain": "katana",
|
|
3
|
+
"ChainId": 747474,
|
|
4
|
+
"Token": {
|
|
5
|
+
"WETH": ""
|
|
6
|
+
},
|
|
7
|
+
"Helper": {
|
|
8
|
+
"MulticallWithValid": "0xBE4bC1b687c79eD45fed5d8E727bFc92B42797D0",
|
|
9
|
+
"DODOSellHelper": "",
|
|
10
|
+
"ERC20Helper": "0x79a0A160D3Ec0b8402f4F8d657B9a7e0a289663e",
|
|
11
|
+
"DODOCalleeHelper": "",
|
|
12
|
+
"DODOV1PmmHelper": "",
|
|
13
|
+
"DODOV2RouteHelper": "",
|
|
14
|
+
"FeeRateDIP3Impl": ""
|
|
15
|
+
},
|
|
16
|
+
"Templates": {
|
|
17
|
+
"CloneFactory": "",
|
|
18
|
+
"FeeRateModel": "",
|
|
19
|
+
"PermissionManager": "",
|
|
20
|
+
"DODOV1": "",
|
|
21
|
+
"DVM": "",
|
|
22
|
+
"DSP": "",
|
|
23
|
+
"GSP": "",
|
|
24
|
+
"DPPAdvanced": "",
|
|
25
|
+
"DPPAdvancedAdmin": "",
|
|
26
|
+
"CP": "",
|
|
27
|
+
"InitializableERC20": "",
|
|
28
|
+
"CustomERC20": "",
|
|
29
|
+
"CustomMintableERC20": "",
|
|
30
|
+
"ERC20MineV3": ""
|
|
31
|
+
},
|
|
32
|
+
"Factory": {
|
|
33
|
+
"DVMFactory": "",
|
|
34
|
+
"DSPFactory": "",
|
|
35
|
+
"GSPFactory": "",
|
|
36
|
+
"DPPFactory": "",
|
|
37
|
+
"CrowdPoolingFactory": "",
|
|
38
|
+
"ERC20V3Factory": "",
|
|
39
|
+
"DODOMineV2Factory": "",
|
|
40
|
+
"DODOMineV3Registry": ""
|
|
41
|
+
},
|
|
42
|
+
"Approve": {
|
|
43
|
+
"DODOApprove": "",
|
|
44
|
+
"DODOApproveProxy": ""
|
|
45
|
+
},
|
|
46
|
+
"Adapter": {
|
|
47
|
+
"DODOV1Adapter": ""
|
|
48
|
+
},
|
|
49
|
+
"Proxy": {
|
|
50
|
+
"DODOStarterProxy": "",
|
|
51
|
+
"DODOV1Proxy": "",
|
|
52
|
+
"DODOV2Proxy02": "",
|
|
53
|
+
"DODODspProxyWithoutGSP": "",
|
|
54
|
+
"DODOCpProxyWithoutGlobalQuota": "",
|
|
55
|
+
"DODODppProxy": "",
|
|
56
|
+
"DODOMineV3ProxyWithoutPlatform": ""
|
|
57
|
+
},
|
|
58
|
+
"Account": {
|
|
59
|
+
"MultiSigAddress": "",
|
|
60
|
+
"DefaultMaintainer": ""
|
|
61
|
+
},
|
|
62
|
+
"LimitOrder": {
|
|
63
|
+
"LimitOrderBot": "",
|
|
64
|
+
"LimitOrder": ""
|
|
65
|
+
},
|
|
66
|
+
"Periphery": {
|
|
67
|
+
"DODOIncentive": ""
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Chain": "rari",
|
|
3
|
+
"ChainId": 1380012617,
|
|
4
|
+
"Token": {
|
|
5
|
+
"WETH": "0xf037540e51D71b2D2B1120e8432bA49F29EDFBD0"
|
|
6
|
+
},
|
|
7
|
+
"Helper": {
|
|
8
|
+
"MulticallWithValid": "0xBE4bC1b687c79eD45fed5d8E727bFc92B42797D0",
|
|
9
|
+
"DODOSellHelper": "",
|
|
10
|
+
"ERC20Helper": "0x79a0A160D3Ec0b8402f4F8d657B9a7e0a289663e",
|
|
11
|
+
"DODOCalleeHelper": "",
|
|
12
|
+
"DODOV1PmmHelper": "",
|
|
13
|
+
"DODOV2RouteHelper": "",
|
|
14
|
+
"FeeRateDIP3Impl": ""
|
|
15
|
+
},
|
|
16
|
+
"Templates": {
|
|
17
|
+
"CloneFactory": "",
|
|
18
|
+
"FeeRateModel": "",
|
|
19
|
+
"PermissionManager": "",
|
|
20
|
+
"DODOV1": "",
|
|
21
|
+
"DVM": "",
|
|
22
|
+
"DSP": "",
|
|
23
|
+
"GSP": "",
|
|
24
|
+
"DPPAdvanced": "",
|
|
25
|
+
"DPPAdvancedAdmin": "",
|
|
26
|
+
"CP": "",
|
|
27
|
+
"InitializableERC20": "",
|
|
28
|
+
"CustomERC20": "",
|
|
29
|
+
"CustomMintableERC20": "",
|
|
30
|
+
"ERC20MineV3": ""
|
|
31
|
+
},
|
|
32
|
+
"Factory": {
|
|
33
|
+
"DVMFactory": "",
|
|
34
|
+
"DSPFactory": "",
|
|
35
|
+
"GSPFactory": "",
|
|
36
|
+
"DPPFactory": "",
|
|
37
|
+
"CrowdPoolingFactory": "",
|
|
38
|
+
"ERC20V3Factory": "",
|
|
39
|
+
"DODOMineV2Factory": "",
|
|
40
|
+
"DODOMineV3Registry": ""
|
|
41
|
+
},
|
|
42
|
+
"Approve": {
|
|
43
|
+
"DODOApprove": "",
|
|
44
|
+
"DODOApproveProxy": ""
|
|
45
|
+
},
|
|
46
|
+
"Adapter": {
|
|
47
|
+
"DODOV1Adapter": ""
|
|
48
|
+
},
|
|
49
|
+
"Proxy": {
|
|
50
|
+
"DODOStarterProxy": "",
|
|
51
|
+
"DODOV1Proxy": "",
|
|
52
|
+
"DODOV2Proxy02": "",
|
|
53
|
+
"DODODspProxyWithoutGSP": "",
|
|
54
|
+
"DODOCpProxyWithoutGlobalQuota": "",
|
|
55
|
+
"DODODppProxy": "",
|
|
56
|
+
"DODOMineV3ProxyWithoutPlatform": ""
|
|
57
|
+
},
|
|
58
|
+
"Account": {
|
|
59
|
+
"MultiSigAddress": "",
|
|
60
|
+
"DefaultMaintainer": ""
|
|
61
|
+
},
|
|
62
|
+
"LimitOrder": {
|
|
63
|
+
"LimitOrderBot": "",
|
|
64
|
+
"LimitOrder": ""
|
|
65
|
+
},
|
|
66
|
+
"Periphery": {
|
|
67
|
+
"DODOIncentive": ""
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -37,13 +37,11 @@
|
|
|
37
37
|
"GSPFactory": "",
|
|
38
38
|
"DPPFactory": "0x0B1467f71c082D8d410aF4376C685D9A6893cF36",
|
|
39
39
|
"CrowdPoolingFactory": "0xCDA4a6cc5997002B87f28D46852F9F0aA0f3c897",
|
|
40
|
-
"ERC20V3Factory": "
|
|
40
|
+
"ERC20V3Factory": "0x4CAD0052524648A7Fa2cfE279997b00239295F33",
|
|
41
41
|
"DODOMineV2Factory": "0x49186E32fEd50fd6B5604A2618c7B0b03Cd41414",
|
|
42
42
|
"DODOMineV3Registry": "0xa5fc92Ca57a21C87AA0477b1c8fE8B9Bbf69d6C2",
|
|
43
43
|
"UniswapV2Factory": "0xf553a3EA6ecc758ed6f05F62C831b1D71bA7e09c",
|
|
44
44
|
"UniswapV2FactoryFixedFee": "0xF62c03E08ada871A0bEb309762E260a7a6a880E6",
|
|
45
|
-
"RWAToken": "0xc3cc903e9E8D7fAe14192fc445E14D03fd5fDC09",
|
|
46
|
-
"RWAManager": "0x3378D3E726F4B9CF29e12F5463EC159fC0E46798",
|
|
47
45
|
"UniswapV3Factory": "0x3d2A7Bac4E8439ABe86B58324695e921a5FC0987",
|
|
48
46
|
"NonfungiblePositionManager": "0x483E5c0f309577f79b0a19cE65E332DD388aD7A8"
|
|
49
47
|
},
|