@wildcatfi/wildcat-sdk 3.0.73-beta → 3.0.75-beta
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/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +8 -1
- package/dist/constants.js.map +1 -1
- package/dist/gql/graphql.d.ts +635 -0
- package/dist/gql/graphql.d.ts.map +1 -1
- package/dist/gql/graphql.js +193 -3
- package/dist/gql/graphql.js.map +1 -1
- package/dist/wrapper/index.d.ts +29 -0
- package/dist/wrapper/index.d.ts.map +1 -1
- package/dist/wrapper/index.js +82 -1
- package/dist/wrapper/index.js.map +1 -1
- package/package.json +1 -1
package/dist/gql/graphql.d.ts
CHANGED
|
@@ -7099,6 +7099,7 @@ export type SubgraphMarket = {
|
|
|
7099
7099
|
temporaryReserveRatioActive: Scalars["Boolean"]["output"];
|
|
7100
7100
|
temporaryReserveRatioExpiry: Scalars["Int"]["output"];
|
|
7101
7101
|
timeDelinquent: Scalars["Int"]["output"];
|
|
7102
|
+
tokenWrapper?: Maybe<SubgraphWildcat4626Wrapper>;
|
|
7102
7103
|
totalBaseInterestAccrued: Scalars["BigInt"]["output"];
|
|
7103
7104
|
totalBorrowed: Scalars["BigInt"]["output"];
|
|
7104
7105
|
totalDelinquencyFeesAccrued: Scalars["BigInt"]["output"];
|
|
@@ -8775,6 +8776,27 @@ export type SubgraphMarket_Filter = {
|
|
|
8775
8776
|
timeDelinquent_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8776
8777
|
timeDelinquent_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8777
8778
|
timeDelinquent_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
8779
|
+
tokenWrapper?: InputMaybe<Scalars["String"]["input"]>;
|
|
8780
|
+
tokenWrapper_?: InputMaybe<SubgraphWildcat4626Wrapper_Filter>;
|
|
8781
|
+
tokenWrapper_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
8782
|
+
tokenWrapper_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
8783
|
+
tokenWrapper_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
8784
|
+
tokenWrapper_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
8785
|
+
tokenWrapper_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
8786
|
+
tokenWrapper_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
8787
|
+
tokenWrapper_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
8788
|
+
tokenWrapper_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
8789
|
+
tokenWrapper_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
8790
|
+
tokenWrapper_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
8791
|
+
tokenWrapper_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
8792
|
+
tokenWrapper_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
8793
|
+
tokenWrapper_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
8794
|
+
tokenWrapper_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
8795
|
+
tokenWrapper_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
8796
|
+
tokenWrapper_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
8797
|
+
tokenWrapper_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
8798
|
+
tokenWrapper_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
8799
|
+
tokenWrapper_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
8778
8800
|
totalBaseInterestAccrued?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
8779
8801
|
totalBaseInterestAccrued_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
8780
8802
|
totalBaseInterestAccrued_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
@@ -8987,6 +9009,14 @@ export declare enum SubgraphMarket_OrderBy {
|
|
|
8987
9009
|
TemporaryReserveRatioActive = "temporaryReserveRatioActive",
|
|
8988
9010
|
TemporaryReserveRatioExpiry = "temporaryReserveRatioExpiry",
|
|
8989
9011
|
TimeDelinquent = "timeDelinquent",
|
|
9012
|
+
TokenWrapper = "tokenWrapper",
|
|
9013
|
+
TokenWrapperAddress = "tokenWrapper__address",
|
|
9014
|
+
TokenWrapperBlockLogIndex = "tokenWrapper__blockLogIndex",
|
|
9015
|
+
TokenWrapperBlockNumber = "tokenWrapper__blockNumber",
|
|
9016
|
+
TokenWrapperBlockTimestamp = "tokenWrapper__blockTimestamp",
|
|
9017
|
+
TokenWrapperId = "tokenWrapper__id",
|
|
9018
|
+
TokenWrapperMarketAddress = "tokenWrapper__marketAddress",
|
|
9019
|
+
TokenWrapperTransactionHash = "tokenWrapper__transactionHash",
|
|
8990
9020
|
TotalBaseInterestAccrued = "totalBaseInterestAccrued",
|
|
8991
9021
|
TotalBorrowed = "totalBorrowed",
|
|
8992
9022
|
TotalDelinquencyFeesAccrued = "totalDelinquencyFeesAccrued",
|
|
@@ -10341,6 +10371,12 @@ export type SubgraphQuery = {
|
|
|
10341
10371
|
transfers: SubgraphTransfer[];
|
|
10342
10372
|
updateProtocolFeeConfiguration?: Maybe<SubgraphUpdateProtocolFeeConfiguration>;
|
|
10343
10373
|
updateProtocolFeeConfigurations: SubgraphUpdateProtocolFeeConfiguration[];
|
|
10374
|
+
wildcat4626Wrapper?: Maybe<SubgraphWildcat4626Wrapper>;
|
|
10375
|
+
wildcat4626WrapperDeployed?: Maybe<SubgraphWildcat4626WrapperDeployed>;
|
|
10376
|
+
wildcat4626WrapperDeployeds: SubgraphWildcat4626WrapperDeployed[];
|
|
10377
|
+
wildcat4626WrapperFactories: SubgraphWildcat4626WrapperFactory[];
|
|
10378
|
+
wildcat4626WrapperFactory?: Maybe<SubgraphWildcat4626WrapperFactory>;
|
|
10379
|
+
wildcat4626Wrappers: SubgraphWildcat4626Wrapper[];
|
|
10344
10380
|
withdrawalBatch?: Maybe<SubgraphWithdrawalBatch>;
|
|
10345
10381
|
withdrawalBatchCreated?: Maybe<SubgraphWithdrawalBatchCreated>;
|
|
10346
10382
|
withdrawalBatchCreateds: SubgraphWithdrawalBatchCreated[];
|
|
@@ -11213,6 +11249,36 @@ export type SubgraphQueryUpdateProtocolFeeConfigurationsArgs = {
|
|
|
11213
11249
|
subgraphError?: Subgraph_SubgraphErrorPolicy_;
|
|
11214
11250
|
where?: InputMaybe<SubgraphUpdateProtocolFeeConfiguration_Filter>;
|
|
11215
11251
|
};
|
|
11252
|
+
export type SubgraphQueryWildcat4626WrapperArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
11253
|
+
export type SubgraphQueryWildcat4626WrapperDeployedArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
11254
|
+
export type SubgraphQueryWildcat4626WrapperDeployedsArgs = {
|
|
11255
|
+
block?: InputMaybe<SubgraphBlock_Height>;
|
|
11256
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11257
|
+
orderBy?: InputMaybe<SubgraphWildcat4626WrapperDeployed_OrderBy>;
|
|
11258
|
+
orderDirection?: InputMaybe<SubgraphOrderDirection>;
|
|
11259
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11260
|
+
subgraphError?: Subgraph_SubgraphErrorPolicy_;
|
|
11261
|
+
where?: InputMaybe<SubgraphWildcat4626WrapperDeployed_Filter>;
|
|
11262
|
+
};
|
|
11263
|
+
export type SubgraphQueryWildcat4626WrapperFactoriesArgs = {
|
|
11264
|
+
block?: InputMaybe<SubgraphBlock_Height>;
|
|
11265
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11266
|
+
orderBy?: InputMaybe<SubgraphWildcat4626WrapperFactory_OrderBy>;
|
|
11267
|
+
orderDirection?: InputMaybe<SubgraphOrderDirection>;
|
|
11268
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11269
|
+
subgraphError?: Subgraph_SubgraphErrorPolicy_;
|
|
11270
|
+
where?: InputMaybe<SubgraphWildcat4626WrapperFactory_Filter>;
|
|
11271
|
+
};
|
|
11272
|
+
export type SubgraphQueryWildcat4626WrapperFactoryArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
11273
|
+
export type SubgraphQueryWildcat4626WrappersArgs = {
|
|
11274
|
+
block?: InputMaybe<SubgraphBlock_Height>;
|
|
11275
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11276
|
+
orderBy?: InputMaybe<SubgraphWildcat4626Wrapper_OrderBy>;
|
|
11277
|
+
orderDirection?: InputMaybe<SubgraphOrderDirection>;
|
|
11278
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11279
|
+
subgraphError?: Subgraph_SubgraphErrorPolicy_;
|
|
11280
|
+
where?: InputMaybe<SubgraphWildcat4626Wrapper_Filter>;
|
|
11281
|
+
};
|
|
11216
11282
|
export type SubgraphQueryWithdrawalBatchArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
11217
11283
|
export type SubgraphQueryWithdrawalBatchCreatedArgs = SubgraphQueryAccountAccessGrantedArgs;
|
|
11218
11284
|
export type SubgraphQueryWithdrawalBatchCreatedsArgs = {
|
|
@@ -14289,6 +14355,575 @@ export declare enum SubgraphUpdateProtocolFeeConfiguration_OrderBy {
|
|
|
14289
14355
|
ProtocolFeeBips = "protocolFeeBips",
|
|
14290
14356
|
TransactionHash = "transactionHash"
|
|
14291
14357
|
}
|
|
14358
|
+
export type SubgraphWildcat4626Wrapper = {
|
|
14359
|
+
__typename: "Wildcat4626Wrapper";
|
|
14360
|
+
address: Scalars["Bytes"]["output"];
|
|
14361
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
14362
|
+
blockNumber: Scalars["Int"]["output"];
|
|
14363
|
+
blockTimestamp: Scalars["Int"]["output"];
|
|
14364
|
+
deployedEvent?: Maybe<SubgraphWildcat4626WrapperDeployed>;
|
|
14365
|
+
factory: SubgraphWildcat4626WrapperFactory;
|
|
14366
|
+
id: Scalars["ID"]["output"];
|
|
14367
|
+
market?: Maybe<SubgraphMarket>;
|
|
14368
|
+
marketAddress: Scalars["Bytes"]["output"];
|
|
14369
|
+
marketToken: SubgraphToken;
|
|
14370
|
+
token: SubgraphToken;
|
|
14371
|
+
transactionHash: Scalars["Bytes"]["output"];
|
|
14372
|
+
};
|
|
14373
|
+
export type SubgraphWildcat4626WrapperDeployed = {
|
|
14374
|
+
__typename: "Wildcat4626WrapperDeployed";
|
|
14375
|
+
blockLogIndex: Scalars["Int"]["output"];
|
|
14376
|
+
blockNumber: Scalars["Int"]["output"];
|
|
14377
|
+
blockTimestamp: Scalars["Int"]["output"];
|
|
14378
|
+
factory: SubgraphWildcat4626WrapperFactory;
|
|
14379
|
+
id: Scalars["ID"]["output"];
|
|
14380
|
+
market?: Maybe<SubgraphMarket>;
|
|
14381
|
+
marketAddress: Scalars["Bytes"]["output"];
|
|
14382
|
+
transactionHash: Scalars["Bytes"]["output"];
|
|
14383
|
+
wrapper: SubgraphWildcat4626Wrapper;
|
|
14384
|
+
wrapperAddress: Scalars["Bytes"]["output"];
|
|
14385
|
+
};
|
|
14386
|
+
export type SubgraphWildcat4626WrapperDeployed_Filter = {
|
|
14387
|
+
/** Filter for the block changed event. */
|
|
14388
|
+
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
14389
|
+
and?: InputMaybe<Array<InputMaybe<SubgraphWildcat4626WrapperDeployed_Filter>>>;
|
|
14390
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14391
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14392
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14393
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14394
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14395
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14396
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14397
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14398
|
+
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14399
|
+
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14400
|
+
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14401
|
+
blockNumber_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14402
|
+
blockNumber_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14403
|
+
blockNumber_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14404
|
+
blockNumber_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14405
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14406
|
+
blockTimestamp?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14407
|
+
blockTimestamp_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14408
|
+
blockTimestamp_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14409
|
+
blockTimestamp_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14410
|
+
blockTimestamp_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14411
|
+
blockTimestamp_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14412
|
+
blockTimestamp_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14413
|
+
blockTimestamp_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14414
|
+
factory?: InputMaybe<Scalars["String"]["input"]>;
|
|
14415
|
+
factory_?: InputMaybe<SubgraphWildcat4626WrapperFactory_Filter>;
|
|
14416
|
+
factory_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14417
|
+
factory_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14418
|
+
factory_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14419
|
+
factory_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14420
|
+
factory_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14421
|
+
factory_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14422
|
+
factory_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14423
|
+
factory_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14424
|
+
factory_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14425
|
+
factory_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
14426
|
+
factory_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14427
|
+
factory_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14428
|
+
factory_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14429
|
+
factory_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14430
|
+
factory_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14431
|
+
factory_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14432
|
+
factory_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14433
|
+
factory_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14434
|
+
factory_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14435
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14436
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14437
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14438
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
14439
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14440
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14441
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14442
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
14443
|
+
market?: InputMaybe<Scalars["String"]["input"]>;
|
|
14444
|
+
marketAddress?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14445
|
+
marketAddress_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14446
|
+
marketAddress_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14447
|
+
marketAddress_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14448
|
+
marketAddress_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14449
|
+
marketAddress_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14450
|
+
marketAddress_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14451
|
+
marketAddress_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14452
|
+
marketAddress_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14453
|
+
marketAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14454
|
+
market_?: InputMaybe<SubgraphMarket_Filter>;
|
|
14455
|
+
market_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14456
|
+
market_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14457
|
+
market_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14458
|
+
market_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14459
|
+
market_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14460
|
+
market_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14461
|
+
market_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14462
|
+
market_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14463
|
+
market_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14464
|
+
market_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
14465
|
+
market_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14466
|
+
market_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14467
|
+
market_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14468
|
+
market_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14469
|
+
market_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14470
|
+
market_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14471
|
+
market_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14472
|
+
market_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14473
|
+
market_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14474
|
+
or?: InputMaybe<Array<InputMaybe<SubgraphWildcat4626WrapperDeployed_Filter>>>;
|
|
14475
|
+
transactionHash?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14476
|
+
transactionHash_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14477
|
+
transactionHash_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14478
|
+
transactionHash_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14479
|
+
transactionHash_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14480
|
+
transactionHash_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14481
|
+
transactionHash_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14482
|
+
transactionHash_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14483
|
+
transactionHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14484
|
+
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14485
|
+
wrapper?: InputMaybe<Scalars["String"]["input"]>;
|
|
14486
|
+
wrapperAddress?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14487
|
+
wrapperAddress_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14488
|
+
wrapperAddress_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14489
|
+
wrapperAddress_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14490
|
+
wrapperAddress_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14491
|
+
wrapperAddress_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14492
|
+
wrapperAddress_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14493
|
+
wrapperAddress_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14494
|
+
wrapperAddress_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14495
|
+
wrapperAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14496
|
+
wrapper_?: InputMaybe<SubgraphWildcat4626Wrapper_Filter>;
|
|
14497
|
+
wrapper_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14498
|
+
wrapper_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14499
|
+
wrapper_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14500
|
+
wrapper_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14501
|
+
wrapper_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14502
|
+
wrapper_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14503
|
+
wrapper_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14504
|
+
wrapper_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14505
|
+
wrapper_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14506
|
+
wrapper_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
14507
|
+
wrapper_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14508
|
+
wrapper_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14509
|
+
wrapper_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14510
|
+
wrapper_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14511
|
+
wrapper_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14512
|
+
wrapper_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14513
|
+
wrapper_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14514
|
+
wrapper_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14515
|
+
wrapper_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14516
|
+
};
|
|
14517
|
+
export declare enum SubgraphWildcat4626WrapperDeployed_OrderBy {
|
|
14518
|
+
BlockLogIndex = "blockLogIndex",
|
|
14519
|
+
BlockNumber = "blockNumber",
|
|
14520
|
+
BlockTimestamp = "blockTimestamp",
|
|
14521
|
+
Factory = "factory",
|
|
14522
|
+
FactoryAddress = "factory__address",
|
|
14523
|
+
FactoryEventIndex = "factory__eventIndex",
|
|
14524
|
+
FactoryId = "factory__id",
|
|
14525
|
+
Id = "id",
|
|
14526
|
+
Market = "market",
|
|
14527
|
+
MarketAddress = "marketAddress",
|
|
14528
|
+
MarketAnnualInterestBips = "market__annualInterestBips",
|
|
14529
|
+
MarketAnnualInterestBipsUpdatedIndex = "market__annualInterestBipsUpdatedIndex",
|
|
14530
|
+
MarketBorrowIndex = "market__borrowIndex",
|
|
14531
|
+
MarketBorrower = "market__borrower",
|
|
14532
|
+
MarketCommitmentFeeBips = "market__commitmentFeeBips",
|
|
14533
|
+
MarketCreatedAt = "market__createdAt",
|
|
14534
|
+
MarketDebtRepaidIndex = "market__debtRepaidIndex",
|
|
14535
|
+
MarketDecimals = "market__decimals",
|
|
14536
|
+
MarketDelinquencyFeeBips = "market__delinquencyFeeBips",
|
|
14537
|
+
MarketDelinquencyGracePeriod = "market__delinquencyGracePeriod",
|
|
14538
|
+
MarketDelinquencyStatusChangedIndex = "market__delinquencyStatusChangedIndex",
|
|
14539
|
+
MarketDepositIndex = "market__depositIndex",
|
|
14540
|
+
MarketDrawnAmount = "market__drawnAmount",
|
|
14541
|
+
MarketEventIndex = "market__eventIndex",
|
|
14542
|
+
MarketFeeRecipient = "market__feeRecipient",
|
|
14543
|
+
MarketFeesCollectedIndex = "market__feesCollectedIndex",
|
|
14544
|
+
MarketFixedTermUpdatedIndex = "market__fixedTermUpdatedIndex",
|
|
14545
|
+
MarketForceBuyBackIndex = "market__forceBuyBackIndex",
|
|
14546
|
+
MarketId = "market__id",
|
|
14547
|
+
MarketIsClosed = "market__isClosed",
|
|
14548
|
+
MarketIsDelinquent = "market__isDelinquent",
|
|
14549
|
+
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
14550
|
+
MarketIsRegistered = "market__isRegistered",
|
|
14551
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
14552
|
+
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
14553
|
+
MarketMarketType = "market__marketType",
|
|
14554
|
+
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
14555
|
+
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
14556
|
+
MarketMinimumDepositUpdatedIndex = "market__minimumDepositUpdatedIndex",
|
|
14557
|
+
MarketName = "market__name",
|
|
14558
|
+
MarketNormalizedUnclaimedWithdrawals = "market__normalizedUnclaimedWithdrawals",
|
|
14559
|
+
MarketNumCollateralContracts = "market__numCollateralContracts",
|
|
14560
|
+
MarketOriginalAnnualInterestBips = "market__originalAnnualInterestBips",
|
|
14561
|
+
MarketOriginalReserveRatioBips = "market__originalReserveRatioBips",
|
|
14562
|
+
MarketPendingProtocolFees = "market__pendingProtocolFees",
|
|
14563
|
+
MarketPendingWithdrawalExpiry = "market__pendingWithdrawalExpiry",
|
|
14564
|
+
MarketProtocolFeeBips = "market__protocolFeeBips",
|
|
14565
|
+
MarketProtocolFeeBipsUpdatedIndex = "market__protocolFeeBipsUpdatedIndex",
|
|
14566
|
+
MarketReserveRatioBips = "market__reserveRatioBips",
|
|
14567
|
+
MarketScaleFactor = "market__scaleFactor",
|
|
14568
|
+
MarketScaledPendingWithdrawals = "market__scaledPendingWithdrawals",
|
|
14569
|
+
MarketScaledTotalSupply = "market__scaledTotalSupply",
|
|
14570
|
+
MarketSentinel = "market__sentinel",
|
|
14571
|
+
MarketSymbol = "market__symbol",
|
|
14572
|
+
MarketTemporaryReserveRatioActive = "market__temporaryReserveRatioActive",
|
|
14573
|
+
MarketTemporaryReserveRatioExpiry = "market__temporaryReserveRatioExpiry",
|
|
14574
|
+
MarketTimeDelinquent = "market__timeDelinquent",
|
|
14575
|
+
MarketTotalBaseInterestAccrued = "market__totalBaseInterestAccrued",
|
|
14576
|
+
MarketTotalBorrowed = "market__totalBorrowed",
|
|
14577
|
+
MarketTotalDelinquencyFeesAccrued = "market__totalDelinquencyFeesAccrued",
|
|
14578
|
+
MarketTotalDeposited = "market__totalDeposited",
|
|
14579
|
+
MarketTotalProtocolFeesAccrued = "market__totalProtocolFeesAccrued",
|
|
14580
|
+
MarketTotalRepaid = "market__totalRepaid",
|
|
14581
|
+
MarketVersion = "market__version",
|
|
14582
|
+
MarketWithdrawalBatchDuration = "market__withdrawalBatchDuration",
|
|
14583
|
+
MarketWithdrawalRequestsIndex = "market__withdrawalRequestsIndex",
|
|
14584
|
+
TransactionHash = "transactionHash",
|
|
14585
|
+
Wrapper = "wrapper",
|
|
14586
|
+
WrapperAddress = "wrapperAddress",
|
|
14587
|
+
WrapperNestedAddress = "wrapper__address",
|
|
14588
|
+
WrapperBlockLogIndex = "wrapper__blockLogIndex",
|
|
14589
|
+
WrapperBlockNumber = "wrapper__blockNumber",
|
|
14590
|
+
WrapperBlockTimestamp = "wrapper__blockTimestamp",
|
|
14591
|
+
WrapperId = "wrapper__id",
|
|
14592
|
+
WrapperMarketAddress = "wrapper__marketAddress",
|
|
14593
|
+
WrapperTransactionHash = "wrapper__transactionHash"
|
|
14594
|
+
}
|
|
14595
|
+
export type SubgraphWildcat4626WrapperFactory = {
|
|
14596
|
+
__typename: "Wildcat4626WrapperFactory";
|
|
14597
|
+
address: Scalars["Bytes"]["output"];
|
|
14598
|
+
archController: SubgraphArchController;
|
|
14599
|
+
deployedEvents: SubgraphWildcat4626WrapperDeployed[];
|
|
14600
|
+
eventIndex: Scalars["Int"]["output"];
|
|
14601
|
+
id: Scalars["ID"]["output"];
|
|
14602
|
+
wrappers: SubgraphWildcat4626Wrapper[];
|
|
14603
|
+
};
|
|
14604
|
+
export type SubgraphWildcat4626WrapperFactoryDeployedEventsArgs = {
|
|
14605
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14606
|
+
orderBy?: InputMaybe<SubgraphWildcat4626WrapperDeployed_OrderBy>;
|
|
14607
|
+
orderDirection?: InputMaybe<SubgraphOrderDirection>;
|
|
14608
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14609
|
+
where?: InputMaybe<SubgraphWildcat4626WrapperDeployed_Filter>;
|
|
14610
|
+
};
|
|
14611
|
+
export type SubgraphWildcat4626WrapperFactoryWrappersArgs = {
|
|
14612
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14613
|
+
orderBy?: InputMaybe<SubgraphWildcat4626Wrapper_OrderBy>;
|
|
14614
|
+
orderDirection?: InputMaybe<SubgraphOrderDirection>;
|
|
14615
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14616
|
+
where?: InputMaybe<SubgraphWildcat4626Wrapper_Filter>;
|
|
14617
|
+
};
|
|
14618
|
+
export type SubgraphWildcat4626WrapperFactory_Filter = {
|
|
14619
|
+
/** Filter for the block changed event. */
|
|
14620
|
+
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
14621
|
+
address?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14622
|
+
address_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14623
|
+
address_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14624
|
+
address_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14625
|
+
address_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14626
|
+
address_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14627
|
+
address_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14628
|
+
address_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14629
|
+
address_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14630
|
+
address_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14631
|
+
and?: InputMaybe<Array<InputMaybe<SubgraphWildcat4626WrapperFactory_Filter>>>;
|
|
14632
|
+
archController?: InputMaybe<Scalars["String"]["input"]>;
|
|
14633
|
+
archController_?: InputMaybe<SubgraphArchController_Filter>;
|
|
14634
|
+
archController_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14635
|
+
archController_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14636
|
+
archController_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14637
|
+
archController_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14638
|
+
archController_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14639
|
+
archController_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14640
|
+
archController_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14641
|
+
archController_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14642
|
+
archController_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14643
|
+
archController_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
14644
|
+
archController_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14645
|
+
archController_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14646
|
+
archController_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14647
|
+
archController_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14648
|
+
archController_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14649
|
+
archController_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14650
|
+
archController_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14651
|
+
archController_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14652
|
+
archController_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14653
|
+
deployedEvents_?: InputMaybe<SubgraphWildcat4626WrapperDeployed_Filter>;
|
|
14654
|
+
eventIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14655
|
+
eventIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14656
|
+
eventIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14657
|
+
eventIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14658
|
+
eventIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14659
|
+
eventIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14660
|
+
eventIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14661
|
+
eventIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14662
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14663
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14664
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14665
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
14666
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14667
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14668
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14669
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
14670
|
+
or?: InputMaybe<Array<InputMaybe<SubgraphWildcat4626WrapperFactory_Filter>>>;
|
|
14671
|
+
wrappers_?: InputMaybe<SubgraphWildcat4626Wrapper_Filter>;
|
|
14672
|
+
};
|
|
14673
|
+
export declare enum SubgraphWildcat4626WrapperFactory_OrderBy {
|
|
14674
|
+
Address = "address",
|
|
14675
|
+
ArchController = "archController",
|
|
14676
|
+
ArchControllerId = "archController__id",
|
|
14677
|
+
DeployedEvents = "deployedEvents",
|
|
14678
|
+
EventIndex = "eventIndex",
|
|
14679
|
+
Id = "id",
|
|
14680
|
+
Wrappers = "wrappers"
|
|
14681
|
+
}
|
|
14682
|
+
export type SubgraphWildcat4626Wrapper_Filter = {
|
|
14683
|
+
/** Filter for the block changed event. */
|
|
14684
|
+
_change_block?: InputMaybe<SubgraphBlockChangedFilter>;
|
|
14685
|
+
address?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14686
|
+
address_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14687
|
+
address_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14688
|
+
address_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14689
|
+
address_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14690
|
+
address_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14691
|
+
address_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14692
|
+
address_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14693
|
+
address_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14694
|
+
address_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14695
|
+
and?: InputMaybe<Array<InputMaybe<SubgraphWildcat4626Wrapper_Filter>>>;
|
|
14696
|
+
blockLogIndex?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14697
|
+
blockLogIndex_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14698
|
+
blockLogIndex_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14699
|
+
blockLogIndex_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14700
|
+
blockLogIndex_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14701
|
+
blockLogIndex_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14702
|
+
blockLogIndex_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14703
|
+
blockLogIndex_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14704
|
+
blockNumber?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14705
|
+
blockNumber_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14706
|
+
blockNumber_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14707
|
+
blockNumber_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14708
|
+
blockNumber_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14709
|
+
blockNumber_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14710
|
+
blockNumber_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14711
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14712
|
+
blockTimestamp?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14713
|
+
blockTimestamp_gt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14714
|
+
blockTimestamp_gte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14715
|
+
blockTimestamp_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14716
|
+
blockTimestamp_lt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14717
|
+
blockTimestamp_lte?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14718
|
+
blockTimestamp_not?: InputMaybe<Scalars["Int"]["input"]>;
|
|
14719
|
+
blockTimestamp_not_in?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
14720
|
+
deployedEvent_?: InputMaybe<SubgraphWildcat4626WrapperDeployed_Filter>;
|
|
14721
|
+
factory?: InputMaybe<Scalars["String"]["input"]>;
|
|
14722
|
+
factory_?: InputMaybe<SubgraphWildcat4626WrapperFactory_Filter>;
|
|
14723
|
+
factory_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14724
|
+
factory_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14725
|
+
factory_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14726
|
+
factory_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14727
|
+
factory_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14728
|
+
factory_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14729
|
+
factory_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14730
|
+
factory_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14731
|
+
factory_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14732
|
+
factory_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
14733
|
+
factory_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14734
|
+
factory_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14735
|
+
factory_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14736
|
+
factory_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14737
|
+
factory_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14738
|
+
factory_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14739
|
+
factory_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14740
|
+
factory_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14741
|
+
factory_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14742
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14743
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14744
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14745
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
14746
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14747
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14748
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
14749
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
14750
|
+
market?: InputMaybe<Scalars["String"]["input"]>;
|
|
14751
|
+
marketAddress?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14752
|
+
marketAddress_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14753
|
+
marketAddress_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14754
|
+
marketAddress_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14755
|
+
marketAddress_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14756
|
+
marketAddress_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14757
|
+
marketAddress_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14758
|
+
marketAddress_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14759
|
+
marketAddress_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14760
|
+
marketAddress_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14761
|
+
marketToken?: InputMaybe<Scalars["String"]["input"]>;
|
|
14762
|
+
marketToken_?: InputMaybe<SubgraphToken_Filter>;
|
|
14763
|
+
marketToken_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14764
|
+
marketToken_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14765
|
+
marketToken_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14766
|
+
marketToken_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14767
|
+
marketToken_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14768
|
+
marketToken_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14769
|
+
marketToken_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14770
|
+
marketToken_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14771
|
+
marketToken_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14772
|
+
marketToken_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
14773
|
+
marketToken_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14774
|
+
marketToken_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14775
|
+
marketToken_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14776
|
+
marketToken_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14777
|
+
marketToken_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14778
|
+
marketToken_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14779
|
+
marketToken_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14780
|
+
marketToken_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14781
|
+
marketToken_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14782
|
+
market_?: InputMaybe<SubgraphMarket_Filter>;
|
|
14783
|
+
market_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14784
|
+
market_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14785
|
+
market_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14786
|
+
market_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14787
|
+
market_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14788
|
+
market_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14789
|
+
market_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14790
|
+
market_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14791
|
+
market_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14792
|
+
market_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
14793
|
+
market_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14794
|
+
market_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14795
|
+
market_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14796
|
+
market_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14797
|
+
market_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14798
|
+
market_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14799
|
+
market_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14800
|
+
market_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14801
|
+
market_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14802
|
+
or?: InputMaybe<Array<InputMaybe<SubgraphWildcat4626Wrapper_Filter>>>;
|
|
14803
|
+
token?: InputMaybe<Scalars["String"]["input"]>;
|
|
14804
|
+
token_?: InputMaybe<SubgraphToken_Filter>;
|
|
14805
|
+
token_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14806
|
+
token_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14807
|
+
token_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14808
|
+
token_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14809
|
+
token_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14810
|
+
token_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14811
|
+
token_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14812
|
+
token_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
14813
|
+
token_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
14814
|
+
token_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
14815
|
+
token_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
14816
|
+
token_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14817
|
+
token_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14818
|
+
token_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14819
|
+
token_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
14820
|
+
token_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14821
|
+
token_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14822
|
+
token_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
14823
|
+
token_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
14824
|
+
transactionHash?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14825
|
+
transactionHash_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14826
|
+
transactionHash_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14827
|
+
transactionHash_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14828
|
+
transactionHash_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14829
|
+
transactionHash_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14830
|
+
transactionHash_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14831
|
+
transactionHash_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14832
|
+
transactionHash_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
14833
|
+
transactionHash_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
14834
|
+
};
|
|
14835
|
+
export declare enum SubgraphWildcat4626Wrapper_OrderBy {
|
|
14836
|
+
Address = "address",
|
|
14837
|
+
BlockLogIndex = "blockLogIndex",
|
|
14838
|
+
BlockNumber = "blockNumber",
|
|
14839
|
+
BlockTimestamp = "blockTimestamp",
|
|
14840
|
+
DeployedEvent = "deployedEvent",
|
|
14841
|
+
DeployedEventBlockLogIndex = "deployedEvent__blockLogIndex",
|
|
14842
|
+
DeployedEventBlockNumber = "deployedEvent__blockNumber",
|
|
14843
|
+
DeployedEventBlockTimestamp = "deployedEvent__blockTimestamp",
|
|
14844
|
+
DeployedEventId = "deployedEvent__id",
|
|
14845
|
+
DeployedEventMarketAddress = "deployedEvent__marketAddress",
|
|
14846
|
+
DeployedEventTransactionHash = "deployedEvent__transactionHash",
|
|
14847
|
+
DeployedEventWrapperAddress = "deployedEvent__wrapperAddress",
|
|
14848
|
+
Factory = "factory",
|
|
14849
|
+
FactoryAddress = "factory__address",
|
|
14850
|
+
FactoryEventIndex = "factory__eventIndex",
|
|
14851
|
+
FactoryId = "factory__id",
|
|
14852
|
+
Id = "id",
|
|
14853
|
+
Market = "market",
|
|
14854
|
+
MarketAddress = "marketAddress",
|
|
14855
|
+
MarketToken = "marketToken",
|
|
14856
|
+
MarketTokenAddress = "marketToken__address",
|
|
14857
|
+
MarketTokenDecimals = "marketToken__decimals",
|
|
14858
|
+
MarketTokenId = "marketToken__id",
|
|
14859
|
+
MarketTokenIsMock = "marketToken__isMock",
|
|
14860
|
+
MarketTokenName = "marketToken__name",
|
|
14861
|
+
MarketTokenSymbol = "marketToken__symbol",
|
|
14862
|
+
MarketAnnualInterestBips = "market__annualInterestBips",
|
|
14863
|
+
MarketAnnualInterestBipsUpdatedIndex = "market__annualInterestBipsUpdatedIndex",
|
|
14864
|
+
MarketBorrowIndex = "market__borrowIndex",
|
|
14865
|
+
MarketBorrower = "market__borrower",
|
|
14866
|
+
MarketCommitmentFeeBips = "market__commitmentFeeBips",
|
|
14867
|
+
MarketCreatedAt = "market__createdAt",
|
|
14868
|
+
MarketDebtRepaidIndex = "market__debtRepaidIndex",
|
|
14869
|
+
MarketDecimals = "market__decimals",
|
|
14870
|
+
MarketDelinquencyFeeBips = "market__delinquencyFeeBips",
|
|
14871
|
+
MarketDelinquencyGracePeriod = "market__delinquencyGracePeriod",
|
|
14872
|
+
MarketDelinquencyStatusChangedIndex = "market__delinquencyStatusChangedIndex",
|
|
14873
|
+
MarketDepositIndex = "market__depositIndex",
|
|
14874
|
+
MarketDrawnAmount = "market__drawnAmount",
|
|
14875
|
+
MarketEventIndex = "market__eventIndex",
|
|
14876
|
+
MarketFeeRecipient = "market__feeRecipient",
|
|
14877
|
+
MarketFeesCollectedIndex = "market__feesCollectedIndex",
|
|
14878
|
+
MarketFixedTermUpdatedIndex = "market__fixedTermUpdatedIndex",
|
|
14879
|
+
MarketForceBuyBackIndex = "market__forceBuyBackIndex",
|
|
14880
|
+
MarketId = "market__id",
|
|
14881
|
+
MarketIsClosed = "market__isClosed",
|
|
14882
|
+
MarketIsDelinquent = "market__isDelinquent",
|
|
14883
|
+
MarketIsIncurringPenalties = "market__isIncurringPenalties",
|
|
14884
|
+
MarketIsRegistered = "market__isRegistered",
|
|
14885
|
+
MarketLastInterestAccruedBlockNumber = "market__lastInterestAccruedBlockNumber",
|
|
14886
|
+
MarketLastInterestAccruedTimestamp = "market__lastInterestAccruedTimestamp",
|
|
14887
|
+
MarketMarketType = "market__marketType",
|
|
14888
|
+
MarketMaxTotalSupply = "market__maxTotalSupply",
|
|
14889
|
+
MarketMaxTotalSupplyUpdatedIndex = "market__maxTotalSupplyUpdatedIndex",
|
|
14890
|
+
MarketMinimumDepositUpdatedIndex = "market__minimumDepositUpdatedIndex",
|
|
14891
|
+
MarketName = "market__name",
|
|
14892
|
+
MarketNormalizedUnclaimedWithdrawals = "market__normalizedUnclaimedWithdrawals",
|
|
14893
|
+
MarketNumCollateralContracts = "market__numCollateralContracts",
|
|
14894
|
+
MarketOriginalAnnualInterestBips = "market__originalAnnualInterestBips",
|
|
14895
|
+
MarketOriginalReserveRatioBips = "market__originalReserveRatioBips",
|
|
14896
|
+
MarketPendingProtocolFees = "market__pendingProtocolFees",
|
|
14897
|
+
MarketPendingWithdrawalExpiry = "market__pendingWithdrawalExpiry",
|
|
14898
|
+
MarketProtocolFeeBips = "market__protocolFeeBips",
|
|
14899
|
+
MarketProtocolFeeBipsUpdatedIndex = "market__protocolFeeBipsUpdatedIndex",
|
|
14900
|
+
MarketReserveRatioBips = "market__reserveRatioBips",
|
|
14901
|
+
MarketScaleFactor = "market__scaleFactor",
|
|
14902
|
+
MarketScaledPendingWithdrawals = "market__scaledPendingWithdrawals",
|
|
14903
|
+
MarketScaledTotalSupply = "market__scaledTotalSupply",
|
|
14904
|
+
MarketSentinel = "market__sentinel",
|
|
14905
|
+
MarketSymbol = "market__symbol",
|
|
14906
|
+
MarketTemporaryReserveRatioActive = "market__temporaryReserveRatioActive",
|
|
14907
|
+
MarketTemporaryReserveRatioExpiry = "market__temporaryReserveRatioExpiry",
|
|
14908
|
+
MarketTimeDelinquent = "market__timeDelinquent",
|
|
14909
|
+
MarketTotalBaseInterestAccrued = "market__totalBaseInterestAccrued",
|
|
14910
|
+
MarketTotalBorrowed = "market__totalBorrowed",
|
|
14911
|
+
MarketTotalDelinquencyFeesAccrued = "market__totalDelinquencyFeesAccrued",
|
|
14912
|
+
MarketTotalDeposited = "market__totalDeposited",
|
|
14913
|
+
MarketTotalProtocolFeesAccrued = "market__totalProtocolFeesAccrued",
|
|
14914
|
+
MarketTotalRepaid = "market__totalRepaid",
|
|
14915
|
+
MarketVersion = "market__version",
|
|
14916
|
+
MarketWithdrawalBatchDuration = "market__withdrawalBatchDuration",
|
|
14917
|
+
MarketWithdrawalRequestsIndex = "market__withdrawalRequestsIndex",
|
|
14918
|
+
Token = "token",
|
|
14919
|
+
TokenAddress = "token__address",
|
|
14920
|
+
TokenDecimals = "token__decimals",
|
|
14921
|
+
TokenId = "token__id",
|
|
14922
|
+
TokenIsMock = "token__isMock",
|
|
14923
|
+
TokenName = "token__name",
|
|
14924
|
+
TokenSymbol = "token__symbol",
|
|
14925
|
+
TransactionHash = "transactionHash"
|
|
14926
|
+
}
|
|
14292
14927
|
export type SubgraphWithdrawalBatch = {
|
|
14293
14928
|
__typename: "WithdrawalBatch";
|
|
14294
14929
|
completedWithdrawalsCount: Scalars["Int"]["output"];
|