@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
|
@@ -0,0 +1,29 @@
|
|
|
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
|
+
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
|
+
DODOV2Adapter: string;
|
|
21
|
+
DODOV2Proxy02: string;
|
|
22
|
+
DODODspProxyWithoutGSP: string;
|
|
23
|
+
DODOCpProxy: string;
|
|
24
|
+
DODODppProxy: string;
|
|
25
|
+
DODOMineV3Proxy: string;
|
|
26
|
+
DODOFeeRouteProxy1: string;
|
|
27
|
+
DODOFeeRouteProxy2: string;
|
|
28
|
+
};
|
|
29
|
+
export default CONTRACT_CONFIG;
|
|
@@ -10,6 +10,7 @@ export { default as avalanche } from './avalanche';
|
|
|
10
10
|
export { default as base } from './base';
|
|
11
11
|
export { default as berachainTestnet } from './berachain-testnet';
|
|
12
12
|
export { default as berachain } from './berachain';
|
|
13
|
+
export { default as birdlayer } from './birdlayer';
|
|
13
14
|
export { default as bitlayer } from './bitlayer';
|
|
14
15
|
export { default as bob } from './bob';
|
|
15
16
|
export { default as bsc } from './bsc';
|
|
@@ -32,11 +33,13 @@ export { default as nero } from './nero';
|
|
|
32
33
|
export { default as optimism } from './optimism';
|
|
33
34
|
export { default as pharosAtlanticTestnet } from './pharos-atlantic-testnet';
|
|
34
35
|
export { default as pharosTestnet } from './pharos-testnet';
|
|
36
|
+
export { default as pharos } from './pharos';
|
|
35
37
|
export { default as plumeTestnet } from './plume-testnet';
|
|
36
38
|
export { default as plume } from './plume';
|
|
37
39
|
export { default as polygon } from './polygon';
|
|
38
40
|
export { default as rari } from './rari';
|
|
39
41
|
export { default as riseTestnet } from './rise-testnet';
|
|
42
|
+
export { default as rise } from './rise';
|
|
40
43
|
export { default as scroll } from './scroll';
|
|
41
44
|
export { default as sepolia } from './sepolia';
|
|
42
45
|
export { default as soneium } from './soneium';
|
|
@@ -50,6 +53,8 @@ export { default as unichain } from './unichain';
|
|
|
50
53
|
export { default as worldchain } from './worldchain';
|
|
51
54
|
export { default as xLayer } from './x-layer';
|
|
52
55
|
export { default as zeroMainnet } from './zero-mainnet';
|
|
56
|
+
export { default as zetachainTestnet } from './zetachain-testnet';
|
|
57
|
+
export { default as zetachain } from './zetachain';
|
|
53
58
|
export { default as zircuitMainnet } from './zircuit-mainnet';
|
|
54
59
|
export declare const multiCallAddressList: {
|
|
55
60
|
"1": string;
|
|
@@ -67,13 +72,17 @@ export declare const multiCallAddressList: {
|
|
|
67
72
|
"999": string;
|
|
68
73
|
"1030": string;
|
|
69
74
|
"1514": string;
|
|
75
|
+
"1672": string;
|
|
70
76
|
"1689": string;
|
|
71
77
|
"1868": string;
|
|
72
78
|
"2201": string;
|
|
73
79
|
"2390": string;
|
|
74
80
|
"2741": string;
|
|
75
81
|
"2818": string;
|
|
82
|
+
"4153": string;
|
|
76
83
|
"5000": string;
|
|
84
|
+
"7000": string;
|
|
85
|
+
"7001": string;
|
|
77
86
|
"8453": string;
|
|
78
87
|
"10143": string;
|
|
79
88
|
"10169": string;
|
|
@@ -82,6 +91,7 @@ export declare const multiCallAddressList: {
|
|
|
82
91
|
"43114": string;
|
|
83
92
|
"47763": string;
|
|
84
93
|
"48900": string;
|
|
94
|
+
"53456": string;
|
|
85
95
|
"57073": string;
|
|
86
96
|
"59144": string;
|
|
87
97
|
"60808": string;
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
DVMFactory: string;
|
|
11
|
+
DSPFactory: string;
|
|
12
|
+
GSPFactory: string;
|
|
13
|
+
DPPFactory: string;
|
|
14
|
+
CrowdPoolingFactory: string;
|
|
15
|
+
ERC20V3Factory: string;
|
|
16
|
+
DODOMineV2Factory: string;
|
|
17
|
+
DODOMineV3Registry: string;
|
|
18
|
+
UniswapV2Factory: string;
|
|
19
|
+
UniswapV3Factory: string;
|
|
20
|
+
NonfungiblePositionManager: string;
|
|
21
|
+
DODOApprove: string;
|
|
22
|
+
DODOApproveProxy: string;
|
|
23
|
+
DODOV2Adapter: string;
|
|
24
|
+
DODOV2Proxy02: string;
|
|
25
|
+
DODODspProxy: string;
|
|
26
|
+
DODOCpProxy: string;
|
|
27
|
+
DODODppProxy: string;
|
|
28
|
+
DODOMineV3Proxy: string;
|
|
29
|
+
DODOFeeRouteProxy1: string;
|
|
30
|
+
DODOFeeRouteProxy2: string;
|
|
31
|
+
UniswapV2Router02: string;
|
|
32
|
+
};
|
|
33
|
+
export default CONTRACT_CONFIG;
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
DVMFactory: string;
|
|
11
|
+
DSPFactory: string;
|
|
12
|
+
GSPFactory: string;
|
|
13
|
+
DPPFactory: string;
|
|
14
|
+
CrowdPoolingFactory: string;
|
|
15
|
+
ERC20V3Factory: string;
|
|
16
|
+
DODOMineV2Factory: string;
|
|
17
|
+
DODOMineV3Registry: string;
|
|
18
|
+
UniswapV2Factory: string;
|
|
19
|
+
UniswapV3Factory: string;
|
|
20
|
+
NonfungiblePositionManager: string;
|
|
21
|
+
DODOApprove: string;
|
|
22
|
+
DODOApproveProxy: string;
|
|
23
|
+
DODOV2Adapter: string;
|
|
24
|
+
DODOV2Proxy02: string;
|
|
25
|
+
DODODspProxy: string;
|
|
26
|
+
DODOCpProxy: string;
|
|
27
|
+
DODODppProxy: string;
|
|
28
|
+
DODOMineV3Proxy: string;
|
|
29
|
+
DODOFeeRouteProxy1: string;
|
|
30
|
+
DODOFeeRouteProxy2: string;
|
|
31
|
+
UniswapV2Router02: string;
|
|
32
|
+
};
|
|
33
|
+
export default CONTRACT_CONFIG;
|
|
@@ -15,6 +15,8 @@ declare const CONTRACT_CONFIG: {
|
|
|
15
15
|
DODOMineV3Registry: string;
|
|
16
16
|
UniswapV2Factory: string;
|
|
17
17
|
UniswapV2FactoryFixedFee: string;
|
|
18
|
+
RWAToken: string;
|
|
19
|
+
RWAManager: string;
|
|
18
20
|
UniswapV3Factory: string;
|
|
19
21
|
NonfungiblePositionManager: string;
|
|
20
22
|
DODOApprove: string;
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
DVMFactory: string;
|
|
11
|
+
DSPFactory: string;
|
|
12
|
+
GSPFactory: string;
|
|
13
|
+
DPPFactory: string;
|
|
14
|
+
ERC20V3Factory: string;
|
|
15
|
+
DODOMineV2Factory: string;
|
|
16
|
+
DODOMineV3Registry: string;
|
|
17
|
+
UniswapV2Factory: string;
|
|
18
|
+
UniswapV3Factory: string;
|
|
19
|
+
NonfungiblePositionManager: string;
|
|
20
|
+
DODOApprove: string;
|
|
21
|
+
DODOApproveProxy: string;
|
|
22
|
+
DODOV2Adapter: string;
|
|
23
|
+
DODOV2Proxy02: string;
|
|
24
|
+
DODODspProxy: string;
|
|
25
|
+
DODOCpProxy: string;
|
|
26
|
+
DODODppProxy: string;
|
|
27
|
+
DODOMineV3Proxy: string;
|
|
28
|
+
DODOFeeRouteProxy1: string;
|
|
29
|
+
DODOFeeRouteProxy2: string;
|
|
30
|
+
UniswapV2Router02: string;
|
|
31
|
+
};
|
|
32
|
+
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
|
+
DVMFactory: string;
|
|
11
|
+
DSPFactory: string;
|
|
12
|
+
GSPFactory: string;
|
|
13
|
+
DPPFactory: string;
|
|
14
|
+
ERC20V3Factory: string;
|
|
15
|
+
DODOMineV2Factory: string;
|
|
16
|
+
DODOMineV3Registry: string;
|
|
17
|
+
UniswapV2Factory: string;
|
|
18
|
+
UniswapV3Factory: string;
|
|
19
|
+
NonfungiblePositionManager: string;
|
|
20
|
+
DODOApprove: string;
|
|
21
|
+
DODOApproveProxy: string;
|
|
22
|
+
DODOV2Adapter: string;
|
|
23
|
+
DODOV2Proxy02: string;
|
|
24
|
+
DODODspProxy: string;
|
|
25
|
+
DODOCpProxy: string;
|
|
26
|
+
DODODppProxy: string;
|
|
27
|
+
DODOMineV3Proxy: string;
|
|
28
|
+
UniswapV2Router02: string;
|
|
29
|
+
};
|
|
30
|
+
export default CONTRACT_CONFIG;
|