@0xslots/sdk 0.8.0 → 0.8.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/dist/index.d.ts +409 -35
- package/dist/index.js +120 -11
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -283,7 +283,7 @@ type BoughtEvent_Filter = {
|
|
|
283
283
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
284
284
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
285
285
|
};
|
|
286
|
-
type BoughtEvent_OrderBy = 'blockNumber' | 'buyer' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'deposit' | 'id' | 'previousOccupant' | 'price' | 'selfAssessedPrice' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
286
|
+
type BoughtEvent_OrderBy = 'blockNumber' | 'buyer' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'deposit' | 'id' | 'previousOccupant' | 'price' | 'selfAssessedPrice' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
287
287
|
type Currency = {
|
|
288
288
|
__typename?: 'Currency';
|
|
289
289
|
decimals: Scalars['Int']['output'];
|
|
@@ -465,7 +465,7 @@ type DepositedEvent_Filter = {
|
|
|
465
465
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
466
466
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
467
467
|
};
|
|
468
|
-
type DepositedEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'depositor' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
468
|
+
type DepositedEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'depositor' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
469
469
|
type Factory = {
|
|
470
470
|
__typename?: 'Factory';
|
|
471
471
|
id: Scalars['ID']['output'];
|
|
@@ -625,7 +625,129 @@ type LiquidatedEvent_Filter = {
|
|
|
625
625
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
626
626
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
627
627
|
};
|
|
628
|
-
type LiquidatedEvent_OrderBy = 'blockNumber' | 'bounty' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'liquidator' | 'occupant' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
628
|
+
type LiquidatedEvent_OrderBy = 'blockNumber' | 'bounty' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'liquidator' | 'occupant' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
629
|
+
type MetadataSlot = {
|
|
630
|
+
__typename?: 'MetadataSlot';
|
|
631
|
+
createdAt: Scalars['BigInt']['output'];
|
|
632
|
+
createdTx: Scalars['Bytes']['output'];
|
|
633
|
+
id: Scalars['ID']['output'];
|
|
634
|
+
slot: Slot;
|
|
635
|
+
updateCount: Scalars['BigInt']['output'];
|
|
636
|
+
updatedAt: Scalars['BigInt']['output'];
|
|
637
|
+
updatedBy: Scalars['Bytes']['output'];
|
|
638
|
+
updatedTx: Scalars['Bytes']['output'];
|
|
639
|
+
uri: Scalars['String']['output'];
|
|
640
|
+
};
|
|
641
|
+
type MetadataSlot_Filter = {
|
|
642
|
+
/** Filter for the block changed event. */
|
|
643
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
644
|
+
and?: InputMaybe<Array<InputMaybe<MetadataSlot_Filter>>>;
|
|
645
|
+
createdAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
646
|
+
createdAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
647
|
+
createdAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
648
|
+
createdAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
649
|
+
createdAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
650
|
+
createdAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
651
|
+
createdAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
652
|
+
createdAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
653
|
+
createdTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
654
|
+
createdTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
655
|
+
createdTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
656
|
+
createdTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
657
|
+
createdTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
658
|
+
createdTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
659
|
+
createdTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
660
|
+
createdTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
661
|
+
createdTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
662
|
+
createdTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
663
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
664
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
665
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
666
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
667
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
668
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
669
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
670
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
671
|
+
or?: InputMaybe<Array<InputMaybe<MetadataSlot_Filter>>>;
|
|
672
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
673
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
674
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
675
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
676
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
677
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
678
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
679
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
680
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
681
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
682
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
683
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
684
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
685
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
686
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
687
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
688
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
689
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
690
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
691
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
692
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
693
|
+
updateCount?: InputMaybe<Scalars['BigInt']['input']>;
|
|
694
|
+
updateCount_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
695
|
+
updateCount_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
696
|
+
updateCount_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
697
|
+
updateCount_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
698
|
+
updateCount_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
699
|
+
updateCount_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
700
|
+
updateCount_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
701
|
+
updatedAt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
702
|
+
updatedAt_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
703
|
+
updatedAt_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
704
|
+
updatedAt_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
705
|
+
updatedAt_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
706
|
+
updatedAt_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
707
|
+
updatedAt_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
708
|
+
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
709
|
+
updatedBy?: InputMaybe<Scalars['Bytes']['input']>;
|
|
710
|
+
updatedBy_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
711
|
+
updatedBy_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
712
|
+
updatedBy_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
713
|
+
updatedBy_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
714
|
+
updatedBy_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
715
|
+
updatedBy_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
716
|
+
updatedBy_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
717
|
+
updatedBy_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
718
|
+
updatedBy_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
719
|
+
updatedTx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
720
|
+
updatedTx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
721
|
+
updatedTx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
722
|
+
updatedTx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
723
|
+
updatedTx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
724
|
+
updatedTx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
725
|
+
updatedTx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
726
|
+
updatedTx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
727
|
+
updatedTx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
728
|
+
updatedTx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
729
|
+
uri?: InputMaybe<Scalars['String']['input']>;
|
|
730
|
+
uri_contains?: InputMaybe<Scalars['String']['input']>;
|
|
731
|
+
uri_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
732
|
+
uri_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
733
|
+
uri_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
734
|
+
uri_gt?: InputMaybe<Scalars['String']['input']>;
|
|
735
|
+
uri_gte?: InputMaybe<Scalars['String']['input']>;
|
|
736
|
+
uri_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
737
|
+
uri_lt?: InputMaybe<Scalars['String']['input']>;
|
|
738
|
+
uri_lte?: InputMaybe<Scalars['String']['input']>;
|
|
739
|
+
uri_not?: InputMaybe<Scalars['String']['input']>;
|
|
740
|
+
uri_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
741
|
+
uri_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
742
|
+
uri_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
743
|
+
uri_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
744
|
+
uri_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
745
|
+
uri_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
746
|
+
uri_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
747
|
+
uri_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
748
|
+
uri_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
749
|
+
};
|
|
750
|
+
type MetadataSlot_OrderBy = 'createdAt' | 'createdTx' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'updateCount' | 'updatedAt' | 'updatedBy' | 'updatedTx' | 'uri';
|
|
629
751
|
type MetadataUpdatedEvent = {
|
|
630
752
|
__typename?: 'MetadataUpdatedEvent';
|
|
631
753
|
blockNumber: Scalars['BigInt']['output'];
|
|
@@ -716,7 +838,7 @@ type MetadataUpdatedEvent_Filter = {
|
|
|
716
838
|
uri_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
717
839
|
uri_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
718
840
|
};
|
|
719
|
-
type MetadataUpdatedEvent_OrderBy = 'blockNumber' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
841
|
+
type MetadataUpdatedEvent_OrderBy = 'blockNumber' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx' | 'uri';
|
|
720
842
|
type Module = {
|
|
721
843
|
__typename?: 'Module';
|
|
722
844
|
factory: Factory;
|
|
@@ -805,7 +927,7 @@ type ModuleUpdateProposedEvent_Filter = {
|
|
|
805
927
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
806
928
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
807
929
|
};
|
|
808
|
-
type ModuleUpdateProposedEvent_OrderBy = 'blockNumber' | 'id' | 'newModule' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
930
|
+
type ModuleUpdateProposedEvent_OrderBy = 'blockNumber' | 'id' | 'newModule' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
809
931
|
type Module_Filter = {
|
|
810
932
|
/** Filter for the block changed event. */
|
|
811
933
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
@@ -957,7 +1079,7 @@ type PendingUpdateCancelledEvent_Filter = {
|
|
|
957
1079
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
958
1080
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
959
1081
|
};
|
|
960
|
-
type PendingUpdateCancelledEvent_OrderBy = 'blockNumber' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
1082
|
+
type PendingUpdateCancelledEvent_OrderBy = 'blockNumber' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
961
1083
|
type PriceUpdatedEvent = {
|
|
962
1084
|
__typename?: 'PriceUpdatedEvent';
|
|
963
1085
|
blockNumber: Scalars['BigInt']['output'];
|
|
@@ -1067,7 +1189,7 @@ type PriceUpdatedEvent_Filter = {
|
|
|
1067
1189
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1068
1190
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1069
1191
|
};
|
|
1070
|
-
type PriceUpdatedEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'newPrice' | 'oldPrice' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
1192
|
+
type PriceUpdatedEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'newPrice' | 'oldPrice' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1071
1193
|
type Query = {
|
|
1072
1194
|
__typename?: 'Query';
|
|
1073
1195
|
/** Access to subgraph metadata */
|
|
@@ -1084,6 +1206,8 @@ type Query = {
|
|
|
1084
1206
|
factory?: Maybe<Factory>;
|
|
1085
1207
|
liquidatedEvent?: Maybe<LiquidatedEvent>;
|
|
1086
1208
|
liquidatedEvents: Array<LiquidatedEvent>;
|
|
1209
|
+
metadataSlot?: Maybe<MetadataSlot>;
|
|
1210
|
+
metadataSlots: Array<MetadataSlot>;
|
|
1087
1211
|
metadataUpdatedEvent?: Maybe<MetadataUpdatedEvent>;
|
|
1088
1212
|
metadataUpdatedEvents: Array<MetadataUpdatedEvent>;
|
|
1089
1213
|
module?: Maybe<Module>;
|
|
@@ -1099,6 +1223,8 @@ type Query = {
|
|
|
1099
1223
|
settledEvent?: Maybe<SettledEvent>;
|
|
1100
1224
|
settledEvents: Array<SettledEvent>;
|
|
1101
1225
|
slot?: Maybe<Slot>;
|
|
1226
|
+
slotDeployedEvent?: Maybe<SlotDeployedEvent>;
|
|
1227
|
+
slotDeployedEvents: Array<SlotDeployedEvent>;
|
|
1102
1228
|
slots: Array<Slot>;
|
|
1103
1229
|
taxCollectedEvent?: Maybe<TaxCollectedEvent>;
|
|
1104
1230
|
taxCollectedEvents: Array<TaxCollectedEvent>;
|
|
@@ -1194,6 +1320,20 @@ type QueryLiquidatedEventsArgs = {
|
|
|
1194
1320
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1195
1321
|
where?: InputMaybe<LiquidatedEvent_Filter>;
|
|
1196
1322
|
};
|
|
1323
|
+
type QueryMetadataSlotArgs = {
|
|
1324
|
+
block?: InputMaybe<Block_Height>;
|
|
1325
|
+
id: Scalars['ID']['input'];
|
|
1326
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1327
|
+
};
|
|
1328
|
+
type QueryMetadataSlotsArgs = {
|
|
1329
|
+
block?: InputMaybe<Block_Height>;
|
|
1330
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1331
|
+
orderBy?: InputMaybe<MetadataSlot_OrderBy>;
|
|
1332
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1333
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1334
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1335
|
+
where?: InputMaybe<MetadataSlot_Filter>;
|
|
1336
|
+
};
|
|
1197
1337
|
type QueryMetadataUpdatedEventArgs = {
|
|
1198
1338
|
block?: InputMaybe<Block_Height>;
|
|
1199
1339
|
id: Scalars['ID']['input'];
|
|
@@ -1297,6 +1437,20 @@ type QuerySlotArgs = {
|
|
|
1297
1437
|
id: Scalars['ID']['input'];
|
|
1298
1438
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
1299
1439
|
};
|
|
1440
|
+
type QuerySlotDeployedEventArgs = {
|
|
1441
|
+
block?: InputMaybe<Block_Height>;
|
|
1442
|
+
id: Scalars['ID']['input'];
|
|
1443
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1444
|
+
};
|
|
1445
|
+
type QuerySlotDeployedEventsArgs = {
|
|
1446
|
+
block?: InputMaybe<Block_Height>;
|
|
1447
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1448
|
+
orderBy?: InputMaybe<SlotDeployedEvent_OrderBy>;
|
|
1449
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
1450
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1451
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
1452
|
+
where?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
1453
|
+
};
|
|
1300
1454
|
type QuerySlotsArgs = {
|
|
1301
1455
|
block?: InputMaybe<Block_Height>;
|
|
1302
1456
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1459,7 +1613,7 @@ type ReleasedEvent_Filter = {
|
|
|
1459
1613
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1460
1614
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1461
1615
|
};
|
|
1462
|
-
type ReleasedEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'occupant' | 'refund' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
1616
|
+
type ReleasedEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'occupant' | 'refund' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
1463
1617
|
type SettledEvent = {
|
|
1464
1618
|
__typename?: 'SettledEvent';
|
|
1465
1619
|
blockNumber: Scalars['BigInt']['output'];
|
|
@@ -1578,20 +1732,21 @@ type SettledEvent_Filter = {
|
|
|
1578
1732
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1579
1733
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1580
1734
|
};
|
|
1581
|
-
type SettledEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'depositRemaining' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
1735
|
+
type SettledEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'depositRemaining' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'taxOwed' | 'taxPaid' | 'timestamp' | 'tx';
|
|
1582
1736
|
type Slot = {
|
|
1583
1737
|
__typename?: 'Slot';
|
|
1584
1738
|
collectedTax: Scalars['BigInt']['output'];
|
|
1585
1739
|
createdAt: Scalars['BigInt']['output'];
|
|
1586
1740
|
createdTx: Scalars['Bytes']['output'];
|
|
1587
1741
|
currency: Currency;
|
|
1742
|
+
deployEvent?: Maybe<SlotDeployedEvent>;
|
|
1588
1743
|
deposit: Scalars['BigInt']['output'];
|
|
1589
1744
|
deposits: Array<DepositedEvent>;
|
|
1590
1745
|
id: Scalars['ID']['output'];
|
|
1591
1746
|
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
1592
1747
|
liquidations: Array<LiquidatedEvent>;
|
|
1593
1748
|
manager: Scalars['Bytes']['output'];
|
|
1594
|
-
|
|
1749
|
+
metadata?: Maybe<MetadataSlot>;
|
|
1595
1750
|
metadataUpdates: Array<MetadataUpdatedEvent>;
|
|
1596
1751
|
minDepositSeconds: Scalars['BigInt']['output'];
|
|
1597
1752
|
module?: Maybe<Module>;
|
|
@@ -1699,6 +1854,179 @@ type SlotWithdrawalsArgs = {
|
|
|
1699
1854
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1700
1855
|
where?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1701
1856
|
};
|
|
1857
|
+
type SlotDeployedEvent = {
|
|
1858
|
+
__typename?: 'SlotDeployedEvent';
|
|
1859
|
+
blockNumber: Scalars['BigInt']['output'];
|
|
1860
|
+
currency: Currency;
|
|
1861
|
+
deployer: Scalars['Bytes']['output'];
|
|
1862
|
+
id: Scalars['ID']['output'];
|
|
1863
|
+
liquidationBountyBps: Scalars['BigInt']['output'];
|
|
1864
|
+
manager: Scalars['Bytes']['output'];
|
|
1865
|
+
minDepositSeconds: Scalars['BigInt']['output'];
|
|
1866
|
+
module: Scalars['Bytes']['output'];
|
|
1867
|
+
mutableModule: Scalars['Boolean']['output'];
|
|
1868
|
+
mutableTax: Scalars['Boolean']['output'];
|
|
1869
|
+
recipient: Scalars['Bytes']['output'];
|
|
1870
|
+
slot: Slot;
|
|
1871
|
+
taxPercentage: Scalars['BigInt']['output'];
|
|
1872
|
+
timestamp: Scalars['BigInt']['output'];
|
|
1873
|
+
tx: Scalars['Bytes']['output'];
|
|
1874
|
+
};
|
|
1875
|
+
type SlotDeployedEvent_Filter = {
|
|
1876
|
+
/** Filter for the block changed event. */
|
|
1877
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1878
|
+
and?: InputMaybe<Array<InputMaybe<SlotDeployedEvent_Filter>>>;
|
|
1879
|
+
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1880
|
+
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1881
|
+
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1882
|
+
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1883
|
+
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1884
|
+
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1885
|
+
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1886
|
+
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1887
|
+
currency?: InputMaybe<Scalars['String']['input']>;
|
|
1888
|
+
currency_?: InputMaybe<Currency_Filter>;
|
|
1889
|
+
currency_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1890
|
+
currency_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1891
|
+
currency_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1892
|
+
currency_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1893
|
+
currency_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1894
|
+
currency_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1895
|
+
currency_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1896
|
+
currency_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1897
|
+
currency_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1898
|
+
currency_not?: InputMaybe<Scalars['String']['input']>;
|
|
1899
|
+
currency_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1900
|
+
currency_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1901
|
+
currency_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1902
|
+
currency_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1903
|
+
currency_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1904
|
+
currency_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1905
|
+
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1906
|
+
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1907
|
+
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1908
|
+
deployer?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1909
|
+
deployer_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1910
|
+
deployer_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1911
|
+
deployer_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1912
|
+
deployer_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1913
|
+
deployer_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1914
|
+
deployer_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1915
|
+
deployer_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1916
|
+
deployer_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1917
|
+
deployer_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1918
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1919
|
+
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
1920
|
+
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
1921
|
+
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1922
|
+
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
1923
|
+
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
1924
|
+
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
1925
|
+
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1926
|
+
liquidationBountyBps?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1927
|
+
liquidationBountyBps_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1928
|
+
liquidationBountyBps_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1929
|
+
liquidationBountyBps_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1930
|
+
liquidationBountyBps_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1931
|
+
liquidationBountyBps_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1932
|
+
liquidationBountyBps_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1933
|
+
liquidationBountyBps_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1934
|
+
manager?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1935
|
+
manager_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1936
|
+
manager_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1937
|
+
manager_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1938
|
+
manager_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1939
|
+
manager_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1940
|
+
manager_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1941
|
+
manager_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1942
|
+
manager_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1943
|
+
manager_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1944
|
+
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1945
|
+
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1946
|
+
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1947
|
+
minDepositSeconds_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1948
|
+
minDepositSeconds_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1949
|
+
minDepositSeconds_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1950
|
+
minDepositSeconds_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1951
|
+
minDepositSeconds_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1952
|
+
module?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1953
|
+
module_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1954
|
+
module_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1955
|
+
module_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1956
|
+
module_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1957
|
+
module_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1958
|
+
module_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1959
|
+
module_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1960
|
+
module_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1961
|
+
module_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1962
|
+
mutableModule?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1963
|
+
mutableModule_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1964
|
+
mutableModule_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1965
|
+
mutableModule_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1966
|
+
mutableTax?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1967
|
+
mutableTax_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1968
|
+
mutableTax_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1969
|
+
mutableTax_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
1970
|
+
or?: InputMaybe<Array<InputMaybe<SlotDeployedEvent_Filter>>>;
|
|
1971
|
+
recipient?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1972
|
+
recipient_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1973
|
+
recipient_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1974
|
+
recipient_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1975
|
+
recipient_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1976
|
+
recipient_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1977
|
+
recipient_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1978
|
+
recipient_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1979
|
+
recipient_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1980
|
+
recipient_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1981
|
+
slot?: InputMaybe<Scalars['String']['input']>;
|
|
1982
|
+
slot_?: InputMaybe<Slot_Filter>;
|
|
1983
|
+
slot_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1984
|
+
slot_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1985
|
+
slot_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1986
|
+
slot_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1987
|
+
slot_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1988
|
+
slot_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1989
|
+
slot_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1990
|
+
slot_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1991
|
+
slot_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1992
|
+
slot_not?: InputMaybe<Scalars['String']['input']>;
|
|
1993
|
+
slot_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1994
|
+
slot_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1995
|
+
slot_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1996
|
+
slot_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1997
|
+
slot_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1998
|
+
slot_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1999
|
+
slot_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2000
|
+
slot_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2001
|
+
slot_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2002
|
+
taxPercentage?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2003
|
+
taxPercentage_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2004
|
+
taxPercentage_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2005
|
+
taxPercentage_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2006
|
+
taxPercentage_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2007
|
+
taxPercentage_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2008
|
+
taxPercentage_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2009
|
+
taxPercentage_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2010
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2011
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2012
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2013
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2014
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2015
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2016
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2017
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2018
|
+
tx?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2019
|
+
tx_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2020
|
+
tx_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2021
|
+
tx_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2022
|
+
tx_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2023
|
+
tx_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2024
|
+
tx_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2025
|
+
tx_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2026
|
+
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2027
|
+
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2028
|
+
};
|
|
2029
|
+
type SlotDeployedEvent_OrderBy = 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'deployer' | 'id' | 'liquidationBountyBps' | 'manager' | 'minDepositSeconds' | 'module' | 'mutableModule' | 'mutableTax' | 'recipient' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'taxPercentage' | 'timestamp' | 'tx';
|
|
1702
2030
|
type Slot_Filter = {
|
|
1703
2031
|
/** Filter for the block changed event. */
|
|
1704
2032
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
@@ -1750,6 +2078,7 @@ type Slot_Filter = {
|
|
|
1750
2078
|
currency_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1751
2079
|
currency_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1752
2080
|
currency_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2081
|
+
deployEvent_?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
1753
2082
|
deposit?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1754
2083
|
deposit_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1755
2084
|
deposit_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1786,27 +2115,8 @@ type Slot_Filter = {
|
|
|
1786
2115
|
manager_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1787
2116
|
manager_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
1788
2117
|
manager_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
1789
|
-
metadataURI?: InputMaybe<Scalars['String']['input']>;
|
|
1790
|
-
metadataURI_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1791
|
-
metadataURI_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1792
|
-
metadataURI_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1793
|
-
metadataURI_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1794
|
-
metadataURI_gt?: InputMaybe<Scalars['String']['input']>;
|
|
1795
|
-
metadataURI_gte?: InputMaybe<Scalars['String']['input']>;
|
|
1796
|
-
metadataURI_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1797
|
-
metadataURI_lt?: InputMaybe<Scalars['String']['input']>;
|
|
1798
|
-
metadataURI_lte?: InputMaybe<Scalars['String']['input']>;
|
|
1799
|
-
metadataURI_not?: InputMaybe<Scalars['String']['input']>;
|
|
1800
|
-
metadataURI_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
1801
|
-
metadataURI_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1802
|
-
metadataURI_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
1803
|
-
metadataURI_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1804
|
-
metadataURI_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1805
|
-
metadataURI_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1806
|
-
metadataURI_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1807
|
-
metadataURI_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
1808
|
-
metadataURI_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
1809
2118
|
metadataUpdates_?: InputMaybe<MetadataUpdatedEvent_Filter>;
|
|
2119
|
+
metadata_?: InputMaybe<MetadataSlot_Filter>;
|
|
1810
2120
|
minDepositSeconds?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1811
2121
|
minDepositSeconds_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
1812
2122
|
minDepositSeconds_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -1949,7 +2259,7 @@ type Slot_Filter = {
|
|
|
1949
2259
|
updatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
1950
2260
|
withdrawals_?: InputMaybe<WithdrawnEvent_Filter>;
|
|
1951
2261
|
};
|
|
1952
|
-
type Slot_OrderBy = 'collectedTax' | 'createdAt' | 'createdTx' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'deposit' | 'deposits' | 'id' | 'liquidationBountyBps' | 'liquidations' | 'manager' | '
|
|
2262
|
+
type Slot_OrderBy = 'collectedTax' | 'createdAt' | 'createdTx' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'deployEvent' | 'deployEvent__blockNumber' | 'deployEvent__deployer' | 'deployEvent__id' | 'deployEvent__liquidationBountyBps' | 'deployEvent__manager' | 'deployEvent__minDepositSeconds' | 'deployEvent__module' | 'deployEvent__mutableModule' | 'deployEvent__mutableTax' | 'deployEvent__recipient' | 'deployEvent__taxPercentage' | 'deployEvent__timestamp' | 'deployEvent__tx' | 'deposit' | 'deposits' | 'id' | 'liquidationBountyBps' | 'liquidations' | 'manager' | 'metadata' | 'metadataUpdates' | 'metadata__createdAt' | 'metadata__createdTx' | 'metadata__id' | 'metadata__updateCount' | 'metadata__updatedAt' | 'metadata__updatedBy' | 'metadata__updatedTx' | 'metadata__uri' | 'minDepositSeconds' | 'module' | 'moduleUpdateProposals' | 'module__id' | 'module__name' | 'module__verified' | 'module__version' | 'mutableModule' | 'mutableTax' | 'occupant' | 'occupantAccount' | 'occupantAccount__id' | 'occupantAccount__occupiedCount' | 'occupantAccount__slotCount' | 'occupantAccount__type' | 'pendingUpdateCancellations' | 'price' | 'priceUpdates' | 'purchases' | 'recipient' | 'recipientAccount' | 'recipientAccount__id' | 'recipientAccount__occupiedCount' | 'recipientAccount__slotCount' | 'recipientAccount__type' | 'releases' | 'settlements' | 'taxCollections' | 'taxPercentage' | 'taxUpdateProposals' | 'totalCollected' | 'updatedAt' | 'withdrawals';
|
|
1953
2263
|
type TaxCollectedEvent = {
|
|
1954
2264
|
__typename?: 'TaxCollectedEvent';
|
|
1955
2265
|
amount: Scalars['BigInt']['output'];
|
|
@@ -2061,7 +2371,7 @@ type TaxCollectedEvent_Filter = {
|
|
|
2061
2371
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2062
2372
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2063
2373
|
};
|
|
2064
|
-
type TaxCollectedEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'recipient' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
2374
|
+
type TaxCollectedEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'recipient' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
2065
2375
|
type TaxUpdateProposedEvent = {
|
|
2066
2376
|
__typename?: 'TaxUpdateProposedEvent';
|
|
2067
2377
|
blockNumber: Scalars['BigInt']['output'];
|
|
@@ -2140,7 +2450,7 @@ type TaxUpdateProposedEvent_Filter = {
|
|
|
2140
2450
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2141
2451
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2142
2452
|
};
|
|
2143
|
-
type TaxUpdateProposedEvent_OrderBy = 'blockNumber' | 'id' | 'newPercentage' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
2453
|
+
type TaxUpdateProposedEvent_OrderBy = 'blockNumber' | 'id' | 'newPercentage' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
2144
2454
|
type WithdrawnEvent = {
|
|
2145
2455
|
__typename?: 'WithdrawnEvent';
|
|
2146
2456
|
amount: Scalars['BigInt']['output'];
|
|
@@ -2252,7 +2562,7 @@ type WithdrawnEvent_Filter = {
|
|
|
2252
2562
|
tx_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2253
2563
|
tx_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2254
2564
|
};
|
|
2255
|
-
type WithdrawnEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'occupant' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | '
|
|
2565
|
+
type WithdrawnEvent_OrderBy = 'amount' | 'blockNumber' | 'currency' | 'currency__decimals' | 'currency__id' | 'currency__name' | 'currency__symbol' | 'id' | 'occupant' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx';
|
|
2256
2566
|
type _Block_ = {
|
|
2257
2567
|
__typename?: '_Block_';
|
|
2258
2568
|
/** The hash of the block */
|
|
@@ -2354,11 +2664,69 @@ type CurrencyFieldsFragment = {
|
|
|
2354
2664
|
symbol?: string | null;
|
|
2355
2665
|
decimals: number;
|
|
2356
2666
|
};
|
|
2667
|
+
type GetSlotDeployedEventsQueryVariables = Exact<{
|
|
2668
|
+
first: Scalars['Int']['input'];
|
|
2669
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2670
|
+
orderBy?: InputMaybe<SlotDeployedEvent_OrderBy>;
|
|
2671
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
2672
|
+
where?: InputMaybe<SlotDeployedEvent_Filter>;
|
|
2673
|
+
block?: InputMaybe<Block_Height>;
|
|
2674
|
+
}>;
|
|
2675
|
+
type GetSlotDeployedEventsQuery = {
|
|
2676
|
+
__typename?: 'Query';
|
|
2677
|
+
slotDeployedEvents: Array<{
|
|
2678
|
+
__typename?: 'SlotDeployedEvent';
|
|
2679
|
+
id: string;
|
|
2680
|
+
recipient: string;
|
|
2681
|
+
manager: string;
|
|
2682
|
+
mutableTax: boolean;
|
|
2683
|
+
mutableModule: boolean;
|
|
2684
|
+
taxPercentage: string;
|
|
2685
|
+
module: string;
|
|
2686
|
+
liquidationBountyBps: string;
|
|
2687
|
+
minDepositSeconds: string;
|
|
2688
|
+
deployer: string;
|
|
2689
|
+
timestamp: string;
|
|
2690
|
+
blockNumber: string;
|
|
2691
|
+
tx: string;
|
|
2692
|
+
slot: {
|
|
2693
|
+
__typename?: 'Slot';
|
|
2694
|
+
id: string;
|
|
2695
|
+
};
|
|
2696
|
+
currency: {
|
|
2697
|
+
__typename?: 'Currency';
|
|
2698
|
+
id: string;
|
|
2699
|
+
name?: string | null;
|
|
2700
|
+
symbol?: string | null;
|
|
2701
|
+
decimals: number;
|
|
2702
|
+
};
|
|
2703
|
+
}>;
|
|
2704
|
+
};
|
|
2357
2705
|
type GetRecentEventsQueryVariables = Exact<{
|
|
2358
2706
|
first: Scalars['Int']['input'];
|
|
2707
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2359
2708
|
}>;
|
|
2360
2709
|
type GetRecentEventsQuery = {
|
|
2361
2710
|
__typename?: 'Query';
|
|
2711
|
+
slotDeployedEvents: Array<{
|
|
2712
|
+
__typename?: 'SlotDeployedEvent';
|
|
2713
|
+
id: string;
|
|
2714
|
+
recipient: string;
|
|
2715
|
+
deployer: string;
|
|
2716
|
+
timestamp: string;
|
|
2717
|
+
tx: string;
|
|
2718
|
+
slot: {
|
|
2719
|
+
__typename?: 'Slot';
|
|
2720
|
+
id: string;
|
|
2721
|
+
};
|
|
2722
|
+
currency: {
|
|
2723
|
+
__typename?: 'Currency';
|
|
2724
|
+
id: string;
|
|
2725
|
+
name?: string | null;
|
|
2726
|
+
symbol?: string | null;
|
|
2727
|
+
decimals: number;
|
|
2728
|
+
};
|
|
2729
|
+
}>;
|
|
2362
2730
|
boughtEvents: Array<{
|
|
2363
2731
|
__typename?: 'BoughtEvent';
|
|
2364
2732
|
id: string;
|
|
@@ -2785,6 +3153,7 @@ type GetPriceUpdatedEventsQuery = {
|
|
|
2785
3153
|
type GetSlotActivityQueryVariables = Exact<{
|
|
2786
3154
|
slotId: Scalars['String']['input'];
|
|
2787
3155
|
first: Scalars['Int']['input'];
|
|
3156
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2788
3157
|
}>;
|
|
2789
3158
|
type GetSlotActivityQuery = {
|
|
2790
3159
|
__typename?: 'Query';
|
|
@@ -3222,6 +3591,7 @@ declare const CurrencyFieldsFragmentDoc: graphql.DocumentNode;
|
|
|
3222
3591
|
declare const SlotFieldsFragmentDoc: graphql.DocumentNode;
|
|
3223
3592
|
declare const GetAccountDocument: graphql.DocumentNode;
|
|
3224
3593
|
declare const GetAccountsDocument: graphql.DocumentNode;
|
|
3594
|
+
declare const GetSlotDeployedEventsDocument: graphql.DocumentNode;
|
|
3225
3595
|
declare const GetRecentEventsDocument: graphql.DocumentNode;
|
|
3226
3596
|
declare const GetBoughtEventsDocument: graphql.DocumentNode;
|
|
3227
3597
|
declare const GetReleasedEventsDocument: graphql.DocumentNode;
|
|
@@ -3242,6 +3612,7 @@ type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>)
|
|
|
3242
3612
|
declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
3243
3613
|
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
3244
3614
|
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
3615
|
+
GetSlotDeployedEvents(variables: GetSlotDeployedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSlotDeployedEventsQuery>;
|
|
3245
3616
|
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
3246
3617
|
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
3247
3618
|
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
@@ -3342,6 +3713,7 @@ declare class SlotsClient {
|
|
|
3342
3713
|
getSdk(): {
|
|
3343
3714
|
GetAccount(variables: GetAccountQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountQuery>;
|
|
3344
3715
|
GetAccounts(variables: GetAccountsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetAccountsQuery>;
|
|
3716
|
+
GetSlotDeployedEvents(variables: GetSlotDeployedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetSlotDeployedEventsQuery>;
|
|
3345
3717
|
GetRecentEvents(variables: GetRecentEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetRecentEventsQuery>;
|
|
3346
3718
|
GetBoughtEvents(variables: GetBoughtEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetBoughtEventsQuery>;
|
|
3347
3719
|
GetReleasedEvents(variables: GetReleasedEventsQueryVariables, requestHeaders?: any, signal?: RequestInit["signal"]): Promise<GetReleasedEventsQuery>;
|
|
@@ -3378,6 +3750,8 @@ declare class SlotsClient {
|
|
|
3378
3750
|
getFactory(): Promise<GetFactoryQuery>;
|
|
3379
3751
|
/** Fetch registered modules. */
|
|
3380
3752
|
getModules(...args: Parameters<ReturnType<typeof getSdk>["GetModules"]>): Promise<GetModulesQuery>;
|
|
3753
|
+
/** Fetch slot deployed events with optional filters. */
|
|
3754
|
+
getSlotDeployedEvents(...args: Parameters<ReturnType<typeof getSdk>["GetSlotDeployedEvents"]>): Promise<GetSlotDeployedEventsQuery>;
|
|
3381
3755
|
/** Fetch bought events with optional filters. */
|
|
3382
3756
|
getBoughtEvents(...args: Parameters<ReturnType<typeof getSdk>["GetBoughtEvents"]>): Promise<GetBoughtEventsQuery>;
|
|
3383
3757
|
/** Fetch settled events with optional filters. */
|
|
@@ -3551,4 +3925,4 @@ declare class SlotsError extends Error {
|
|
|
3551
3925
|
constructor(operation: string, cause: unknown);
|
|
3552
3926
|
}
|
|
3553
3927
|
|
|
3554
|
-
export { type Account, type AccountFieldsFragment, AccountFieldsFragmentDoc, type AccountSlotsAsOccupantArgs, type AccountSlotsAsRecipientArgs, type AccountType, type Account_Filter, type Account_OrderBy, type Aggregation_Current, type Aggregation_Interval, type BlockChangedFilter, type Block_Height, type BoughtEvent, type BoughtEvent_Filter, type BoughtEvent_OrderBy, type BuyParams, type CreateSlotParams, type CreateSlotsParams, type Currency, type CurrencyFieldsFragment, CurrencyFieldsFragmentDoc, type Currency_Filter, type Currency_OrderBy, type DepositedEvent, type DepositedEvent_Filter, type DepositedEvent_OrderBy, type Exact, type Factory, type FactoryModulesArgs, type Factory_Filter, type Factory_OrderBy, GetAccountDocument, type GetAccountQuery, type GetAccountQueryVariables, GetAccountsDocument, type GetAccountsQuery, type GetAccountsQueryVariables, GetBoughtEventsDocument, type GetBoughtEventsQuery, type GetBoughtEventsQueryVariables, GetDepositedEventsDocument, type GetDepositedEventsQuery, type GetDepositedEventsQueryVariables, GetFactoryDocument, type GetFactoryQuery, type GetFactoryQueryVariables, GetLiquidatedEventsDocument, type GetLiquidatedEventsQuery, type GetLiquidatedEventsQueryVariables, GetModulesDocument, type GetModulesQuery, type GetModulesQueryVariables, GetPriceUpdatedEventsDocument, type GetPriceUpdatedEventsQuery, type GetPriceUpdatedEventsQueryVariables, GetRecentEventsDocument, type GetRecentEventsQuery, type GetRecentEventsQueryVariables, GetReleasedEventsDocument, type GetReleasedEventsQuery, type GetReleasedEventsQueryVariables, GetSettledEventsDocument, type GetSettledEventsQuery, type GetSettledEventsQueryVariables, GetSlotActivityDocument, type GetSlotActivityQuery, type GetSlotActivityQueryVariables, GetSlotDocument, type GetSlotQuery, type GetSlotQueryVariables, GetSlotsByOccupantDocument, type GetSlotsByOccupantQuery, type GetSlotsByOccupantQueryVariables, GetSlotsByRecipientDocument, type GetSlotsByRecipientQuery, type GetSlotsByRecipientQueryVariables, GetSlotsDocument, type GetSlotsQuery, type GetSlotsQueryVariables, GetTaxCollectedEventsDocument, type GetTaxCollectedEventsQuery, type GetTaxCollectedEventsQueryVariables, GetWithdrawnEventsDocument, type GetWithdrawnEventsQuery, type GetWithdrawnEventsQueryVariables, type Incremental, type InputMaybe, type LiquidatedEvent, type LiquidatedEvent_Filter, type LiquidatedEvent_OrderBy, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type MetadataUpdatedEvent, type MetadataUpdatedEvent_Filter, type MetadataUpdatedEvent_OrderBy, type Module, type ModuleUpdateProposedEvent, type ModuleUpdateProposedEvent_Filter, type ModuleUpdateProposedEvent_OrderBy, type Module_Filter, type Module_OrderBy, type OrderDirection, type PendingUpdateCancelledEvent, type PendingUpdateCancelledEvent_Filter, type PendingUpdateCancelledEvent_OrderBy, type PriceUpdatedEvent, type PriceUpdatedEvent_Filter, type PriceUpdatedEvent_OrderBy, type Query, type QueryAccountArgs, type QueryAccountsArgs, type QueryBoughtEventArgs, type QueryBoughtEventsArgs, type QueryCurrenciesArgs, type QueryCurrencyArgs, type QueryDepositedEventArgs, type QueryDepositedEventsArgs, type QueryFactoriesArgs, type QueryFactoryArgs, type QueryLiquidatedEventArgs, type QueryLiquidatedEventsArgs, type QueryMetadataUpdatedEventArgs, type QueryMetadataUpdatedEventsArgs, type QueryModuleArgs, type QueryModuleUpdateProposedEventArgs, type QueryModuleUpdateProposedEventsArgs, type QueryModulesArgs, type QueryPendingUpdateCancelledEventArgs, type QueryPendingUpdateCancelledEventsArgs, type QueryPriceUpdatedEventArgs, type QueryPriceUpdatedEventsArgs, type QueryReleasedEventArgs, type QueryReleasedEventsArgs, type QuerySettledEventArgs, type QuerySettledEventsArgs, type QuerySlotArgs, type QuerySlotsArgs, type QueryTaxCollectedEventArgs, type QueryTaxCollectedEventsArgs, type QueryTaxUpdateProposedEventArgs, type QueryTaxUpdateProposedEventsArgs, type QueryWithdrawnEventArgs, type QueryWithdrawnEventsArgs, type Query_MetaArgs, type ReleasedEvent, type ReleasedEvent_Filter, type ReleasedEvent_OrderBy, SUBGRAPH_URLS, type Scalars, type Sdk, type SdkFunctionWrapper, type SettledEvent, type SettledEvent_Filter, type SettledEvent_OrderBy, type Slot, type SlotConfig, type SlotDepositsArgs, type SlotFieldsFragment, SlotFieldsFragmentDoc, type SlotInitParams, type SlotLiquidationsArgs, type SlotMetadataUpdatesArgs, type SlotModuleUpdateProposalsArgs, type SlotPendingUpdateCancellationsArgs, type SlotPriceUpdatesArgs, type SlotPurchasesArgs, type SlotReleasesArgs, type SlotSettlementsArgs, type SlotTaxCollectionsArgs, type SlotTaxUpdateProposalsArgs, type SlotWithdrawalsArgs, type Slot_Filter, type Slot_OrderBy, SlotsChain, SlotsClient, type SlotsClientConfig, SlotsError, type SubgraphMeta, type TaxCollectedEvent, type TaxCollectedEvent_Filter, type TaxCollectedEvent_OrderBy, type TaxUpdateProposedEvent, type TaxUpdateProposedEvent_Filter, type TaxUpdateProposedEvent_OrderBy, type WithdrawnEvent, type WithdrawnEvent_Filter, type WithdrawnEvent_OrderBy, type _Block_, type _Meta_, type _SubgraphErrorPolicy_, createSlotsClient, getSdk };
|
|
3928
|
+
export { type Account, type AccountFieldsFragment, AccountFieldsFragmentDoc, type AccountSlotsAsOccupantArgs, type AccountSlotsAsRecipientArgs, type AccountType, type Account_Filter, type Account_OrderBy, type Aggregation_Current, type Aggregation_Interval, type BlockChangedFilter, type Block_Height, type BoughtEvent, type BoughtEvent_Filter, type BoughtEvent_OrderBy, type BuyParams, type CreateSlotParams, type CreateSlotsParams, type Currency, type CurrencyFieldsFragment, CurrencyFieldsFragmentDoc, type Currency_Filter, type Currency_OrderBy, type DepositedEvent, type DepositedEvent_Filter, type DepositedEvent_OrderBy, type Exact, type Factory, type FactoryModulesArgs, type Factory_Filter, type Factory_OrderBy, GetAccountDocument, type GetAccountQuery, type GetAccountQueryVariables, GetAccountsDocument, type GetAccountsQuery, type GetAccountsQueryVariables, GetBoughtEventsDocument, type GetBoughtEventsQuery, type GetBoughtEventsQueryVariables, GetDepositedEventsDocument, type GetDepositedEventsQuery, type GetDepositedEventsQueryVariables, GetFactoryDocument, type GetFactoryQuery, type GetFactoryQueryVariables, GetLiquidatedEventsDocument, type GetLiquidatedEventsQuery, type GetLiquidatedEventsQueryVariables, GetModulesDocument, type GetModulesQuery, type GetModulesQueryVariables, GetPriceUpdatedEventsDocument, type GetPriceUpdatedEventsQuery, type GetPriceUpdatedEventsQueryVariables, GetRecentEventsDocument, type GetRecentEventsQuery, type GetRecentEventsQueryVariables, GetReleasedEventsDocument, type GetReleasedEventsQuery, type GetReleasedEventsQueryVariables, GetSettledEventsDocument, type GetSettledEventsQuery, type GetSettledEventsQueryVariables, GetSlotActivityDocument, type GetSlotActivityQuery, type GetSlotActivityQueryVariables, GetSlotDeployedEventsDocument, type GetSlotDeployedEventsQuery, type GetSlotDeployedEventsQueryVariables, GetSlotDocument, type GetSlotQuery, type GetSlotQueryVariables, GetSlotsByOccupantDocument, type GetSlotsByOccupantQuery, type GetSlotsByOccupantQueryVariables, GetSlotsByRecipientDocument, type GetSlotsByRecipientQuery, type GetSlotsByRecipientQueryVariables, GetSlotsDocument, type GetSlotsQuery, type GetSlotsQueryVariables, GetTaxCollectedEventsDocument, type GetTaxCollectedEventsQuery, type GetTaxCollectedEventsQueryVariables, GetWithdrawnEventsDocument, type GetWithdrawnEventsQuery, type GetWithdrawnEventsQueryVariables, type Incremental, type InputMaybe, type LiquidatedEvent, type LiquidatedEvent_Filter, type LiquidatedEvent_OrderBy, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, type MetadataSlot, type MetadataSlot_Filter, type MetadataSlot_OrderBy, type MetadataUpdatedEvent, type MetadataUpdatedEvent_Filter, type MetadataUpdatedEvent_OrderBy, type Module, type ModuleUpdateProposedEvent, type ModuleUpdateProposedEvent_Filter, type ModuleUpdateProposedEvent_OrderBy, type Module_Filter, type Module_OrderBy, type OrderDirection, type PendingUpdateCancelledEvent, type PendingUpdateCancelledEvent_Filter, type PendingUpdateCancelledEvent_OrderBy, type PriceUpdatedEvent, type PriceUpdatedEvent_Filter, type PriceUpdatedEvent_OrderBy, type Query, type QueryAccountArgs, type QueryAccountsArgs, type QueryBoughtEventArgs, type QueryBoughtEventsArgs, type QueryCurrenciesArgs, type QueryCurrencyArgs, type QueryDepositedEventArgs, type QueryDepositedEventsArgs, type QueryFactoriesArgs, type QueryFactoryArgs, type QueryLiquidatedEventArgs, type QueryLiquidatedEventsArgs, type QueryMetadataSlotArgs, type QueryMetadataSlotsArgs, type QueryMetadataUpdatedEventArgs, type QueryMetadataUpdatedEventsArgs, type QueryModuleArgs, type QueryModuleUpdateProposedEventArgs, type QueryModuleUpdateProposedEventsArgs, type QueryModulesArgs, type QueryPendingUpdateCancelledEventArgs, type QueryPendingUpdateCancelledEventsArgs, type QueryPriceUpdatedEventArgs, type QueryPriceUpdatedEventsArgs, type QueryReleasedEventArgs, type QueryReleasedEventsArgs, type QuerySettledEventArgs, type QuerySettledEventsArgs, type QuerySlotArgs, type QuerySlotDeployedEventArgs, type QuerySlotDeployedEventsArgs, type QuerySlotsArgs, type QueryTaxCollectedEventArgs, type QueryTaxCollectedEventsArgs, type QueryTaxUpdateProposedEventArgs, type QueryTaxUpdateProposedEventsArgs, type QueryWithdrawnEventArgs, type QueryWithdrawnEventsArgs, type Query_MetaArgs, type ReleasedEvent, type ReleasedEvent_Filter, type ReleasedEvent_OrderBy, SUBGRAPH_URLS, type Scalars, type Sdk, type SdkFunctionWrapper, type SettledEvent, type SettledEvent_Filter, type SettledEvent_OrderBy, type Slot, type SlotConfig, type SlotDeployedEvent, type SlotDeployedEvent_Filter, type SlotDeployedEvent_OrderBy, type SlotDepositsArgs, type SlotFieldsFragment, SlotFieldsFragmentDoc, type SlotInitParams, type SlotLiquidationsArgs, type SlotMetadataUpdatesArgs, type SlotModuleUpdateProposalsArgs, type SlotPendingUpdateCancellationsArgs, type SlotPriceUpdatesArgs, type SlotPurchasesArgs, type SlotReleasesArgs, type SlotSettlementsArgs, type SlotTaxCollectionsArgs, type SlotTaxUpdateProposalsArgs, type SlotWithdrawalsArgs, type Slot_Filter, type Slot_OrderBy, SlotsChain, SlotsClient, type SlotsClientConfig, SlotsError, type SubgraphMeta, type TaxCollectedEvent, type TaxCollectedEvent_Filter, type TaxCollectedEvent_OrderBy, type TaxUpdateProposedEvent, type TaxUpdateProposedEvent_Filter, type TaxUpdateProposedEvent_OrderBy, type WithdrawnEvent, type WithdrawnEvent_Filter, type WithdrawnEvent_OrderBy, type _Block_, type _Meta_, type _SubgraphErrorPolicy_, createSlotsClient, getSdk };
|