@dodoex/dodo-contract-request 1.0.0 → 1.1.1
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/UniswapV2Factory.json +1 -0
- package/.cache/contract-info/UniswapV2Router02.json +1 -0
- package/.env.sample +1 -1
- package/.releaserc.json +4 -11
- package/CHANGELOG.md +14 -0
- package/contract-config/sepolia.json +6 -3
- package/dist/config.js +1 -1
- package/dist/index.js +1 -1
- package/dist/types/config/sepolia.d.ts +2 -0
- package/dist/types/contract/BuyoutModel.d.ts +19 -19
- package/dist/types/contract/CP.d.ts +47 -53
- package/dist/types/contract/CloneFactory.d.ts +1 -1
- package/dist/types/contract/CrowdPoolingFactory.d.ts +39 -42
- package/dist/types/contract/CustomERC20.d.ts +27 -27
- package/dist/types/contract/CustomMintableERC20.d.ts +31 -31
- package/dist/types/contract/D3Proxy.d.ts +26 -26
- package/dist/types/contract/D3Vault.d.ts +105 -144
- package/dist/types/contract/DODOApprove.d.ts +15 -15
- package/dist/types/contract/DODOApproveProxy.d.ts +17 -17
- package/dist/types/contract/DODOCalleeHelper.d.ts +12 -12
- package/dist/types/contract/DODOCirculationHelper.d.ts +12 -12
- package/dist/types/contract/DODOCpProxy.d.ts +13 -12
- package/dist/types/contract/DODOCpProxyWithoutGlobalQuota.d.ts +12 -12
- package/dist/types/contract/DODODppProxy.d.ts +17 -17
- package/dist/types/contract/DODODspProxy.d.ts +27 -27
- package/dist/types/contract/DODODspProxyWithoutGSP.d.ts +17 -17
- package/dist/types/contract/DODOIncentive.d.ts +23 -29
- package/dist/types/contract/DODOMineV2Factory.d.ts +18 -18
- package/dist/types/contract/DODOMineV3Proxy.d.ts +19 -18
- package/dist/types/contract/DODOMineV3ProxyWithoutPlatform.d.ts +18 -18
- package/dist/types/contract/DODOMineV3Registry.d.ts +13 -13
- package/dist/types/contract/DODONFT.d.ts +30 -30
- package/dist/types/contract/DODONFT1155.d.ts +23 -23
- package/dist/types/contract/DODONFTApprove.d.ts +22 -22
- package/dist/types/contract/DODONFTPoolProxy.d.ts +41 -41
- package/dist/types/contract/DODONFTProxy.d.ts +28 -28
- package/dist/types/contract/DODONFTRegistry.d.ts +14 -17
- package/dist/types/contract/DODONFTRouteHelper.d.ts +2 -2
- package/dist/types/contract/DODOSellHelper.d.ts +2 -2
- package/dist/types/contract/DODOStarterProxy.d.ts +6 -6
- package/dist/types/contract/DODOV1.d.ts +97 -100
- package/dist/types/contract/DODOV1Adapter.d.ts +3 -3
- package/dist/types/contract/DODOV1PmmHelper.d.ts +1 -1
- package/dist/types/contract/DODOV1Proxy.d.ts +14 -14
- package/dist/types/contract/DODOV2Proxy02.d.ts +93 -93
- package/dist/types/contract/DODOV2RouteHelper.d.ts +4 -4
- package/dist/types/contract/DPPAdvanced.d.ts +50 -82
- package/dist/types/contract/DPPAdvancedAdmin.d.ts +25 -25
- package/dist/types/contract/DPPFactory.d.ts +30 -33
- package/dist/types/contract/DSP.d.ts +61 -93
- package/dist/types/contract/DSPFactory.d.ts +21 -24
- package/dist/types/contract/DVM.d.ts +58 -86
- package/dist/types/contract/DVMFactory.d.ts +21 -24
- package/dist/types/contract/ERC20.d.ts +15 -15
- package/dist/types/contract/ERC20Helper.d.ts +4 -23
- package/dist/types/contract/ERC20MineV3.d.ts +38 -48
- package/dist/types/contract/ERC20V3Factory.d.ts +33 -37
- package/dist/types/contract/FeeRateDIP3Impl.d.ts +25 -34
- package/dist/types/contract/FeeRateModel.d.ts +8 -8
- package/dist/types/contract/GSP.d.ts +82 -117
- package/dist/types/contract/GSPFactory.d.ts +23 -26
- package/dist/types/contract/InitializableERC20.d.ts +16 -16
- package/dist/types/contract/LimitOrder.d.ts +38 -38
- package/dist/types/contract/LimitOrderBot.d.ts +18 -18
- package/dist/types/contract/MulticallWithValid.d.ts +8 -8
- package/dist/types/contract/PermissionManager.d.ts +13 -13
- package/dist/types/contract/UniswapV2Factory.d.ts +62 -0
- package/dist/types/contract/UniswapV2Router02.d.ts +272 -0
- package/dist/types/contract/dodoTeam.d.ts +46 -49
- package/dist/types/contract/vDODOToken.d.ts +55 -67
- package/dist/types/contractRequests.d.ts +1 -1
- package/dist/types/index.d.ts +2 -0
- package/package.json +3 -3
- package/src/config/sepolia.ts +1 -1
- package/src/contract/BuyoutModel.ts +10 -10
- package/src/contract/CP.ts +5 -5
- package/src/contract/CrowdPoolingFactory.ts +15 -15
- package/src/contract/CustomERC20.ts +11 -11
- package/src/contract/CustomMintableERC20.ts +15 -15
- package/src/contract/D3Proxy.ts +20 -20
- package/src/contract/D3Vault.ts +31 -31
- package/src/contract/DODOApprove.ts +2 -2
- package/src/contract/DODOApproveProxy.ts +2 -2
- package/src/contract/DODOCalleeHelper.ts +11 -11
- package/src/contract/DODOCpProxy.ts +13 -12
- package/src/contract/DODOCpProxyWithoutGlobalQuota.ts +9 -9
- package/src/contract/DODODppProxy.ts +14 -14
- package/src/contract/DODODspProxy.ts +23 -23
- package/src/contract/DODODspProxyWithoutGSP.ts +14 -14
- package/src/contract/DODOIncentive.ts +6 -6
- package/src/contract/DODOMineV2Factory.ts +4 -4
- package/src/contract/DODOMineV3Proxy.ts +12 -11
- package/src/contract/DODOMineV3ProxyWithoutPlatform.ts +8 -8
- package/src/contract/DODONFT.ts +10 -10
- package/src/contract/DODONFT1155.ts +11 -11
- package/src/contract/DODONFTApprove.ts +8 -8
- package/src/contract/DODONFTPoolProxy.ts +24 -24
- package/src/contract/DODONFTProxy.ts +6 -6
- package/src/contract/DODOStarterProxy.ts +4 -4
- package/src/contract/DODOV1.ts +41 -41
- package/src/contract/DODOV1Proxy.ts +10 -10
- package/src/contract/DODOV2Proxy02.ts +75 -75
- package/src/contract/DPPAdvanced.ts +17 -17
- package/src/contract/DPPAdvancedAdmin.ts +12 -12
- package/src/contract/DPPFactory.ts +4 -4
- package/src/contract/DSP.ts +22 -22
- package/src/contract/DSPFactory.ts +4 -4
- package/src/contract/DVM.ts +22 -22
- package/src/contract/DVMFactory.ts +4 -4
- package/src/contract/ERC20.ts +8 -8
- package/src/contract/ERC20MineV3.ts +19 -19
- package/src/contract/ERC20V3Factory.ts +15 -15
- package/src/contract/FeeRateDIP3Impl.ts +8 -8
- package/src/contract/GSP.ts +34 -34
- package/src/contract/GSPFactory.ts +6 -6
- package/src/contract/InitializableERC20.ts +9 -9
- package/src/contract/LimitOrder.ts +9 -9
- package/src/contract/LimitOrderBot.ts +5 -5
- package/src/contract/UniswapV2Factory.ts +122 -0
- package/src/contract/UniswapV2Router02.ts +373 -0
- package/src/contract/dodoTeam.ts +24 -24
- package/src/contract/vDODOToken.ts +18 -18
- package/src/index.ts +2 -0
|
@@ -4,13 +4,13 @@ export declare function getDodoTeamContractAddressByChainId(chainId: number): st
|
|
|
4
4
|
* @param {number} chainId - number
|
|
5
5
|
* @returns {string} __output0 - string
|
|
6
6
|
*/
|
|
7
|
-
export declare function fetchDodoTeamNAME(chainId: number):
|
|
7
|
+
export declare function fetchDodoTeamNAME(chainId: number): any;
|
|
8
8
|
/**
|
|
9
9
|
* fetch VERSION
|
|
10
10
|
* @param {number} chainId - number
|
|
11
11
|
* @returns {string} __output0 - string
|
|
12
12
|
*/
|
|
13
|
-
export declare function fetchDodoTeamVERSION(chainId: number):
|
|
13
|
+
export declare function fetchDodoTeamVERSION(chainId: number): any;
|
|
14
14
|
/**
|
|
15
15
|
* fetch approvedHashes
|
|
16
16
|
* @param {number} chainId - number
|
|
@@ -18,13 +18,13 @@ export declare function fetchDodoTeamVERSION(chainId: number): Promise<string>;
|
|
|
18
18
|
* @param {string} __input2 - bytes32
|
|
19
19
|
* @returns {bigint} __output0 - uint256
|
|
20
20
|
*/
|
|
21
|
-
export declare function fetchDodoTeamApprovedHashes(chainId: number, __input1: string, __input2: string):
|
|
21
|
+
export declare function fetchDodoTeamApprovedHashes(chainId: number, __input1: string, __input2: string): any;
|
|
22
22
|
/**
|
|
23
23
|
* fetch domainSeparator
|
|
24
24
|
* @param {number} chainId - number
|
|
25
25
|
* @returns {string} __output0 - bytes32
|
|
26
26
|
*/
|
|
27
|
-
export declare function fetchDodoTeamDomainSeparator(chainId: number):
|
|
27
|
+
export declare function fetchDodoTeamDomainSeparator(chainId: number): any;
|
|
28
28
|
/**
|
|
29
29
|
* fetch encodeTransactionData
|
|
30
30
|
* @param {number} chainId - number
|
|
@@ -40,20 +40,20 @@ export declare function fetchDodoTeamDomainSeparator(chainId: number): Promise<s
|
|
|
40
40
|
* @param {number} _nonce - uint256
|
|
41
41
|
* @returns {string} __output0 - bytes
|
|
42
42
|
*/
|
|
43
|
-
export declare function fetchDodoTeamEncodeTransactionData(chainId: number, to: string, value: number, data: string, operation: number, safeTxGas: number, baseGas: number, gasPrice: number, gasToken: string, refundReceiver: string, _nonce: number):
|
|
43
|
+
export declare function fetchDodoTeamEncodeTransactionData(chainId: number, to: string, value: number, data: string, operation: number, safeTxGas: number, baseGas: number, gasPrice: number, gasToken: string, refundReceiver: string, _nonce: number): any;
|
|
44
44
|
/**
|
|
45
45
|
* fetch getMessageHash
|
|
46
46
|
* @param {number} chainId - number
|
|
47
47
|
* @param {string} message - bytes
|
|
48
48
|
* @returns {string} __output0 - bytes32
|
|
49
49
|
*/
|
|
50
|
-
export declare function fetchDodoTeamGetMessageHash(chainId: number, message: string):
|
|
50
|
+
export declare function fetchDodoTeamGetMessageHash(chainId: number, message: string): any;
|
|
51
51
|
/**
|
|
52
52
|
* fetch getModules
|
|
53
53
|
* @param {number} chainId - number
|
|
54
54
|
* @returns {Array<string>} __output0 - address[]
|
|
55
55
|
*/
|
|
56
|
-
export declare function fetchDodoTeamGetModules(chainId: number):
|
|
56
|
+
export declare function fetchDodoTeamGetModules(chainId: number): any;
|
|
57
57
|
/**
|
|
58
58
|
* fetch getModulesPaginated
|
|
59
59
|
* @param {number} chainId - number
|
|
@@ -62,22 +62,19 @@ export declare function fetchDodoTeamGetModules(chainId: number): Promise<string
|
|
|
62
62
|
* @returns {Array<string>} array - address[]
|
|
63
63
|
* @returns {string} next - address
|
|
64
64
|
*/
|
|
65
|
-
export declare function fetchDodoTeamGetModulesPaginated(chainId: number, start: string, pageSize: number):
|
|
66
|
-
array: Array<string>;
|
|
67
|
-
next: string;
|
|
68
|
-
}>;
|
|
65
|
+
export declare function fetchDodoTeamGetModulesPaginated(chainId: number, start: string, pageSize: number): any;
|
|
69
66
|
/**
|
|
70
67
|
* fetch getOwners
|
|
71
68
|
* @param {number} chainId - number
|
|
72
69
|
* @returns {Array<string>} __output0 - address[]
|
|
73
70
|
*/
|
|
74
|
-
export declare function fetchDodoTeamGetOwners(chainId: number):
|
|
71
|
+
export declare function fetchDodoTeamGetOwners(chainId: number): any;
|
|
75
72
|
/**
|
|
76
73
|
* fetch getThreshold
|
|
77
74
|
* @param {number} chainId - number
|
|
78
75
|
* @returns {bigint} __output0 - uint256
|
|
79
76
|
*/
|
|
80
|
-
export declare function fetchDodoTeamGetThreshold(chainId: number):
|
|
77
|
+
export declare function fetchDodoTeamGetThreshold(chainId: number): any;
|
|
81
78
|
/**
|
|
82
79
|
* fetch getTransactionHash
|
|
83
80
|
* @param {number} chainId - number
|
|
@@ -93,147 +90,147 @@ export declare function fetchDodoTeamGetThreshold(chainId: number): Promise<bigi
|
|
|
93
90
|
* @param {number} _nonce - uint256
|
|
94
91
|
* @returns {string} __output0 - bytes32
|
|
95
92
|
*/
|
|
96
|
-
export declare function fetchDodoTeamGetTransactionHash(chainId: number, to: string, value: number, data: string, operation: number, safeTxGas: number, baseGas: number, gasPrice: number, gasToken: string, refundReceiver: string, _nonce: number):
|
|
93
|
+
export declare function fetchDodoTeamGetTransactionHash(chainId: number, to: string, value: number, data: string, operation: number, safeTxGas: number, baseGas: number, gasPrice: number, gasToken: string, refundReceiver: string, _nonce: number): any;
|
|
97
94
|
/**
|
|
98
95
|
* fetch isOwner
|
|
99
96
|
* @param {number} chainId - number
|
|
100
97
|
* @param {string} owner - address
|
|
101
98
|
* @returns {boolean} __output0 - bool
|
|
102
99
|
*/
|
|
103
|
-
export declare function fetchDodoTeamIsOwner(chainId: number, owner: string):
|
|
100
|
+
export declare function fetchDodoTeamIsOwner(chainId: number, owner: string): any;
|
|
104
101
|
/**
|
|
105
102
|
* fetch nonce
|
|
106
103
|
* @param {number} chainId - number
|
|
107
104
|
* @returns {bigint} __output0 - uint256
|
|
108
105
|
*/
|
|
109
|
-
export declare function fetchDodoTeamNonce(chainId: number):
|
|
106
|
+
export declare function fetchDodoTeamNonce(chainId: number): any;
|
|
110
107
|
/**
|
|
111
108
|
* fetch signedMessages
|
|
112
109
|
* @param {number} chainId - number
|
|
113
110
|
* @param {string} __input1 - bytes32
|
|
114
111
|
* @returns {bigint} __output0 - uint256
|
|
115
112
|
*/
|
|
116
|
-
export declare function fetchDodoTeamSignedMessages(chainId: number, __input1: string):
|
|
113
|
+
export declare function fetchDodoTeamSignedMessages(chainId: number, __input1: string): any;
|
|
117
114
|
/**
|
|
118
115
|
* encode addOwnerWithThreshold
|
|
119
116
|
* @param {string} owner - address
|
|
120
|
-
* @param {
|
|
117
|
+
* @param {string} _threshold - uint256
|
|
121
118
|
* @returns {string} encode data
|
|
122
119
|
*/
|
|
123
|
-
export declare function encodeDodoTeamAddOwnerWithThreshold(owner: string, _threshold:
|
|
120
|
+
export declare function encodeDodoTeamAddOwnerWithThreshold(owner: string, _threshold: string): any;
|
|
124
121
|
/**
|
|
125
122
|
* encode approveHash
|
|
126
123
|
* @param {string} hashToApprove - bytes32
|
|
127
124
|
* @returns {string} encode data
|
|
128
125
|
*/
|
|
129
|
-
export declare function encodeDodoTeamApproveHash(hashToApprove: string):
|
|
126
|
+
export declare function encodeDodoTeamApproveHash(hashToApprove: string): any;
|
|
130
127
|
/**
|
|
131
128
|
* encode changeMasterCopy
|
|
132
129
|
* @param {string} _masterCopy - address
|
|
133
130
|
* @returns {string} encode data
|
|
134
131
|
*/
|
|
135
|
-
export declare function encodeDodoTeamChangeMasterCopy(_masterCopy: string):
|
|
132
|
+
export declare function encodeDodoTeamChangeMasterCopy(_masterCopy: string): any;
|
|
136
133
|
/**
|
|
137
134
|
* encode changeThreshold
|
|
138
|
-
* @param {
|
|
135
|
+
* @param {string} _threshold - uint256
|
|
139
136
|
* @returns {string} encode data
|
|
140
137
|
*/
|
|
141
|
-
export declare function encodeDodoTeamChangeThreshold(_threshold:
|
|
138
|
+
export declare function encodeDodoTeamChangeThreshold(_threshold: string): any;
|
|
142
139
|
/**
|
|
143
140
|
* encode disableModule
|
|
144
141
|
* @param {string} prevModule - address
|
|
145
142
|
* @param {string} module - address
|
|
146
143
|
* @returns {string} encode data
|
|
147
144
|
*/
|
|
148
|
-
export declare function encodeDodoTeamDisableModule(prevModule: string, module: string):
|
|
145
|
+
export declare function encodeDodoTeamDisableModule(prevModule: string, module: string): any;
|
|
149
146
|
/**
|
|
150
147
|
* encode enableModule
|
|
151
148
|
* @param {string} module - address
|
|
152
149
|
* @returns {string} encode data
|
|
153
150
|
*/
|
|
154
|
-
export declare function encodeDodoTeamEnableModule(module: string):
|
|
151
|
+
export declare function encodeDodoTeamEnableModule(module: string): any;
|
|
155
152
|
/**
|
|
156
153
|
* encode execTransaction
|
|
157
154
|
* @param {string} to - address
|
|
158
|
-
* @param {
|
|
155
|
+
* @param {string} value - uint256
|
|
159
156
|
* @param {string} data - bytes
|
|
160
|
-
* @param {
|
|
161
|
-
* @param {
|
|
162
|
-
* @param {
|
|
163
|
-
* @param {
|
|
157
|
+
* @param {string} operation - uint8
|
|
158
|
+
* @param {string} safeTxGas - uint256
|
|
159
|
+
* @param {string} baseGas - uint256
|
|
160
|
+
* @param {string} gasPrice - uint256
|
|
164
161
|
* @param {string} gasToken - address
|
|
165
162
|
* @param {string} refundReceiver - address
|
|
166
163
|
* @param {string} signatures - bytes
|
|
167
164
|
* @returns {string} encode data
|
|
168
165
|
*/
|
|
169
|
-
export declare function encodeDodoTeamExecTransaction(to: string, value:
|
|
166
|
+
export declare function encodeDodoTeamExecTransaction(to: string, value: string, data: string, operation: string, safeTxGas: string, baseGas: string, gasPrice: string, gasToken: string, refundReceiver: string, signatures: string): any;
|
|
170
167
|
/**
|
|
171
168
|
* encode execTransactionFromModule
|
|
172
169
|
* @param {string} to - address
|
|
173
|
-
* @param {
|
|
170
|
+
* @param {string} value - uint256
|
|
174
171
|
* @param {string} data - bytes
|
|
175
|
-
* @param {
|
|
172
|
+
* @param {string} operation - uint8
|
|
176
173
|
* @returns {string} encode data
|
|
177
174
|
*/
|
|
178
|
-
export declare function encodeDodoTeamExecTransactionFromModule(to: string, value:
|
|
175
|
+
export declare function encodeDodoTeamExecTransactionFromModule(to: string, value: string, data: string, operation: string): any;
|
|
179
176
|
/**
|
|
180
177
|
* encode execTransactionFromModuleReturnData
|
|
181
178
|
* @param {string} to - address
|
|
182
|
-
* @param {
|
|
179
|
+
* @param {string} value - uint256
|
|
183
180
|
* @param {string} data - bytes
|
|
184
|
-
* @param {
|
|
181
|
+
* @param {string} operation - uint8
|
|
185
182
|
* @returns {string} encode data
|
|
186
183
|
*/
|
|
187
|
-
export declare function encodeDodoTeamExecTransactionFromModuleReturnData(to: string, value:
|
|
184
|
+
export declare function encodeDodoTeamExecTransactionFromModuleReturnData(to: string, value: string, data: string, operation: string): any;
|
|
188
185
|
/**
|
|
189
186
|
* encode isValidSignature
|
|
190
187
|
* @param {string} _data - bytes
|
|
191
188
|
* @param {string} _signature - bytes
|
|
192
189
|
* @returns {string} encode data
|
|
193
190
|
*/
|
|
194
|
-
export declare function encodeDodoTeamIsValidSignature(_data: string, _signature: string):
|
|
191
|
+
export declare function encodeDodoTeamIsValidSignature(_data: string, _signature: string): any;
|
|
195
192
|
/**
|
|
196
193
|
* encode removeOwner
|
|
197
194
|
* @param {string} prevOwner - address
|
|
198
195
|
* @param {string} owner - address
|
|
199
|
-
* @param {
|
|
196
|
+
* @param {string} _threshold - uint256
|
|
200
197
|
* @returns {string} encode data
|
|
201
198
|
*/
|
|
202
|
-
export declare function encodeDodoTeamRemoveOwner(prevOwner: string, owner: string, _threshold:
|
|
199
|
+
export declare function encodeDodoTeamRemoveOwner(prevOwner: string, owner: string, _threshold: string): any;
|
|
203
200
|
/**
|
|
204
201
|
* encode requiredTxGas
|
|
205
202
|
* @param {string} to - address
|
|
206
|
-
* @param {
|
|
203
|
+
* @param {string} value - uint256
|
|
207
204
|
* @param {string} data - bytes
|
|
208
|
-
* @param {
|
|
205
|
+
* @param {string} operation - uint8
|
|
209
206
|
* @returns {string} encode data
|
|
210
207
|
*/
|
|
211
|
-
export declare function encodeDodoTeamRequiredTxGas(to: string, value:
|
|
208
|
+
export declare function encodeDodoTeamRequiredTxGas(to: string, value: string, data: string, operation: string): any;
|
|
212
209
|
/**
|
|
213
210
|
* encode setFallbackHandler
|
|
214
211
|
* @param {string} handler - address
|
|
215
212
|
* @returns {string} encode data
|
|
216
213
|
*/
|
|
217
|
-
export declare function encodeDodoTeamSetFallbackHandler(handler: string):
|
|
214
|
+
export declare function encodeDodoTeamSetFallbackHandler(handler: string): any;
|
|
218
215
|
/**
|
|
219
216
|
* encode setup
|
|
220
217
|
* @param {Array<string>} _owners - address[]
|
|
221
|
-
* @param {
|
|
218
|
+
* @param {string} _threshold - uint256
|
|
222
219
|
* @param {string} to - address
|
|
223
220
|
* @param {string} data - bytes
|
|
224
221
|
* @param {string} fallbackHandler - address
|
|
225
222
|
* @param {string} paymentToken - address
|
|
226
|
-
* @param {
|
|
223
|
+
* @param {string} payment - uint256
|
|
227
224
|
* @param {string} paymentReceiver - address
|
|
228
225
|
* @returns {string} encode data
|
|
229
226
|
*/
|
|
230
|
-
export declare function encodeDodoTeamSetup(_owners: Array<string>, _threshold:
|
|
227
|
+
export declare function encodeDodoTeamSetup(_owners: Array<string>, _threshold: string, to: string, data: string, fallbackHandler: string, paymentToken: string, payment: string, paymentReceiver: string): any;
|
|
231
228
|
/**
|
|
232
229
|
* encode signMessage
|
|
233
230
|
* @param {string} _data - bytes
|
|
234
231
|
* @returns {string} encode data
|
|
235
232
|
*/
|
|
236
|
-
export declare function encodeDodoTeamSignMessage(_data: string):
|
|
233
|
+
export declare function encodeDodoTeamSignMessage(_data: string): any;
|
|
237
234
|
/**
|
|
238
235
|
* encode swapOwner
|
|
239
236
|
* @param {string} prevOwner - address
|
|
@@ -241,4 +238,4 @@ export declare function encodeDodoTeamSignMessage(_data: string): string;
|
|
|
241
238
|
* @param {string} newOwner - address
|
|
242
239
|
* @returns {string} encode data
|
|
243
240
|
*/
|
|
244
|
-
export declare function encodeDodoTeamSwapOwner(prevOwner: string, oldOwner: string, newOwner: string):
|
|
241
|
+
export declare function encodeDodoTeamSwapOwner(prevOwner: string, oldOwner: string, newOwner: string): any;
|
|
@@ -4,97 +4,97 @@ export declare function getVDODOTokenContractAddressByChainId(chainId: number):
|
|
|
4
4
|
* @param {number} chainId - number
|
|
5
5
|
* @returns {boolean} __output0 - bool
|
|
6
6
|
*/
|
|
7
|
-
export declare function fetchVDODOToken_CAN_TRANSFER_(chainId: number):
|
|
7
|
+
export declare function fetchVDODOToken_CAN_TRANSFER_(chainId: number): any;
|
|
8
8
|
/**
|
|
9
9
|
* fetch _DODO_APPROVE_PROXY_
|
|
10
10
|
* @param {number} chainId - number
|
|
11
11
|
* @returns {string} __output0 - address
|
|
12
12
|
*/
|
|
13
|
-
export declare function fetchVDODOToken_DODO_APPROVE_PROXY_(chainId: number):
|
|
13
|
+
export declare function fetchVDODOToken_DODO_APPROVE_PROXY_(chainId: number): any;
|
|
14
14
|
/**
|
|
15
15
|
* fetch _DODO_CIRCULATION_HELPER_
|
|
16
16
|
* @param {number} chainId - number
|
|
17
17
|
* @returns {string} __output0 - address
|
|
18
18
|
*/
|
|
19
|
-
export declare function fetchVDODOToken_DODO_CIRCULATION_HELPER_(chainId: number):
|
|
19
|
+
export declare function fetchVDODOToken_DODO_CIRCULATION_HELPER_(chainId: number): any;
|
|
20
20
|
/**
|
|
21
21
|
* fetch _DODO_FEE_BURN_RATIO_
|
|
22
22
|
* @param {number} chainId - number
|
|
23
23
|
* @returns {bigint} __output0 - uint256
|
|
24
24
|
*/
|
|
25
|
-
export declare function fetchVDODOToken_DODO_FEE_BURN_RATIO_(chainId: number):
|
|
25
|
+
export declare function fetchVDODOToken_DODO_FEE_BURN_RATIO_(chainId: number): any;
|
|
26
26
|
/**
|
|
27
27
|
* fetch _DODO_PER_BLOCK_
|
|
28
28
|
* @param {number} chainId - number
|
|
29
29
|
* @returns {bigint} __output0 - uint256
|
|
30
30
|
*/
|
|
31
|
-
export declare function fetchVDODOToken_DODO_PER_BLOCK_(chainId: number):
|
|
31
|
+
export declare function fetchVDODOToken_DODO_PER_BLOCK_(chainId: number): any;
|
|
32
32
|
/**
|
|
33
33
|
* fetch _DODO_RATIO_
|
|
34
34
|
* @param {number} chainId - number
|
|
35
35
|
* @returns {bigint} __output0 - uint256
|
|
36
36
|
*/
|
|
37
|
-
export declare function fetchVDODOToken_DODO_RATIO_(chainId: number):
|
|
37
|
+
export declare function fetchVDODOToken_DODO_RATIO_(chainId: number): any;
|
|
38
38
|
/**
|
|
39
39
|
* fetch _DODO_TEAM_
|
|
40
40
|
* @param {number} chainId - number
|
|
41
41
|
* @returns {string} __output0 - address
|
|
42
42
|
*/
|
|
43
|
-
export declare function fetchVDODOToken_DODO_TEAM_(chainId: number):
|
|
43
|
+
export declare function fetchVDODOToken_DODO_TEAM_(chainId: number): any;
|
|
44
44
|
/**
|
|
45
45
|
* fetch _DODO_TOKEN_
|
|
46
46
|
* @param {number} chainId - number
|
|
47
47
|
* @returns {string} __output0 - address
|
|
48
48
|
*/
|
|
49
|
-
export declare function fetchVDODOToken_DODO_TOKEN_(chainId: number):
|
|
49
|
+
export declare function fetchVDODOToken_DODO_TOKEN_(chainId: number): any;
|
|
50
50
|
/**
|
|
51
51
|
* fetch _DOOD_GOV_
|
|
52
52
|
* @param {number} chainId - number
|
|
53
53
|
* @returns {string} __output0 - address
|
|
54
54
|
*/
|
|
55
|
-
export declare function fetchVDODOToken_DOOD_GOV_(chainId: number):
|
|
55
|
+
export declare function fetchVDODOToken_DOOD_GOV_(chainId: number): any;
|
|
56
56
|
/**
|
|
57
57
|
* fetch _LAST_REWARD_BLOCK_
|
|
58
58
|
* @param {number} chainId - number
|
|
59
59
|
* @returns {bigint} __output0 - uint32
|
|
60
60
|
*/
|
|
61
|
-
export declare function fetchVDODOToken_LAST_REWARD_BLOCK_(chainId: number):
|
|
61
|
+
export declare function fetchVDODOToken_LAST_REWARD_BLOCK_(chainId: number): any;
|
|
62
62
|
/**
|
|
63
63
|
* fetch _NEW_OWNER_
|
|
64
64
|
* @param {number} chainId - number
|
|
65
65
|
* @returns {string} __output0 - address
|
|
66
66
|
*/
|
|
67
|
-
export declare function fetchVDODOToken_NEW_OWNER_(chainId: number):
|
|
67
|
+
export declare function fetchVDODOToken_NEW_OWNER_(chainId: number): any;
|
|
68
68
|
/**
|
|
69
69
|
* fetch _OWNER_
|
|
70
70
|
* @param {number} chainId - number
|
|
71
71
|
* @returns {string} __output0 - address
|
|
72
72
|
*/
|
|
73
|
-
export declare function fetchVDODOToken_OWNER_(chainId: number):
|
|
73
|
+
export declare function fetchVDODOToken_OWNER_(chainId: number): any;
|
|
74
74
|
/**
|
|
75
75
|
* fetch _SUPERIOR_RATIO_
|
|
76
76
|
* @param {number} chainId - number
|
|
77
77
|
* @returns {bigint} __output0 - uint256
|
|
78
78
|
*/
|
|
79
|
-
export declare function fetchVDODOToken_SUPERIOR_RATIO_(chainId: number):
|
|
79
|
+
export declare function fetchVDODOToken_SUPERIOR_RATIO_(chainId: number): any;
|
|
80
80
|
/**
|
|
81
81
|
* fetch _TOTAL_BLOCK_DISTRIBUTION_
|
|
82
82
|
* @param {number} chainId - number
|
|
83
83
|
* @returns {bigint} __output0 - uint112
|
|
84
84
|
*/
|
|
85
|
-
export declare function fetchVDODOToken_TOTAL_BLOCK_DISTRIBUTION_(chainId: number):
|
|
85
|
+
export declare function fetchVDODOToken_TOTAL_BLOCK_DISTRIBUTION_(chainId: number): any;
|
|
86
86
|
/**
|
|
87
87
|
* fetch _TOTAL_BLOCK_REWARD_
|
|
88
88
|
* @param {number} chainId - number
|
|
89
89
|
* @returns {bigint} __output0 - uint256
|
|
90
90
|
*/
|
|
91
|
-
export declare function fetchVDODOToken_TOTAL_BLOCK_REWARD_(chainId: number):
|
|
91
|
+
export declare function fetchVDODOToken_TOTAL_BLOCK_REWARD_(chainId: number): any;
|
|
92
92
|
/**
|
|
93
93
|
* fetch _TOTAL_STAKING_POWER_
|
|
94
94
|
* @param {number} chainId - number
|
|
95
95
|
* @returns {bigint} __output0 - uint256
|
|
96
96
|
*/
|
|
97
|
-
export declare function fetchVDODOToken_TOTAL_STAKING_POWER_(chainId: number):
|
|
97
|
+
export declare function fetchVDODOToken_TOTAL_STAKING_POWER_(chainId: number): any;
|
|
98
98
|
/**
|
|
99
99
|
* fetch allowance
|
|
100
100
|
* @param {number} chainId - number
|
|
@@ -102,63 +102,60 @@ export declare function fetchVDODOToken_TOTAL_STAKING_POWER_(chainId: number): P
|
|
|
102
102
|
* @param {string} spender - address
|
|
103
103
|
* @returns {bigint} __output0 - uint256
|
|
104
104
|
*/
|
|
105
|
-
export declare function fetchVDODOTokenAllowance(chainId: number, owner: string, spender: string):
|
|
105
|
+
export declare function fetchVDODOTokenAllowance(chainId: number, owner: string, spender: string): any;
|
|
106
106
|
/**
|
|
107
107
|
* fetch alpha
|
|
108
108
|
* @param {number} chainId - number
|
|
109
109
|
* @returns {bigint} __output0 - uint112
|
|
110
110
|
*/
|
|
111
|
-
export declare function fetchVDODOTokenAlpha(chainId: number):
|
|
111
|
+
export declare function fetchVDODOTokenAlpha(chainId: number): any;
|
|
112
112
|
/**
|
|
113
113
|
* fetch availableBalanceOf
|
|
114
114
|
* @param {number} chainId - number
|
|
115
115
|
* @param {string} account - address
|
|
116
116
|
* @returns {bigint} vDODOAmount - uint256
|
|
117
117
|
*/
|
|
118
|
-
export declare function fetchVDODOTokenAvailableBalanceOf(chainId: number, account: string):
|
|
118
|
+
export declare function fetchVDODOTokenAvailableBalanceOf(chainId: number, account: string): any;
|
|
119
119
|
/**
|
|
120
120
|
* fetch balanceOf
|
|
121
121
|
* @param {number} chainId - number
|
|
122
122
|
* @param {string} account - address
|
|
123
123
|
* @returns {bigint} vDODOAmount - uint256
|
|
124
124
|
*/
|
|
125
|
-
export declare function fetchVDODOTokenBalanceOf(chainId: number, account: string):
|
|
125
|
+
export declare function fetchVDODOTokenBalanceOf(chainId: number, account: string): any;
|
|
126
126
|
/**
|
|
127
127
|
* fetch decimals
|
|
128
128
|
* @param {number} chainId - number
|
|
129
129
|
* @returns {bigint} __output0 - uint8
|
|
130
130
|
*/
|
|
131
|
-
export declare function fetchVDODOTokenDecimals(chainId: number):
|
|
131
|
+
export declare function fetchVDODOTokenDecimals(chainId: number): any;
|
|
132
132
|
/**
|
|
133
133
|
* fetch dodoBalanceOf
|
|
134
134
|
* @param {number} chainId - number
|
|
135
135
|
* @param {string} account - address
|
|
136
136
|
* @returns {bigint} dodoAmount - uint256
|
|
137
137
|
*/
|
|
138
|
-
export declare function fetchVDODOTokenDodoBalanceOf(chainId: number, account: string):
|
|
138
|
+
export declare function fetchVDODOTokenDodoBalanceOf(chainId: number, account: string): any;
|
|
139
139
|
/**
|
|
140
140
|
* fetch getDODOWithdrawFeeRatio
|
|
141
141
|
* @param {number} chainId - number
|
|
142
142
|
* @returns {bigint} feeRatio - uint256
|
|
143
143
|
*/
|
|
144
|
-
export declare function fetchVDODOTokenGetDODOWithdrawFeeRatio(chainId: number):
|
|
144
|
+
export declare function fetchVDODOTokenGetDODOWithdrawFeeRatio(chainId: number): any;
|
|
145
145
|
/**
|
|
146
146
|
* fetch getLatestAlpha
|
|
147
147
|
* @param {number} chainId - number
|
|
148
148
|
* @returns {bigint} newAlpha - uint256
|
|
149
149
|
* @returns {bigint} curDistribution - uint256
|
|
150
150
|
*/
|
|
151
|
-
export declare function fetchVDODOTokenGetLatestAlpha(chainId: number):
|
|
152
|
-
newAlpha: bigint;
|
|
153
|
-
curDistribution: bigint;
|
|
154
|
-
}>;
|
|
151
|
+
export declare function fetchVDODOTokenGetLatestAlpha(chainId: number): any;
|
|
155
152
|
/**
|
|
156
153
|
* fetch getSuperior
|
|
157
154
|
* @param {number} chainId - number
|
|
158
155
|
* @param {string} account - address
|
|
159
156
|
* @returns {string} superior - address
|
|
160
157
|
*/
|
|
161
|
-
export declare function fetchVDODOTokenGetSuperior(chainId: number, account: string):
|
|
158
|
+
export declare function fetchVDODOTokenGetSuperior(chainId: number, account: string): any;
|
|
162
159
|
/**
|
|
163
160
|
* fetch getWithdrawResult
|
|
164
161
|
* @param {number} chainId - number
|
|
@@ -167,29 +164,25 @@ export declare function fetchVDODOTokenGetSuperior(chainId: number, account: str
|
|
|
167
164
|
* @returns {bigint} burnDodoAmount - uint256
|
|
168
165
|
* @returns {bigint} withdrawFeeDodoAmount - uint256
|
|
169
166
|
*/
|
|
170
|
-
export declare function fetchVDODOTokenGetWithdrawResult(chainId: number, dodoAmount: number):
|
|
171
|
-
dodoReceive: bigint;
|
|
172
|
-
burnDodoAmount: bigint;
|
|
173
|
-
withdrawFeeDodoAmount: bigint;
|
|
174
|
-
}>;
|
|
167
|
+
export declare function fetchVDODOTokenGetWithdrawResult(chainId: number, dodoAmount: number): any;
|
|
175
168
|
/**
|
|
176
169
|
* fetch name
|
|
177
170
|
* @param {number} chainId - number
|
|
178
171
|
* @returns {string} __output0 - string
|
|
179
172
|
*/
|
|
180
|
-
export declare function fetchVDODOTokenName(chainId: number):
|
|
173
|
+
export declare function fetchVDODOTokenName(chainId: number): any;
|
|
181
174
|
/**
|
|
182
175
|
* fetch symbol
|
|
183
176
|
* @param {number} chainId - number
|
|
184
177
|
* @returns {string} __output0 - string
|
|
185
178
|
*/
|
|
186
|
-
export declare function fetchVDODOTokenSymbol(chainId: number):
|
|
179
|
+
export declare function fetchVDODOTokenSymbol(chainId: number): any;
|
|
187
180
|
/**
|
|
188
181
|
* fetch totalSupply
|
|
189
182
|
* @param {number} chainId - number
|
|
190
183
|
* @returns {bigint} vDODOSupply - uint256
|
|
191
184
|
*/
|
|
192
|
-
export declare function fetchVDODOTokenTotalSupply(chainId: number):
|
|
185
|
+
export declare function fetchVDODOTokenTotalSupply(chainId: number): any;
|
|
193
186
|
/**
|
|
194
187
|
* fetch userInfo
|
|
195
188
|
* @param {number} chainId - number
|
|
@@ -199,111 +192,106 @@ export declare function fetchVDODOTokenTotalSupply(chainId: number): Promise<big
|
|
|
199
192
|
* @returns {string} superior - address
|
|
200
193
|
* @returns {bigint} credit - uint256
|
|
201
194
|
*/
|
|
202
|
-
export declare function fetchVDODOTokenUserInfo(chainId: number, __input1: string):
|
|
203
|
-
stakingPower: bigint;
|
|
204
|
-
superiorSP: bigint;
|
|
205
|
-
superior: string;
|
|
206
|
-
credit: bigint;
|
|
207
|
-
}>;
|
|
195
|
+
export declare function fetchVDODOTokenUserInfo(chainId: number, __input1: string): any;
|
|
208
196
|
/**
|
|
209
197
|
* encode approve
|
|
210
198
|
* @param {string} spender - address
|
|
211
|
-
* @param {
|
|
199
|
+
* @param {string} vDODOAmount - uint256
|
|
212
200
|
* @returns {string} encode data
|
|
213
201
|
*/
|
|
214
|
-
export declare function encodeVDODOTokenApprove(spender: string, vDODOAmount:
|
|
202
|
+
export declare function encodeVDODOTokenApprove(spender: string, vDODOAmount: string): any;
|
|
215
203
|
/**
|
|
216
204
|
* encode changePerReward
|
|
217
|
-
* @param {
|
|
205
|
+
* @param {string} dodoPerBlock - uint256
|
|
218
206
|
* @returns {string} encode data
|
|
219
207
|
*/
|
|
220
|
-
export declare function encodeVDODOTokenChangePerReward(dodoPerBlock:
|
|
208
|
+
export declare function encodeVDODOTokenChangePerReward(dodoPerBlock: string): any;
|
|
221
209
|
/**
|
|
222
210
|
* encode claimOwnership
|
|
223
211
|
|
|
224
212
|
* @returns {string} encode data
|
|
225
213
|
*/
|
|
226
|
-
export declare function encodeVDODOTokenClaimOwnership():
|
|
214
|
+
export declare function encodeVDODOTokenClaimOwnership(): any;
|
|
227
215
|
/**
|
|
228
216
|
* encode donate
|
|
229
|
-
* @param {
|
|
217
|
+
* @param {string} dodoAmount - uint256
|
|
230
218
|
* @returns {string} encode data
|
|
231
219
|
*/
|
|
232
|
-
export declare function encodeVDODOTokenDonate(dodoAmount:
|
|
220
|
+
export declare function encodeVDODOTokenDonate(dodoAmount: string): any;
|
|
233
221
|
/**
|
|
234
222
|
* encode emergencyWithdraw
|
|
235
223
|
|
|
236
224
|
* @returns {string} encode data
|
|
237
225
|
*/
|
|
238
|
-
export declare function encodeVDODOTokenEmergencyWithdraw():
|
|
226
|
+
export declare function encodeVDODOTokenEmergencyWithdraw(): any;
|
|
239
227
|
/**
|
|
240
228
|
* encode initOwner
|
|
241
229
|
* @param {string} newOwner - address
|
|
242
230
|
* @returns {string} encode data
|
|
243
231
|
*/
|
|
244
|
-
export declare function encodeVDODOTokenInitOwner(newOwner: string):
|
|
232
|
+
export declare function encodeVDODOTokenInitOwner(newOwner: string): any;
|
|
245
233
|
/**
|
|
246
234
|
* encode mint
|
|
247
|
-
* @param {
|
|
235
|
+
* @param {string} dodoAmount - uint256
|
|
248
236
|
* @param {string} superiorAddress - address
|
|
249
237
|
* @returns {string} encode data
|
|
250
238
|
*/
|
|
251
|
-
export declare function encodeVDODOTokenMint(dodoAmount:
|
|
239
|
+
export declare function encodeVDODOTokenMint(dodoAmount: string, superiorAddress: string): any;
|
|
252
240
|
/**
|
|
253
241
|
* encode preDepositedBlockReward
|
|
254
|
-
* @param {
|
|
242
|
+
* @param {string} dodoAmount - uint256
|
|
255
243
|
* @returns {string} encode data
|
|
256
244
|
*/
|
|
257
|
-
export declare function encodeVDODOTokenPreDepositedBlockReward(dodoAmount:
|
|
245
|
+
export declare function encodeVDODOTokenPreDepositedBlockReward(dodoAmount: string): any;
|
|
258
246
|
/**
|
|
259
247
|
* encode redeem
|
|
260
|
-
* @param {
|
|
248
|
+
* @param {string} vdodoAmount - uint256
|
|
261
249
|
* @param {boolean} all - bool
|
|
262
250
|
* @returns {string} encode data
|
|
263
251
|
*/
|
|
264
|
-
export declare function encodeVDODOTokenRedeem(vdodoAmount:
|
|
252
|
+
export declare function encodeVDODOTokenRedeem(vdodoAmount: string, all: boolean): any;
|
|
265
253
|
/**
|
|
266
254
|
* encode setCantransfer
|
|
267
255
|
* @param {boolean} allowed - bool
|
|
268
256
|
* @returns {string} encode data
|
|
269
257
|
*/
|
|
270
|
-
export declare function encodeVDODOTokenSetCantransfer(allowed: boolean):
|
|
258
|
+
export declare function encodeVDODOTokenSetCantransfer(allowed: boolean): any;
|
|
271
259
|
/**
|
|
272
260
|
* encode transfer
|
|
273
261
|
* @param {string} to - address
|
|
274
|
-
* @param {
|
|
262
|
+
* @param {string} vDODOAmount - uint256
|
|
275
263
|
* @returns {string} encode data
|
|
276
264
|
*/
|
|
277
|
-
export declare function encodeVDODOTokenTransfer(to: string, vDODOAmount:
|
|
265
|
+
export declare function encodeVDODOTokenTransfer(to: string, vDODOAmount: string): any;
|
|
278
266
|
/**
|
|
279
267
|
* encode transferFrom
|
|
280
268
|
* @param {string} from - address
|
|
281
269
|
* @param {string} to - address
|
|
282
|
-
* @param {
|
|
270
|
+
* @param {string} vDODOAmount - uint256
|
|
283
271
|
* @returns {string} encode data
|
|
284
272
|
*/
|
|
285
|
-
export declare function encodeVDODOTokenTransferFrom(from: string, to: string, vDODOAmount:
|
|
273
|
+
export declare function encodeVDODOTokenTransferFrom(from: string, to: string, vDODOAmount: string): any;
|
|
286
274
|
/**
|
|
287
275
|
* encode transferOwnership
|
|
288
276
|
* @param {string} newOwner - address
|
|
289
277
|
* @returns {string} encode data
|
|
290
278
|
*/
|
|
291
|
-
export declare function encodeVDODOTokenTransferOwnership(newOwner: string):
|
|
279
|
+
export declare function encodeVDODOTokenTransferOwnership(newOwner: string): any;
|
|
292
280
|
/**
|
|
293
281
|
* encode updateDODOCirculationHelper
|
|
294
282
|
* @param {string} helper - address
|
|
295
283
|
* @returns {string} encode data
|
|
296
284
|
*/
|
|
297
|
-
export declare function encodeVDODOTokenUpdateDODOCirculationHelper(helper: string):
|
|
285
|
+
export declare function encodeVDODOTokenUpdateDODOCirculationHelper(helper: string): any;
|
|
298
286
|
/**
|
|
299
287
|
* encode updateDODOFeeBurnRatio
|
|
300
|
-
* @param {
|
|
288
|
+
* @param {string} dodoFeeBurnRatio - uint256
|
|
301
289
|
* @returns {string} encode data
|
|
302
290
|
*/
|
|
303
|
-
export declare function encodeVDODOTokenUpdateDODOFeeBurnRatio(dodoFeeBurnRatio:
|
|
291
|
+
export declare function encodeVDODOTokenUpdateDODOFeeBurnRatio(dodoFeeBurnRatio: string): any;
|
|
304
292
|
/**
|
|
305
293
|
* encode updateGovernance
|
|
306
294
|
* @param {string} governance - address
|
|
307
295
|
* @returns {string} encode data
|
|
308
296
|
*/
|
|
309
|
-
export declare function encodeVDODOTokenUpdateGovernance(governance: string):
|
|
297
|
+
export declare function encodeVDODOTokenUpdateGovernance(governance: string): any;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -56,5 +56,7 @@ export * from './contract/LimitOrder';
|
|
|
56
56
|
export * from './contract/LimitOrderBot';
|
|
57
57
|
export * from './contract/MulticallWithValid';
|
|
58
58
|
export * from './contract/PermissionManager';
|
|
59
|
+
export * from './contract/UniswapV2Factory';
|
|
60
|
+
export * from './contract/UniswapV2Router02';
|
|
59
61
|
export * from './contract/dodoTeam';
|
|
60
62
|
export * from './contract/vDODOToken';
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dodoex/dodo-contract-request",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "./dist/types/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "rollup --config",
|
|
10
|
-
"contract:generate": "
|
|
10
|
+
"contract:generate": "env tsx --env-file-if-exists=.env scripts/contract-generate",
|
|
11
11
|
"prerelease": "yarn run build",
|
|
12
12
|
"release": "semantic-release",
|
|
13
|
-
"type-check": "tsc --noEmit"
|
|
13
|
+
"type-check": "tsc --noEmit "
|
|
14
14
|
},
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|