@sablier/indexers 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -9
- package/dist/experimental.d.ts +1 -1
- package/dist/experimental.d.ts.map +1 -1
- package/dist/experimental.js +2 -2
- package/dist/experimental.js.map +1 -1
- package/dist/gql/airdrops/envio/graphql.d.ts +619 -1614
- package/dist/gql/airdrops/envio/graphql.d.ts.map +1 -1
- package/dist/gql/airdrops/envio/graphql.js +16 -157
- package/dist/gql/airdrops/envio/graphql.js.map +1 -1
- package/dist/gql/airdrops/graph/graphql.d.ts +27 -0
- package/dist/gql/airdrops/graph/graphql.d.ts.map +1 -1
- package/dist/gql/airdrops/graph/graphql.js +7 -0
- package/dist/gql/airdrops/graph/graphql.js.map +1 -1
- package/dist/gql/flow/envio/graphql.d.ts +639 -1540
- package/dist/gql/flow/envio/graphql.d.ts.map +1 -1
- package/dist/gql/flow/envio/graphql.js +31 -155
- package/dist/gql/flow/envio/graphql.js.map +1 -1
- package/dist/gql/flow/graph/graphql.d.ts +216 -0
- package/dist/gql/flow/graph/graphql.d.ts.map +1 -1
- package/dist/gql/flow/graph/graphql.js +18 -1
- package/dist/gql/flow/graph/graphql.js.map +1 -1
- package/dist/gql/lockup/envio/graphql.d.ts +636 -1551
- package/dist/gql/lockup/envio/graphql.d.ts.map +1 -1
- package/dist/gql/lockup/envio/graphql.js +31 -158
- package/dist/gql/lockup/envio/graphql.js.map +1 -1
- package/dist/gql/lockup/graph/graphql.d.ts +216 -0
- package/dist/gql/lockup/graph/graphql.d.ts.map +1 -1
- package/dist/gql/lockup/graph/graphql.js +18 -1
- package/dist/gql/lockup/graph/graphql.js.map +1 -1
- package/dist/indexers/envio.d.ts +1 -1
- package/dist/indexers/envio.d.ts.map +1 -1
- package/dist/indexers/envio.js +0 -3
- package/dist/indexers/envio.js.map +1 -1
- package/dist/indexers/graph.d.ts +1 -1
- package/dist/indexers/graph.d.ts.map +1 -1
- package/dist/indexers/graph.js +8 -18
- package/dist/indexers/graph.js.map +1 -1
- package/dist/queries/airdrops/envio.d.ts.map +1 -1
- package/dist/queries/airdrops/graph.d.ts.map +1 -1
- package/dist/queries/flow/envio.d.ts.map +1 -1
- package/dist/queries/flow/graph.d.ts.map +1 -1
- package/dist/queries/lockup/envio.d.ts.map +1 -1
- package/dist/queries/lockup/graph.d.ts.map +1 -1
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +14 -6
|
@@ -587,6 +587,190 @@ export type Block_Height = {
|
|
|
587
587
|
number?: InputMaybe<Scalars['Int']['input']>;
|
|
588
588
|
number_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
589
589
|
};
|
|
590
|
+
export type Contract = {
|
|
591
|
+
__typename?: 'Contract';
|
|
592
|
+
address: Scalars['Bytes']['output'];
|
|
593
|
+
alias: Scalars['String']['output'];
|
|
594
|
+
category: Scalars['String']['output'];
|
|
595
|
+
chainId: Scalars['BigInt']['output'];
|
|
596
|
+
id: Scalars['String']['output'];
|
|
597
|
+
};
|
|
598
|
+
export type Contract_Filter = {
|
|
599
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
600
|
+
address?: InputMaybe<Scalars['Bytes']['input']>;
|
|
601
|
+
address_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
602
|
+
address_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
603
|
+
address_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
604
|
+
address_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
605
|
+
address_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
606
|
+
address_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
607
|
+
address_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
608
|
+
address_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
609
|
+
address_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
610
|
+
alias?: InputMaybe<Scalars['String']['input']>;
|
|
611
|
+
alias_contains?: InputMaybe<Scalars['String']['input']>;
|
|
612
|
+
alias_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
613
|
+
alias_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
614
|
+
alias_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
615
|
+
alias_gt?: InputMaybe<Scalars['String']['input']>;
|
|
616
|
+
alias_gte?: InputMaybe<Scalars['String']['input']>;
|
|
617
|
+
alias_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
618
|
+
alias_lt?: InputMaybe<Scalars['String']['input']>;
|
|
619
|
+
alias_lte?: InputMaybe<Scalars['String']['input']>;
|
|
620
|
+
alias_not?: InputMaybe<Scalars['String']['input']>;
|
|
621
|
+
alias_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
622
|
+
alias_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
623
|
+
alias_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
624
|
+
alias_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
625
|
+
alias_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
626
|
+
alias_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
627
|
+
alias_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
628
|
+
alias_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
629
|
+
alias_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
630
|
+
and?: InputMaybe<Array<InputMaybe<Contract_Filter>>>;
|
|
631
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
632
|
+
category_contains?: InputMaybe<Scalars['String']['input']>;
|
|
633
|
+
category_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
634
|
+
category_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
635
|
+
category_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
636
|
+
category_gt?: InputMaybe<Scalars['String']['input']>;
|
|
637
|
+
category_gte?: InputMaybe<Scalars['String']['input']>;
|
|
638
|
+
category_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
639
|
+
category_lt?: InputMaybe<Scalars['String']['input']>;
|
|
640
|
+
category_lte?: InputMaybe<Scalars['String']['input']>;
|
|
641
|
+
category_not?: InputMaybe<Scalars['String']['input']>;
|
|
642
|
+
category_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
643
|
+
category_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
644
|
+
category_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
645
|
+
category_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
646
|
+
category_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
647
|
+
category_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
648
|
+
category_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
649
|
+
category_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
650
|
+
category_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
651
|
+
chainId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
652
|
+
chainId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
653
|
+
chainId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
654
|
+
chainId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
655
|
+
chainId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
656
|
+
chainId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
657
|
+
chainId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
658
|
+
chainId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
659
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
660
|
+
id_contains?: InputMaybe<Scalars['String']['input']>;
|
|
661
|
+
id_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
662
|
+
id_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
663
|
+
id_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
664
|
+
id_gt?: InputMaybe<Scalars['String']['input']>;
|
|
665
|
+
id_gte?: InputMaybe<Scalars['String']['input']>;
|
|
666
|
+
id_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
667
|
+
id_lt?: InputMaybe<Scalars['String']['input']>;
|
|
668
|
+
id_lte?: InputMaybe<Scalars['String']['input']>;
|
|
669
|
+
id_not?: InputMaybe<Scalars['String']['input']>;
|
|
670
|
+
id_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
671
|
+
id_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
672
|
+
id_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
673
|
+
id_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
674
|
+
id_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
675
|
+
id_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
676
|
+
id_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
677
|
+
id_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
678
|
+
id_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
679
|
+
or?: InputMaybe<Array<InputMaybe<Contract_Filter>>>;
|
|
680
|
+
};
|
|
681
|
+
export declare enum Contract_OrderBy {
|
|
682
|
+
Address = "address",
|
|
683
|
+
Alias = "alias",
|
|
684
|
+
Category = "category",
|
|
685
|
+
ChainId = "chainId",
|
|
686
|
+
Id = "id"
|
|
687
|
+
}
|
|
688
|
+
export type DeprecatedStream = {
|
|
689
|
+
__typename?: 'DeprecatedStream';
|
|
690
|
+
chainId: Scalars['BigInt']['output'];
|
|
691
|
+
contractAddress: Scalars['Bytes']['output'];
|
|
692
|
+
hash: Scalars['Bytes']['output'];
|
|
693
|
+
id: Scalars['String']['output'];
|
|
694
|
+
timestamp: Scalars['BigInt']['output'];
|
|
695
|
+
tokenId: Scalars['BigInt']['output'];
|
|
696
|
+
};
|
|
697
|
+
export type DeprecatedStream_Filter = {
|
|
698
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
699
|
+
and?: InputMaybe<Array<InputMaybe<DeprecatedStream_Filter>>>;
|
|
700
|
+
chainId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
701
|
+
chainId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
702
|
+
chainId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
703
|
+
chainId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
704
|
+
chainId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
705
|
+
chainId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
706
|
+
chainId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
707
|
+
chainId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
708
|
+
contractAddress?: InputMaybe<Scalars['Bytes']['input']>;
|
|
709
|
+
contractAddress_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
710
|
+
contractAddress_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
711
|
+
contractAddress_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
712
|
+
contractAddress_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
713
|
+
contractAddress_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
714
|
+
contractAddress_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
715
|
+
contractAddress_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
716
|
+
contractAddress_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
717
|
+
contractAddress_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
718
|
+
hash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
719
|
+
hash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
720
|
+
hash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
721
|
+
hash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
722
|
+
hash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
723
|
+
hash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
724
|
+
hash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
725
|
+
hash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
726
|
+
hash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
727
|
+
hash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
728
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
729
|
+
id_contains?: InputMaybe<Scalars['String']['input']>;
|
|
730
|
+
id_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
731
|
+
id_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
732
|
+
id_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
733
|
+
id_gt?: InputMaybe<Scalars['String']['input']>;
|
|
734
|
+
id_gte?: InputMaybe<Scalars['String']['input']>;
|
|
735
|
+
id_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
736
|
+
id_lt?: InputMaybe<Scalars['String']['input']>;
|
|
737
|
+
id_lte?: InputMaybe<Scalars['String']['input']>;
|
|
738
|
+
id_not?: InputMaybe<Scalars['String']['input']>;
|
|
739
|
+
id_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
740
|
+
id_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
741
|
+
id_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
742
|
+
id_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
743
|
+
id_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
744
|
+
id_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
745
|
+
id_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
746
|
+
id_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
747
|
+
id_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
748
|
+
or?: InputMaybe<Array<InputMaybe<DeprecatedStream_Filter>>>;
|
|
749
|
+
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
750
|
+
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
751
|
+
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
752
|
+
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
753
|
+
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
754
|
+
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
755
|
+
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
756
|
+
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
757
|
+
tokenId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
758
|
+
tokenId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
759
|
+
tokenId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
760
|
+
tokenId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
761
|
+
tokenId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
762
|
+
tokenId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
763
|
+
tokenId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
764
|
+
tokenId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
765
|
+
};
|
|
766
|
+
export declare enum DeprecatedStream_OrderBy {
|
|
767
|
+
ChainId = "chainId",
|
|
768
|
+
ContractAddress = "contractAddress",
|
|
769
|
+
Hash = "hash",
|
|
770
|
+
Id = "id",
|
|
771
|
+
Timestamp = "timestamp",
|
|
772
|
+
TokenId = "tokenId"
|
|
773
|
+
}
|
|
590
774
|
export declare enum OrderDirection {
|
|
591
775
|
Asc = "asc",
|
|
592
776
|
Desc = "desc"
|
|
@@ -602,6 +786,10 @@ export type Query = {
|
|
|
602
786
|
batcher?: Maybe<Batcher>;
|
|
603
787
|
batchers: Array<Batcher>;
|
|
604
788
|
batches: Array<Batch>;
|
|
789
|
+
contract?: Maybe<Contract>;
|
|
790
|
+
contracts: Array<Contract>;
|
|
791
|
+
deprecatedStream?: Maybe<DeprecatedStream>;
|
|
792
|
+
deprecatedStreams: Array<DeprecatedStream>;
|
|
605
793
|
stream?: Maybe<Stream>;
|
|
606
794
|
streams: Array<Stream>;
|
|
607
795
|
watcher?: Maybe<Watcher>;
|
|
@@ -666,6 +854,34 @@ export type QueryBatchesArgs = {
|
|
|
666
854
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
667
855
|
where?: InputMaybe<Batch_Filter>;
|
|
668
856
|
};
|
|
857
|
+
export type QueryContractArgs = {
|
|
858
|
+
block?: InputMaybe<Block_Height>;
|
|
859
|
+
id: Scalars['ID']['input'];
|
|
860
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
861
|
+
};
|
|
862
|
+
export type QueryContractsArgs = {
|
|
863
|
+
block?: InputMaybe<Block_Height>;
|
|
864
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
865
|
+
orderBy?: InputMaybe<Contract_OrderBy>;
|
|
866
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
867
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
868
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
869
|
+
where?: InputMaybe<Contract_Filter>;
|
|
870
|
+
};
|
|
871
|
+
export type QueryDeprecatedStreamArgs = {
|
|
872
|
+
block?: InputMaybe<Block_Height>;
|
|
873
|
+
id: Scalars['ID']['input'];
|
|
874
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
875
|
+
};
|
|
876
|
+
export type QueryDeprecatedStreamsArgs = {
|
|
877
|
+
block?: InputMaybe<Block_Height>;
|
|
878
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
879
|
+
orderBy?: InputMaybe<DeprecatedStream_OrderBy>;
|
|
880
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
881
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
882
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
883
|
+
where?: InputMaybe<DeprecatedStream_Filter>;
|
|
884
|
+
};
|
|
669
885
|
export type QueryStreamArgs = {
|
|
670
886
|
block?: InputMaybe<Block_Height>;
|
|
671
887
|
id: Scalars['ID']['input'];
|