@poolzfinance/api4 1.11.49 → 1.11.50
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.
|
@@ -179,32 +179,32 @@ export type CleanCacheResult = {
|
|
|
179
179
|
id: Scalars['String']['output'];
|
|
180
180
|
};
|
|
181
181
|
export type CreateAssetRequest = {
|
|
182
|
-
|
|
183
|
-
|
|
182
|
+
message: CreateAssetRequest_Message;
|
|
183
|
+
signature: Scalars['String']['input'];
|
|
184
184
|
};
|
|
185
185
|
export type CreateAssetRequest_Message = {
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
186
|
+
chainId: Scalars['Int']['input'];
|
|
187
|
+
poolId: Scalars['Int']['input'];
|
|
188
|
+
refund?: InputMaybe<CreateAssetRequest_Refund>;
|
|
189
|
+
schedules: Array<CreateAssetRequest_Schedule>;
|
|
190
|
+
users: Array<CreateAssetRequest_User>;
|
|
191
191
|
};
|
|
192
192
|
export type CreateAssetRequest_Refund = {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
193
|
+
chainId: Scalars['Int']['input'];
|
|
194
|
+
dealProvider: Scalars['String']['input'];
|
|
195
|
+
finishTime: Scalars['Int']['input'];
|
|
196
|
+
poolId: Scalars['Int']['input'];
|
|
197
|
+
weiRatio: Scalars['String']['input'];
|
|
198
198
|
};
|
|
199
199
|
export type CreateAssetRequest_Schedule = {
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
200
|
+
finishTime: Scalars['Int']['input'];
|
|
201
|
+
providerAddress: Scalars['String']['input'];
|
|
202
|
+
startTime: Scalars['Int']['input'];
|
|
203
|
+
weiRatio: Scalars['String']['input'];
|
|
204
204
|
};
|
|
205
205
|
export type CreateAssetRequest_User = {
|
|
206
|
-
|
|
207
|
-
|
|
206
|
+
userAddress: Scalars['String']['input'];
|
|
207
|
+
weiAmount: Scalars['String']['input'];
|
|
208
208
|
};
|
|
209
209
|
export type CreateAssetResponse = {
|
|
210
210
|
__typename?: 'CreateAssetResponse';
|