@dodoex/dodo-contract-request 1.6.0-alpha.3 → 1.6.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 +0 -27
- package/dist/types/contract/BuyoutModel.d.ts +12 -12
- package/dist/types/contract/CP.d.ts +80 -68
- package/dist/types/contract/CrowdPoolingFactory.d.ts +44 -38
- package/dist/types/contract/CustomERC20.d.ts +22 -22
- package/dist/types/contract/CustomMintableERC20.d.ts +22 -22
- package/dist/types/contract/D3Proxy.d.ts +8 -8
- package/dist/types/contract/D3Vault.d.ts +174 -96
- package/dist/types/contract/DODOApprove.d.ts +12 -12
- package/dist/types/contract/DODOApproveProxy.d.ts +14 -14
- package/dist/types/contract/DODOCalleeHelper.d.ts +2 -2
- package/dist/types/contract/DODOCirculationHelper.d.ts +14 -14
- package/dist/types/contract/DODOCpProxy.d.ts +6 -6
- package/dist/types/contract/DODOCpProxyWithoutGlobalQuota.d.ts +6 -6
- package/dist/types/contract/DODODppProxy.d.ts +6 -6
- package/dist/types/contract/DODODspProxy.d.ts +8 -8
- package/dist/types/contract/DODODspProxyWithoutGSP.d.ts +6 -6
- package/dist/types/contract/DODOIncentive.d.ts +34 -22
- package/dist/types/contract/DODOMineV2Factory.d.ts +14 -14
- package/dist/types/contract/DODOMineV3Proxy.d.ts +12 -12
- package/dist/types/contract/DODOMineV3ProxyWithoutPlatform.d.ts +12 -12
- package/dist/types/contract/DODOMineV3Registry.d.ts +12 -12
- package/dist/types/contract/DODONFT.d.ts +28 -28
- package/dist/types/contract/DODONFT1155.d.ts +16 -16
- package/dist/types/contract/DODONFTApprove.d.ts +12 -12
- package/dist/types/contract/DODONFTPoolProxy.d.ts +20 -20
- package/dist/types/contract/DODONFTProxy.d.ts +24 -24
- package/dist/types/contract/DODONFTRegistry.d.ts +20 -14
- package/dist/types/contract/DODONFTRouteHelper.d.ts +4 -4
- package/dist/types/contract/DODOSellHelper.d.ts +4 -4
- package/dist/types/contract/DODOStarterProxy.d.ts +4 -4
- package/dist/types/contract/DODOV1.d.ts +84 -78
- package/dist/types/contract/DODOV1Adapter.d.ts +2 -2
- package/dist/types/contract/DODOV1PmmHelper.d.ts +2 -2
- package/dist/types/contract/DODOV1Proxy.d.ts +2 -2
- package/dist/types/contract/DODOV2Proxy02.d.ts +26 -26
- package/dist/types/contract/DODOV2RouteHelper.d.ts +8 -8
- package/dist/types/contract/DPPAdvanced.d.ts +118 -54
- package/dist/types/contract/DPPAdvancedAdmin.d.ts +14 -14
- package/dist/types/contract/DPPFactory.d.ts +34 -28
- package/dist/types/contract/DSP.d.ts +134 -70
- package/dist/types/contract/DSPFactory.d.ts +28 -22
- package/dist/types/contract/DVM.d.ts +120 -64
- package/dist/types/contract/DVMFactory.d.ts +28 -22
- package/dist/types/contract/ERC20.d.ts +12 -12
- package/dist/types/contract/ERC20Helper.d.ts +46 -8
- package/dist/types/contract/ERC20MineV3.d.ts +46 -26
- package/dist/types/contract/ERC20V3Factory.d.ts +30 -22
- package/dist/types/contract/FeeRateDIP3Impl.d.ts +38 -20
- package/dist/types/contract/FeeRateModel.d.ts +8 -8
- package/dist/types/contract/GSP.d.ts +152 -82
- package/dist/types/contract/GSPFactory.d.ts +26 -20
- package/dist/types/contract/InitializableERC20.d.ts +14 -14
- package/dist/types/contract/LimitOrder.d.ts +20 -20
- package/dist/types/contract/LimitOrderBot.d.ts +12 -12
- package/dist/types/contract/MulticallWithValid.d.ts +14 -14
- package/dist/types/contract/PermissionManager.d.ts +8 -8
- package/dist/types/contract/UniswapV2Factory.d.ts +10 -10
- package/dist/types/contract/UniswapV2Pair.d.ts +46 -38
- package/dist/types/contract/UniswapV2Router02.d.ts +14 -14
- package/dist/types/contract/dodoTeam.d.ts +34 -28
- package/dist/types/contract/vDODOToken.d.ts +84 -60
- package/package.json +2 -2
- package/src/contract/BuyoutModel.ts +6 -6
- package/src/contract/CP.ts +40 -34
- package/src/contract/CrowdPoolingFactory.ts +22 -19
- package/src/contract/CustomERC20.ts +11 -11
- package/src/contract/CustomMintableERC20.ts +11 -11
- package/src/contract/D3Proxy.ts +4 -4
- package/src/contract/D3Vault.ts +87 -48
- package/src/contract/DODOApprove.ts +6 -6
- package/src/contract/DODOApproveProxy.ts +7 -7
- package/src/contract/DODOCalleeHelper.ts +1 -1
- package/src/contract/DODOCirculationHelper.ts +7 -7
- package/src/contract/DODOCpProxy.ts +3 -3
- package/src/contract/DODOCpProxyWithoutGlobalQuota.ts +3 -3
- package/src/contract/DODODppProxy.ts +3 -3
- package/src/contract/DODODspProxy.ts +4 -4
- package/src/contract/DODODspProxyWithoutGSP.ts +3 -3
- package/src/contract/DODOIncentive.ts +17 -11
- package/src/contract/DODOMineV2Factory.ts +7 -7
- package/src/contract/DODOMineV3Proxy.ts +6 -6
- package/src/contract/DODOMineV3ProxyWithoutPlatform.ts +6 -6
- package/src/contract/DODOMineV3Registry.ts +6 -6
- package/src/contract/DODONFT.ts +14 -14
- package/src/contract/DODONFT1155.ts +8 -8
- package/src/contract/DODONFTApprove.ts +6 -6
- package/src/contract/DODONFTPoolProxy.ts +10 -10
- package/src/contract/DODONFTProxy.ts +12 -12
- package/src/contract/DODONFTRegistry.ts +10 -7
- package/src/contract/DODONFTRouteHelper.ts +2 -2
- package/src/contract/DODOSellHelper.ts +2 -2
- package/src/contract/DODOStarterProxy.ts +2 -2
- package/src/contract/DODOV1.ts +42 -39
- package/src/contract/DODOV1Adapter.ts +1 -1
- package/src/contract/DODOV1PmmHelper.ts +1 -1
- package/src/contract/DODOV1Proxy.ts +1 -1
- package/src/contract/DODOV2Proxy02.ts +13 -13
- package/src/contract/DODOV2RouteHelper.ts +4 -4
- package/src/contract/DPPAdvanced.ts +51 -27
- package/src/contract/DPPAdvancedAdmin.ts +7 -7
- package/src/contract/DPPFactory.ts +17 -14
- package/src/contract/DSP.ts +59 -35
- package/src/contract/DSPFactory.ts +14 -11
- package/src/contract/DVM.ts +52 -32
- package/src/contract/DVMFactory.ts +14 -11
- package/src/contract/ERC20.ts +6 -6
- package/src/contract/ERC20Helper.ts +23 -4
- package/src/contract/ERC20MineV3.ts +23 -13
- package/src/contract/ERC20V3Factory.ts +15 -11
- package/src/contract/FeeRateDIP3Impl.ts +19 -10
- package/src/contract/FeeRateModel.ts +4 -4
- package/src/contract/GSP.ts +68 -41
- package/src/contract/GSPFactory.ts +13 -10
- package/src/contract/InitializableERC20.ts +7 -7
- package/src/contract/LimitOrder.ts +10 -10
- package/src/contract/LimitOrderBot.ts +6 -6
- package/src/contract/MulticallWithValid.ts +7 -7
- package/src/contract/PermissionManager.ts +4 -4
- package/src/contract/UniswapV2Factory.ts +5 -5
- package/src/contract/UniswapV2Pair.ts +23 -19
- package/src/contract/UniswapV2Router02.ts +7 -7
- package/src/contract/dodoTeam.ts +17 -14
- package/src/contract/vDODOToken.ts +42 -30
|
@@ -4,143 +4,143 @@ export declare function getCrowdPoolingFactoryContractAddressByChainId(chainId:
|
|
|
4
4
|
* @param {number} chainId - number
|
|
5
5
|
* @returns {bigint} __output0 - uint256
|
|
6
6
|
*/
|
|
7
|
-
export declare function fetchCrowdPoolingFactory_CALM_DURATION_(chainId: number):
|
|
7
|
+
export declare function fetchCrowdPoolingFactory_CALM_DURATION_(chainId: number): Promise<bigint>;
|
|
8
8
|
export declare function getFetchCrowdPoolingFactory_CALM_DURATION_QueryOptions(chainId: number | undefined): {
|
|
9
9
|
queryKey: (string | number | undefined)[];
|
|
10
10
|
enabled: boolean;
|
|
11
|
-
queryFn: () =>
|
|
11
|
+
queryFn: () => Promise<bigint>;
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
14
|
* fetch _CAP_RATIO_
|
|
15
15
|
* @param {number} chainId - number
|
|
16
16
|
* @returns {bigint} __output0 - uint256
|
|
17
17
|
*/
|
|
18
|
-
export declare function fetchCrowdPoolingFactory_CAP_RATIO_(chainId: number):
|
|
18
|
+
export declare function fetchCrowdPoolingFactory_CAP_RATIO_(chainId: number): Promise<bigint>;
|
|
19
19
|
export declare function getFetchCrowdPoolingFactory_CAP_RATIO_QueryOptions(chainId: number | undefined): {
|
|
20
20
|
queryKey: (string | number | undefined)[];
|
|
21
21
|
enabled: boolean;
|
|
22
|
-
queryFn: () =>
|
|
22
|
+
queryFn: () => Promise<bigint>;
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
25
25
|
* fetch _CLIFF_RATE_
|
|
26
26
|
* @param {number} chainId - number
|
|
27
27
|
* @returns {bigint} __output0 - uint256
|
|
28
28
|
*/
|
|
29
|
-
export declare function fetchCrowdPoolingFactory_CLIFF_RATE_(chainId: number):
|
|
29
|
+
export declare function fetchCrowdPoolingFactory_CLIFF_RATE_(chainId: number): Promise<bigint>;
|
|
30
30
|
export declare function getFetchCrowdPoolingFactory_CLIFF_RATE_QueryOptions(chainId: number | undefined): {
|
|
31
31
|
queryKey: (string | number | undefined)[];
|
|
32
32
|
enabled: boolean;
|
|
33
|
-
queryFn: () =>
|
|
33
|
+
queryFn: () => Promise<bigint>;
|
|
34
34
|
};
|
|
35
35
|
/**
|
|
36
36
|
* fetch _CLONE_FACTORY_
|
|
37
37
|
* @param {number} chainId - number
|
|
38
38
|
* @returns {string} __output0 - address
|
|
39
39
|
*/
|
|
40
|
-
export declare function fetchCrowdPoolingFactory_CLONE_FACTORY_(chainId: number):
|
|
40
|
+
export declare function fetchCrowdPoolingFactory_CLONE_FACTORY_(chainId: number): Promise<string>;
|
|
41
41
|
export declare function getFetchCrowdPoolingFactory_CLONE_FACTORY_QueryOptions(chainId: number | undefined): {
|
|
42
42
|
queryKey: (string | number | undefined)[];
|
|
43
43
|
enabled: boolean;
|
|
44
|
-
queryFn: () =>
|
|
44
|
+
queryFn: () => Promise<string>;
|
|
45
45
|
};
|
|
46
46
|
/**
|
|
47
47
|
* fetch _CP_TEMPLATE_
|
|
48
48
|
* @param {number} chainId - number
|
|
49
49
|
* @returns {string} __output0 - address
|
|
50
50
|
*/
|
|
51
|
-
export declare function fetchCrowdPoolingFactory_CP_TEMPLATE_(chainId: number):
|
|
51
|
+
export declare function fetchCrowdPoolingFactory_CP_TEMPLATE_(chainId: number): Promise<string>;
|
|
52
52
|
export declare function getFetchCrowdPoolingFactory_CP_TEMPLATE_QueryOptions(chainId: number | undefined): {
|
|
53
53
|
queryKey: (string | number | undefined)[];
|
|
54
54
|
enabled: boolean;
|
|
55
|
-
queryFn: () =>
|
|
55
|
+
queryFn: () => Promise<string>;
|
|
56
56
|
};
|
|
57
57
|
/**
|
|
58
58
|
* fetch _DEFAULT_MAINTAINER_
|
|
59
59
|
* @param {number} chainId - number
|
|
60
60
|
* @returns {string} __output0 - address
|
|
61
61
|
*/
|
|
62
|
-
export declare function fetchCrowdPoolingFactory_DEFAULT_MAINTAINER_(chainId: number):
|
|
62
|
+
export declare function fetchCrowdPoolingFactory_DEFAULT_MAINTAINER_(chainId: number): Promise<string>;
|
|
63
63
|
export declare function getFetchCrowdPoolingFactory_DEFAULT_MAINTAINER_QueryOptions(chainId: number | undefined): {
|
|
64
64
|
queryKey: (string | number | undefined)[];
|
|
65
65
|
enabled: boolean;
|
|
66
|
-
queryFn: () =>
|
|
66
|
+
queryFn: () => Promise<string>;
|
|
67
67
|
};
|
|
68
68
|
/**
|
|
69
69
|
* fetch _DEFAULT_MT_FEE_RATE_MODEL_
|
|
70
70
|
* @param {number} chainId - number
|
|
71
71
|
* @returns {string} __output0 - address
|
|
72
72
|
*/
|
|
73
|
-
export declare function fetchCrowdPoolingFactory_DEFAULT_MT_FEE_RATE_MODEL_(chainId: number):
|
|
73
|
+
export declare function fetchCrowdPoolingFactory_DEFAULT_MT_FEE_RATE_MODEL_(chainId: number): Promise<string>;
|
|
74
74
|
export declare function getFetchCrowdPoolingFactory_DEFAULT_MT_FEE_RATE_MODEL_QueryOptions(chainId: number | undefined): {
|
|
75
75
|
queryKey: (string | number | undefined)[];
|
|
76
76
|
enabled: boolean;
|
|
77
|
-
queryFn: () =>
|
|
77
|
+
queryFn: () => Promise<string>;
|
|
78
78
|
};
|
|
79
79
|
/**
|
|
80
80
|
* fetch _DEFAULT_PERMISSION_MANAGER_
|
|
81
81
|
* @param {number} chainId - number
|
|
82
82
|
* @returns {string} __output0 - address
|
|
83
83
|
*/
|
|
84
|
-
export declare function fetchCrowdPoolingFactory_DEFAULT_PERMISSION_MANAGER_(chainId: number):
|
|
84
|
+
export declare function fetchCrowdPoolingFactory_DEFAULT_PERMISSION_MANAGER_(chainId: number): Promise<string>;
|
|
85
85
|
export declare function getFetchCrowdPoolingFactory_DEFAULT_PERMISSION_MANAGER_QueryOptions(chainId: number | undefined): {
|
|
86
86
|
queryKey: (string | number | undefined)[];
|
|
87
87
|
enabled: boolean;
|
|
88
|
-
queryFn: () =>
|
|
88
|
+
queryFn: () => Promise<string>;
|
|
89
89
|
};
|
|
90
90
|
/**
|
|
91
91
|
* fetch _DVM_FACTORY_
|
|
92
92
|
* @param {number} chainId - number
|
|
93
93
|
* @returns {string} __output0 - address
|
|
94
94
|
*/
|
|
95
|
-
export declare function fetchCrowdPoolingFactory_DVM_FACTORY_(chainId: number):
|
|
95
|
+
export declare function fetchCrowdPoolingFactory_DVM_FACTORY_(chainId: number): Promise<string>;
|
|
96
96
|
export declare function getFetchCrowdPoolingFactory_DVM_FACTORY_QueryOptions(chainId: number | undefined): {
|
|
97
97
|
queryKey: (string | number | undefined)[];
|
|
98
98
|
enabled: boolean;
|
|
99
|
-
queryFn: () =>
|
|
99
|
+
queryFn: () => Promise<string>;
|
|
100
100
|
};
|
|
101
101
|
/**
|
|
102
102
|
* fetch _FREEZE_DURATION_
|
|
103
103
|
* @param {number} chainId - number
|
|
104
104
|
* @returns {bigint} __output0 - uint256
|
|
105
105
|
*/
|
|
106
|
-
export declare function fetchCrowdPoolingFactory_FREEZE_DURATION_(chainId: number):
|
|
106
|
+
export declare function fetchCrowdPoolingFactory_FREEZE_DURATION_(chainId: number): Promise<bigint>;
|
|
107
107
|
export declare function getFetchCrowdPoolingFactory_FREEZE_DURATION_QueryOptions(chainId: number | undefined): {
|
|
108
108
|
queryKey: (string | number | undefined)[];
|
|
109
109
|
enabled: boolean;
|
|
110
|
-
queryFn: () =>
|
|
110
|
+
queryFn: () => Promise<bigint>;
|
|
111
111
|
};
|
|
112
112
|
/**
|
|
113
113
|
* fetch _K_
|
|
114
114
|
* @param {number} chainId - number
|
|
115
115
|
* @returns {bigint} __output0 - uint256
|
|
116
116
|
*/
|
|
117
|
-
export declare function fetchCrowdPoolingFactory_K_(chainId: number):
|
|
117
|
+
export declare function fetchCrowdPoolingFactory_K_(chainId: number): Promise<bigint>;
|
|
118
118
|
export declare function getFetchCrowdPoolingFactory_K_QueryOptions(chainId: number | undefined): {
|
|
119
119
|
queryKey: (string | number | undefined)[];
|
|
120
120
|
enabled: boolean;
|
|
121
|
-
queryFn: () =>
|
|
121
|
+
queryFn: () => Promise<bigint>;
|
|
122
122
|
};
|
|
123
123
|
/**
|
|
124
124
|
* fetch _NEW_OWNER_
|
|
125
125
|
* @param {number} chainId - number
|
|
126
126
|
* @returns {string} __output0 - address
|
|
127
127
|
*/
|
|
128
|
-
export declare function fetchCrowdPoolingFactory_NEW_OWNER_(chainId: number):
|
|
128
|
+
export declare function fetchCrowdPoolingFactory_NEW_OWNER_(chainId: number): Promise<string>;
|
|
129
129
|
export declare function getFetchCrowdPoolingFactory_NEW_OWNER_QueryOptions(chainId: number | undefined): {
|
|
130
130
|
queryKey: (string | number | undefined)[];
|
|
131
131
|
enabled: boolean;
|
|
132
|
-
queryFn: () =>
|
|
132
|
+
queryFn: () => Promise<string>;
|
|
133
133
|
};
|
|
134
134
|
/**
|
|
135
135
|
* fetch _OWNER_
|
|
136
136
|
* @param {number} chainId - number
|
|
137
137
|
* @returns {string} __output0 - address
|
|
138
138
|
*/
|
|
139
|
-
export declare function fetchCrowdPoolingFactory_OWNER_(chainId: number):
|
|
139
|
+
export declare function fetchCrowdPoolingFactory_OWNER_(chainId: number): Promise<string>;
|
|
140
140
|
export declare function getFetchCrowdPoolingFactory_OWNER_QueryOptions(chainId: number | undefined): {
|
|
141
141
|
queryKey: (string | number | undefined)[];
|
|
142
142
|
enabled: boolean;
|
|
143
|
-
queryFn: () =>
|
|
143
|
+
queryFn: () => Promise<string>;
|
|
144
144
|
};
|
|
145
145
|
/**
|
|
146
146
|
* fetch _REGISTRY_
|
|
@@ -150,11 +150,11 @@ export declare function getFetchCrowdPoolingFactory_OWNER_QueryOptions(chainId:
|
|
|
150
150
|
* @param {number} __input3 - uint256
|
|
151
151
|
* @returns {string} __output0 - address
|
|
152
152
|
*/
|
|
153
|
-
export declare function fetchCrowdPoolingFactory_REGISTRY_(chainId: number, __input1: string, __input2: string, __input3: number):
|
|
153
|
+
export declare function fetchCrowdPoolingFactory_REGISTRY_(chainId: number, __input1: string, __input2: string, __input3: number): Promise<string>;
|
|
154
154
|
export declare function getFetchCrowdPoolingFactory_REGISTRY_QueryOptions(chainId: number | undefined, __input1: string | undefined, __input2: string | undefined, __input3: number | undefined): {
|
|
155
155
|
queryKey: (string | number | undefined)[];
|
|
156
156
|
enabled: boolean;
|
|
157
|
-
queryFn: () =>
|
|
157
|
+
queryFn: () => Promise<string>;
|
|
158
158
|
};
|
|
159
159
|
/**
|
|
160
160
|
* fetch _USER_REGISTRY_
|
|
@@ -163,22 +163,22 @@ export declare function getFetchCrowdPoolingFactory_REGISTRY_QueryOptions(chainI
|
|
|
163
163
|
* @param {number} __input2 - uint256
|
|
164
164
|
* @returns {string} __output0 - address
|
|
165
165
|
*/
|
|
166
|
-
export declare function fetchCrowdPoolingFactory_USER_REGISTRY_(chainId: number, __input1: string, __input2: number):
|
|
166
|
+
export declare function fetchCrowdPoolingFactory_USER_REGISTRY_(chainId: number, __input1: string, __input2: number): Promise<string>;
|
|
167
167
|
export declare function getFetchCrowdPoolingFactory_USER_REGISTRY_QueryOptions(chainId: number | undefined, __input1: string | undefined, __input2: number | undefined): {
|
|
168
168
|
queryKey: (string | number | undefined)[];
|
|
169
169
|
enabled: boolean;
|
|
170
|
-
queryFn: () =>
|
|
170
|
+
queryFn: () => Promise<string>;
|
|
171
171
|
};
|
|
172
172
|
/**
|
|
173
173
|
* fetch _VEST_DURATION_
|
|
174
174
|
* @param {number} chainId - number
|
|
175
175
|
* @returns {bigint} __output0 - uint256
|
|
176
176
|
*/
|
|
177
|
-
export declare function fetchCrowdPoolingFactory_VEST_DURATION_(chainId: number):
|
|
177
|
+
export declare function fetchCrowdPoolingFactory_VEST_DURATION_(chainId: number): Promise<bigint>;
|
|
178
178
|
export declare function getFetchCrowdPoolingFactory_VEST_DURATION_QueryOptions(chainId: number | undefined): {
|
|
179
179
|
queryKey: (string | number | undefined)[];
|
|
180
180
|
enabled: boolean;
|
|
181
|
-
queryFn: () =>
|
|
181
|
+
queryFn: () => Promise<bigint>;
|
|
182
182
|
};
|
|
183
183
|
/**
|
|
184
184
|
* fetch getCrowdPooling
|
|
@@ -187,11 +187,11 @@ export declare function getFetchCrowdPoolingFactory_VEST_DURATION_QueryOptions(c
|
|
|
187
187
|
* @param {string} quoteToken - address
|
|
188
188
|
* @returns {Array<string>} pools - address[]
|
|
189
189
|
*/
|
|
190
|
-
export declare function fetchCrowdPoolingFactoryGetCrowdPooling(chainId: number, baseToken: string, quoteToken: string):
|
|
190
|
+
export declare function fetchCrowdPoolingFactoryGetCrowdPooling(chainId: number, baseToken: string, quoteToken: string): Promise<Array<string>>;
|
|
191
191
|
export declare function getFetchCrowdPoolingFactoryGetCrowdPoolingQueryOptions(chainId: number | undefined, baseToken: string | undefined, quoteToken: string | undefined): {
|
|
192
192
|
queryKey: (string | number | undefined)[];
|
|
193
193
|
enabled: boolean;
|
|
194
|
-
queryFn: () =>
|
|
194
|
+
queryFn: () => Promise<string[]>;
|
|
195
195
|
};
|
|
196
196
|
/**
|
|
197
197
|
* fetch getCrowdPoolingBidirection
|
|
@@ -201,11 +201,17 @@ export declare function getFetchCrowdPoolingFactoryGetCrowdPoolingQueryOptions(c
|
|
|
201
201
|
* @returns {Array<string>} baseToken0Pools - address[]
|
|
202
202
|
* @returns {Array<string>} baseToken1Pools - address[]
|
|
203
203
|
*/
|
|
204
|
-
export declare function fetchCrowdPoolingFactoryGetCrowdPoolingBidirection(chainId: number, token0: string, token1: string):
|
|
204
|
+
export declare function fetchCrowdPoolingFactoryGetCrowdPoolingBidirection(chainId: number, token0: string, token1: string): Promise<{
|
|
205
|
+
baseToken0Pools: Array<string>;
|
|
206
|
+
baseToken1Pools: Array<string>;
|
|
207
|
+
}>;
|
|
205
208
|
export declare function getFetchCrowdPoolingFactoryGetCrowdPoolingBidirectionQueryOptions(chainId: number | undefined, token0: string | undefined, token1: string | undefined): {
|
|
206
209
|
queryKey: (string | number | undefined)[];
|
|
207
210
|
enabled: boolean;
|
|
208
|
-
queryFn: () =>
|
|
211
|
+
queryFn: () => Promise<{
|
|
212
|
+
baseToken0Pools: Array<string>;
|
|
213
|
+
baseToken1Pools: Array<string>;
|
|
214
|
+
}>;
|
|
209
215
|
};
|
|
210
216
|
/**
|
|
211
217
|
* fetch getCrowdPoolingByUser
|
|
@@ -213,11 +219,11 @@ export declare function getFetchCrowdPoolingFactoryGetCrowdPoolingBidirectionQue
|
|
|
213
219
|
* @param {string} user - address
|
|
214
220
|
* @returns {Array<string>} pools - address[]
|
|
215
221
|
*/
|
|
216
|
-
export declare function fetchCrowdPoolingFactoryGetCrowdPoolingByUser(chainId: number, user: string):
|
|
222
|
+
export declare function fetchCrowdPoolingFactoryGetCrowdPoolingByUser(chainId: number, user: string): Promise<Array<string>>;
|
|
217
223
|
export declare function getFetchCrowdPoolingFactoryGetCrowdPoolingByUserQueryOptions(chainId: number | undefined, user: string | undefined): {
|
|
218
224
|
queryKey: (string | number | undefined)[];
|
|
219
225
|
enabled: boolean;
|
|
220
|
-
queryFn: () =>
|
|
226
|
+
queryFn: () => Promise<string[]>;
|
|
221
227
|
};
|
|
222
228
|
/**
|
|
223
229
|
* encode claimOwnership
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
* @param {string} __to - string
|
|
5
5
|
* @returns {string} __output0 - address
|
|
6
6
|
*/
|
|
7
|
-
export declare function fetchCustomERC20_NEW_OWNER_(chainId: number, __to: string):
|
|
7
|
+
export declare function fetchCustomERC20_NEW_OWNER_(chainId: number, __to: string): Promise<string>;
|
|
8
8
|
export declare function getFetchCustomERC20_NEW_OWNER_QueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
9
9
|
queryKey: (string | number | undefined)[];
|
|
10
10
|
enabled: boolean;
|
|
11
|
-
queryFn: () =>
|
|
11
|
+
queryFn: () => Promise<string>;
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
14
|
* fetch _OWNER_
|
|
@@ -16,11 +16,11 @@ export declare function getFetchCustomERC20_NEW_OWNER_QueryOptions(chainId: numb
|
|
|
16
16
|
* @param {string} __to - string
|
|
17
17
|
* @returns {string} __output0 - address
|
|
18
18
|
*/
|
|
19
|
-
export declare function fetchCustomERC20_OWNER_(chainId: number, __to: string):
|
|
19
|
+
export declare function fetchCustomERC20_OWNER_(chainId: number, __to: string): Promise<string>;
|
|
20
20
|
export declare function getFetchCustomERC20_OWNER_QueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
21
21
|
queryKey: (string | number | undefined)[];
|
|
22
22
|
enabled: boolean;
|
|
23
|
-
queryFn: () =>
|
|
23
|
+
queryFn: () => Promise<string>;
|
|
24
24
|
};
|
|
25
25
|
/**
|
|
26
26
|
* fetch allowance
|
|
@@ -30,11 +30,11 @@ export declare function getFetchCustomERC20_OWNER_QueryOptions(chainId: number |
|
|
|
30
30
|
* @param {string} spender - address
|
|
31
31
|
* @returns {bigint} __output0 - uint256
|
|
32
32
|
*/
|
|
33
|
-
export declare function fetchCustomERC20Allowance(chainId: number, __to: string, owner: string, spender: string):
|
|
33
|
+
export declare function fetchCustomERC20Allowance(chainId: number, __to: string, owner: string, spender: string): Promise<bigint>;
|
|
34
34
|
export declare function getFetchCustomERC20AllowanceQueryOptions(chainId: number | undefined, __to: string | undefined, owner: string | undefined, spender: string | undefined): {
|
|
35
35
|
queryKey: (string | number | undefined)[];
|
|
36
36
|
enabled: boolean;
|
|
37
|
-
queryFn: () =>
|
|
37
|
+
queryFn: () => Promise<bigint>;
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
40
|
* fetch balanceOf
|
|
@@ -43,11 +43,11 @@ export declare function getFetchCustomERC20AllowanceQueryOptions(chainId: number
|
|
|
43
43
|
* @param {string} owner - address
|
|
44
44
|
* @returns {bigint} balance - uint256
|
|
45
45
|
*/
|
|
46
|
-
export declare function fetchCustomERC20BalanceOf(chainId: number, __to: string, owner: string):
|
|
46
|
+
export declare function fetchCustomERC20BalanceOf(chainId: number, __to: string, owner: string): Promise<bigint>;
|
|
47
47
|
export declare function getFetchCustomERC20BalanceOfQueryOptions(chainId: number | undefined, __to: string | undefined, owner: string | undefined): {
|
|
48
48
|
queryKey: (string | number | undefined)[];
|
|
49
49
|
enabled: boolean;
|
|
50
|
-
queryFn: () =>
|
|
50
|
+
queryFn: () => Promise<bigint>;
|
|
51
51
|
};
|
|
52
52
|
/**
|
|
53
53
|
* fetch decimals
|
|
@@ -55,11 +55,11 @@ export declare function getFetchCustomERC20BalanceOfQueryOptions(chainId: number
|
|
|
55
55
|
* @param {string} __to - string
|
|
56
56
|
* @returns {bigint} __output0 - uint8
|
|
57
57
|
*/
|
|
58
|
-
export declare function fetchCustomERC20Decimals(chainId: number, __to: string):
|
|
58
|
+
export declare function fetchCustomERC20Decimals(chainId: number, __to: string): Promise<bigint>;
|
|
59
59
|
export declare function getFetchCustomERC20DecimalsQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
60
60
|
queryKey: (string | number | undefined)[];
|
|
61
61
|
enabled: boolean;
|
|
62
|
-
queryFn: () =>
|
|
62
|
+
queryFn: () => Promise<bigint>;
|
|
63
63
|
};
|
|
64
64
|
/**
|
|
65
65
|
* fetch name
|
|
@@ -67,11 +67,11 @@ export declare function getFetchCustomERC20DecimalsQueryOptions(chainId: number
|
|
|
67
67
|
* @param {string} __to - string
|
|
68
68
|
* @returns {string} __output0 - string
|
|
69
69
|
*/
|
|
70
|
-
export declare function fetchCustomERC20Name(chainId: number, __to: string):
|
|
70
|
+
export declare function fetchCustomERC20Name(chainId: number, __to: string): Promise<string>;
|
|
71
71
|
export declare function getFetchCustomERC20NameQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
72
72
|
queryKey: (string | number | undefined)[];
|
|
73
73
|
enabled: boolean;
|
|
74
|
-
queryFn: () =>
|
|
74
|
+
queryFn: () => Promise<string>;
|
|
75
75
|
};
|
|
76
76
|
/**
|
|
77
77
|
* fetch symbol
|
|
@@ -79,11 +79,11 @@ export declare function getFetchCustomERC20NameQueryOptions(chainId: number | un
|
|
|
79
79
|
* @param {string} __to - string
|
|
80
80
|
* @returns {string} __output0 - string
|
|
81
81
|
*/
|
|
82
|
-
export declare function fetchCustomERC20Symbol(chainId: number, __to: string):
|
|
82
|
+
export declare function fetchCustomERC20Symbol(chainId: number, __to: string): Promise<string>;
|
|
83
83
|
export declare function getFetchCustomERC20SymbolQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
84
84
|
queryKey: (string | number | undefined)[];
|
|
85
85
|
enabled: boolean;
|
|
86
|
-
queryFn: () =>
|
|
86
|
+
queryFn: () => Promise<string>;
|
|
87
87
|
};
|
|
88
88
|
/**
|
|
89
89
|
* fetch team
|
|
@@ -91,11 +91,11 @@ export declare function getFetchCustomERC20SymbolQueryOptions(chainId: number |
|
|
|
91
91
|
* @param {string} __to - string
|
|
92
92
|
* @returns {string} __output0 - address
|
|
93
93
|
*/
|
|
94
|
-
export declare function fetchCustomERC20Team(chainId: number, __to: string):
|
|
94
|
+
export declare function fetchCustomERC20Team(chainId: number, __to: string): Promise<string>;
|
|
95
95
|
export declare function getFetchCustomERC20TeamQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
96
96
|
queryKey: (string | number | undefined)[];
|
|
97
97
|
enabled: boolean;
|
|
98
|
-
queryFn: () =>
|
|
98
|
+
queryFn: () => Promise<string>;
|
|
99
99
|
};
|
|
100
100
|
/**
|
|
101
101
|
* fetch totalSupply
|
|
@@ -103,11 +103,11 @@ export declare function getFetchCustomERC20TeamQueryOptions(chainId: number | un
|
|
|
103
103
|
* @param {string} __to - string
|
|
104
104
|
* @returns {bigint} __output0 - uint256
|
|
105
105
|
*/
|
|
106
|
-
export declare function fetchCustomERC20TotalSupply(chainId: number, __to: string):
|
|
106
|
+
export declare function fetchCustomERC20TotalSupply(chainId: number, __to: string): Promise<bigint>;
|
|
107
107
|
export declare function getFetchCustomERC20TotalSupplyQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
108
108
|
queryKey: (string | number | undefined)[];
|
|
109
109
|
enabled: boolean;
|
|
110
|
-
queryFn: () =>
|
|
110
|
+
queryFn: () => Promise<bigint>;
|
|
111
111
|
};
|
|
112
112
|
/**
|
|
113
113
|
* fetch tradeBurnRatio
|
|
@@ -115,11 +115,11 @@ export declare function getFetchCustomERC20TotalSupplyQueryOptions(chainId: numb
|
|
|
115
115
|
* @param {string} __to - string
|
|
116
116
|
* @returns {bigint} __output0 - uint256
|
|
117
117
|
*/
|
|
118
|
-
export declare function fetchCustomERC20TradeBurnRatio(chainId: number, __to: string):
|
|
118
|
+
export declare function fetchCustomERC20TradeBurnRatio(chainId: number, __to: string): Promise<bigint>;
|
|
119
119
|
export declare function getFetchCustomERC20TradeBurnRatioQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
120
120
|
queryKey: (string | number | undefined)[];
|
|
121
121
|
enabled: boolean;
|
|
122
|
-
queryFn: () =>
|
|
122
|
+
queryFn: () => Promise<bigint>;
|
|
123
123
|
};
|
|
124
124
|
/**
|
|
125
125
|
* fetch tradeFeeRatio
|
|
@@ -127,11 +127,11 @@ export declare function getFetchCustomERC20TradeBurnRatioQueryOptions(chainId: n
|
|
|
127
127
|
* @param {string} __to - string
|
|
128
128
|
* @returns {bigint} __output0 - uint256
|
|
129
129
|
*/
|
|
130
|
-
export declare function fetchCustomERC20TradeFeeRatio(chainId: number, __to: string):
|
|
130
|
+
export declare function fetchCustomERC20TradeFeeRatio(chainId: number, __to: string): Promise<bigint>;
|
|
131
131
|
export declare function getFetchCustomERC20TradeFeeRatioQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
132
132
|
queryKey: (string | number | undefined)[];
|
|
133
133
|
enabled: boolean;
|
|
134
|
-
queryFn: () =>
|
|
134
|
+
queryFn: () => Promise<bigint>;
|
|
135
135
|
};
|
|
136
136
|
/**
|
|
137
137
|
* encode abandonOwnership
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
* @param {string} __to - string
|
|
5
5
|
* @returns {string} __output0 - address
|
|
6
6
|
*/
|
|
7
|
-
export declare function fetchCustomMintableERC20_NEW_OWNER_(chainId: number, __to: string):
|
|
7
|
+
export declare function fetchCustomMintableERC20_NEW_OWNER_(chainId: number, __to: string): Promise<string>;
|
|
8
8
|
export declare function getFetchCustomMintableERC20_NEW_OWNER_QueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
9
9
|
queryKey: (string | number | undefined)[];
|
|
10
10
|
enabled: boolean;
|
|
11
|
-
queryFn: () =>
|
|
11
|
+
queryFn: () => Promise<string>;
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
14
|
* fetch _OWNER_
|
|
@@ -16,11 +16,11 @@ export declare function getFetchCustomMintableERC20_NEW_OWNER_QueryOptions(chain
|
|
|
16
16
|
* @param {string} __to - string
|
|
17
17
|
* @returns {string} __output0 - address
|
|
18
18
|
*/
|
|
19
|
-
export declare function fetchCustomMintableERC20_OWNER_(chainId: number, __to: string):
|
|
19
|
+
export declare function fetchCustomMintableERC20_OWNER_(chainId: number, __to: string): Promise<string>;
|
|
20
20
|
export declare function getFetchCustomMintableERC20_OWNER_QueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
21
21
|
queryKey: (string | number | undefined)[];
|
|
22
22
|
enabled: boolean;
|
|
23
|
-
queryFn: () =>
|
|
23
|
+
queryFn: () => Promise<string>;
|
|
24
24
|
};
|
|
25
25
|
/**
|
|
26
26
|
* fetch allowance
|
|
@@ -30,11 +30,11 @@ export declare function getFetchCustomMintableERC20_OWNER_QueryOptions(chainId:
|
|
|
30
30
|
* @param {string} spender - address
|
|
31
31
|
* @returns {bigint} __output0 - uint256
|
|
32
32
|
*/
|
|
33
|
-
export declare function fetchCustomMintableERC20Allowance(chainId: number, __to: string, owner: string, spender: string):
|
|
33
|
+
export declare function fetchCustomMintableERC20Allowance(chainId: number, __to: string, owner: string, spender: string): Promise<bigint>;
|
|
34
34
|
export declare function getFetchCustomMintableERC20AllowanceQueryOptions(chainId: number | undefined, __to: string | undefined, owner: string | undefined, spender: string | undefined): {
|
|
35
35
|
queryKey: (string | number | undefined)[];
|
|
36
36
|
enabled: boolean;
|
|
37
|
-
queryFn: () =>
|
|
37
|
+
queryFn: () => Promise<bigint>;
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
40
|
* fetch balanceOf
|
|
@@ -43,11 +43,11 @@ export declare function getFetchCustomMintableERC20AllowanceQueryOptions(chainId
|
|
|
43
43
|
* @param {string} owner - address
|
|
44
44
|
* @returns {bigint} balance - uint256
|
|
45
45
|
*/
|
|
46
|
-
export declare function fetchCustomMintableERC20BalanceOf(chainId: number, __to: string, owner: string):
|
|
46
|
+
export declare function fetchCustomMintableERC20BalanceOf(chainId: number, __to: string, owner: string): Promise<bigint>;
|
|
47
47
|
export declare function getFetchCustomMintableERC20BalanceOfQueryOptions(chainId: number | undefined, __to: string | undefined, owner: string | undefined): {
|
|
48
48
|
queryKey: (string | number | undefined)[];
|
|
49
49
|
enabled: boolean;
|
|
50
|
-
queryFn: () =>
|
|
50
|
+
queryFn: () => Promise<bigint>;
|
|
51
51
|
};
|
|
52
52
|
/**
|
|
53
53
|
* fetch decimals
|
|
@@ -55,11 +55,11 @@ export declare function getFetchCustomMintableERC20BalanceOfQueryOptions(chainId
|
|
|
55
55
|
* @param {string} __to - string
|
|
56
56
|
* @returns {bigint} __output0 - uint8
|
|
57
57
|
*/
|
|
58
|
-
export declare function fetchCustomMintableERC20Decimals(chainId: number, __to: string):
|
|
58
|
+
export declare function fetchCustomMintableERC20Decimals(chainId: number, __to: string): Promise<bigint>;
|
|
59
59
|
export declare function getFetchCustomMintableERC20DecimalsQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
60
60
|
queryKey: (string | number | undefined)[];
|
|
61
61
|
enabled: boolean;
|
|
62
|
-
queryFn: () =>
|
|
62
|
+
queryFn: () => Promise<bigint>;
|
|
63
63
|
};
|
|
64
64
|
/**
|
|
65
65
|
* fetch name
|
|
@@ -67,11 +67,11 @@ export declare function getFetchCustomMintableERC20DecimalsQueryOptions(chainId:
|
|
|
67
67
|
* @param {string} __to - string
|
|
68
68
|
* @returns {string} __output0 - string
|
|
69
69
|
*/
|
|
70
|
-
export declare function fetchCustomMintableERC20Name(chainId: number, __to: string):
|
|
70
|
+
export declare function fetchCustomMintableERC20Name(chainId: number, __to: string): Promise<string>;
|
|
71
71
|
export declare function getFetchCustomMintableERC20NameQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
72
72
|
queryKey: (string | number | undefined)[];
|
|
73
73
|
enabled: boolean;
|
|
74
|
-
queryFn: () =>
|
|
74
|
+
queryFn: () => Promise<string>;
|
|
75
75
|
};
|
|
76
76
|
/**
|
|
77
77
|
* fetch symbol
|
|
@@ -79,11 +79,11 @@ export declare function getFetchCustomMintableERC20NameQueryOptions(chainId: num
|
|
|
79
79
|
* @param {string} __to - string
|
|
80
80
|
* @returns {string} __output0 - string
|
|
81
81
|
*/
|
|
82
|
-
export declare function fetchCustomMintableERC20Symbol(chainId: number, __to: string):
|
|
82
|
+
export declare function fetchCustomMintableERC20Symbol(chainId: number, __to: string): Promise<string>;
|
|
83
83
|
export declare function getFetchCustomMintableERC20SymbolQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
84
84
|
queryKey: (string | number | undefined)[];
|
|
85
85
|
enabled: boolean;
|
|
86
|
-
queryFn: () =>
|
|
86
|
+
queryFn: () => Promise<string>;
|
|
87
87
|
};
|
|
88
88
|
/**
|
|
89
89
|
* fetch team
|
|
@@ -91,11 +91,11 @@ export declare function getFetchCustomMintableERC20SymbolQueryOptions(chainId: n
|
|
|
91
91
|
* @param {string} __to - string
|
|
92
92
|
* @returns {string} __output0 - address
|
|
93
93
|
*/
|
|
94
|
-
export declare function fetchCustomMintableERC20Team(chainId: number, __to: string):
|
|
94
|
+
export declare function fetchCustomMintableERC20Team(chainId: number, __to: string): Promise<string>;
|
|
95
95
|
export declare function getFetchCustomMintableERC20TeamQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
96
96
|
queryKey: (string | number | undefined)[];
|
|
97
97
|
enabled: boolean;
|
|
98
|
-
queryFn: () =>
|
|
98
|
+
queryFn: () => Promise<string>;
|
|
99
99
|
};
|
|
100
100
|
/**
|
|
101
101
|
* fetch totalSupply
|
|
@@ -103,11 +103,11 @@ export declare function getFetchCustomMintableERC20TeamQueryOptions(chainId: num
|
|
|
103
103
|
* @param {string} __to - string
|
|
104
104
|
* @returns {bigint} __output0 - uint256
|
|
105
105
|
*/
|
|
106
|
-
export declare function fetchCustomMintableERC20TotalSupply(chainId: number, __to: string):
|
|
106
|
+
export declare function fetchCustomMintableERC20TotalSupply(chainId: number, __to: string): Promise<bigint>;
|
|
107
107
|
export declare function getFetchCustomMintableERC20TotalSupplyQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
108
108
|
queryKey: (string | number | undefined)[];
|
|
109
109
|
enabled: boolean;
|
|
110
|
-
queryFn: () =>
|
|
110
|
+
queryFn: () => Promise<bigint>;
|
|
111
111
|
};
|
|
112
112
|
/**
|
|
113
113
|
* fetch tradeBurnRatio
|
|
@@ -115,11 +115,11 @@ export declare function getFetchCustomMintableERC20TotalSupplyQueryOptions(chain
|
|
|
115
115
|
* @param {string} __to - string
|
|
116
116
|
* @returns {bigint} __output0 - uint256
|
|
117
117
|
*/
|
|
118
|
-
export declare function fetchCustomMintableERC20TradeBurnRatio(chainId: number, __to: string):
|
|
118
|
+
export declare function fetchCustomMintableERC20TradeBurnRatio(chainId: number, __to: string): Promise<bigint>;
|
|
119
119
|
export declare function getFetchCustomMintableERC20TradeBurnRatioQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
120
120
|
queryKey: (string | number | undefined)[];
|
|
121
121
|
enabled: boolean;
|
|
122
|
-
queryFn: () =>
|
|
122
|
+
queryFn: () => Promise<bigint>;
|
|
123
123
|
};
|
|
124
124
|
/**
|
|
125
125
|
* fetch tradeFeeRatio
|
|
@@ -127,11 +127,11 @@ export declare function getFetchCustomMintableERC20TradeBurnRatioQueryOptions(ch
|
|
|
127
127
|
* @param {string} __to - string
|
|
128
128
|
* @returns {bigint} __output0 - uint256
|
|
129
129
|
*/
|
|
130
|
-
export declare function fetchCustomMintableERC20TradeFeeRatio(chainId: number, __to: string):
|
|
130
|
+
export declare function fetchCustomMintableERC20TradeFeeRatio(chainId: number, __to: string): Promise<bigint>;
|
|
131
131
|
export declare function getFetchCustomMintableERC20TradeFeeRatioQueryOptions(chainId: number | undefined, __to: string | undefined): {
|
|
132
132
|
queryKey: (string | number | undefined)[];
|
|
133
133
|
enabled: boolean;
|
|
134
|
-
queryFn: () =>
|
|
134
|
+
queryFn: () => Promise<bigint>;
|
|
135
135
|
};
|
|
136
136
|
/**
|
|
137
137
|
* encode abandonOwnership
|
|
@@ -4,44 +4,44 @@ export declare function getD3ProxyContractAddressByChainId(chainId: number): str
|
|
|
4
4
|
* @param {number} chainId - number
|
|
5
5
|
* @returns {string} __output0 - address
|
|
6
6
|
*/
|
|
7
|
-
export declare function fetchD3Proxy_D3_VAULT_(chainId: number):
|
|
7
|
+
export declare function fetchD3Proxy_D3_VAULT_(chainId: number): Promise<string>;
|
|
8
8
|
export declare function getFetchD3Proxy_D3_VAULT_QueryOptions(chainId: number | undefined): {
|
|
9
9
|
queryKey: (string | number | undefined)[];
|
|
10
10
|
enabled: boolean;
|
|
11
|
-
queryFn: () =>
|
|
11
|
+
queryFn: () => Promise<string>;
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
14
|
* fetch _DODO_APPROVE_PROXY_
|
|
15
15
|
* @param {number} chainId - number
|
|
16
16
|
* @returns {string} __output0 - address
|
|
17
17
|
*/
|
|
18
|
-
export declare function fetchD3Proxy_DODO_APPROVE_PROXY_(chainId: number):
|
|
18
|
+
export declare function fetchD3Proxy_DODO_APPROVE_PROXY_(chainId: number): Promise<string>;
|
|
19
19
|
export declare function getFetchD3Proxy_DODO_APPROVE_PROXY_QueryOptions(chainId: number | undefined): {
|
|
20
20
|
queryKey: (string | number | undefined)[];
|
|
21
21
|
enabled: boolean;
|
|
22
|
-
queryFn: () =>
|
|
22
|
+
queryFn: () => Promise<string>;
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
25
25
|
* fetch _ETH_ADDRESS_
|
|
26
26
|
* @param {number} chainId - number
|
|
27
27
|
* @returns {string} __output0 - address
|
|
28
28
|
*/
|
|
29
|
-
export declare function fetchD3Proxy_ETH_ADDRESS_(chainId: number):
|
|
29
|
+
export declare function fetchD3Proxy_ETH_ADDRESS_(chainId: number): Promise<string>;
|
|
30
30
|
export declare function getFetchD3Proxy_ETH_ADDRESS_QueryOptions(chainId: number | undefined): {
|
|
31
31
|
queryKey: (string | number | undefined)[];
|
|
32
32
|
enabled: boolean;
|
|
33
|
-
queryFn: () =>
|
|
33
|
+
queryFn: () => Promise<string>;
|
|
34
34
|
};
|
|
35
35
|
/**
|
|
36
36
|
* fetch _WETH_
|
|
37
37
|
* @param {number} chainId - number
|
|
38
38
|
* @returns {string} __output0 - address
|
|
39
39
|
*/
|
|
40
|
-
export declare function fetchD3Proxy_WETH_(chainId: number):
|
|
40
|
+
export declare function fetchD3Proxy_WETH_(chainId: number): Promise<string>;
|
|
41
41
|
export declare function getFetchD3Proxy_WETH_QueryOptions(chainId: number | undefined): {
|
|
42
42
|
queryKey: (string | number | undefined)[];
|
|
43
43
|
enabled: boolean;
|
|
44
|
-
queryFn: () =>
|
|
44
|
+
queryFn: () => Promise<string>;
|
|
45
45
|
};
|
|
46
46
|
/**
|
|
47
47
|
* encode buyTokens
|