@requestnetwork/payment-detection 0.45.1-next.2061 → 0.45.1-next.2062
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.
|
@@ -2672,7 +2672,7 @@ export type ApprovalEvent = Event & {
|
|
|
2672
2672
|
__typename?: 'ApprovalEvent';
|
|
2673
2673
|
/**
|
|
2674
2674
|
* Contains the addresses that were impacted by this event:
|
|
2675
|
-
* addresses[0] = `
|
|
2675
|
+
* addresses[0] = `token` (superToken)
|
|
2676
2676
|
* addresses[1] = `owner`
|
|
2677
2677
|
* addresses[2] = `to`
|
|
2678
2678
|
*
|
|
@@ -2688,32 +2688,20 @@ export type ApprovalEvent = Event & {
|
|
|
2688
2688
|
gasPrice: Scalars['BigInt']['output'];
|
|
2689
2689
|
gasUsed: Scalars['BigInt']['output'];
|
|
2690
2690
|
id: Scalars['ID']['output'];
|
|
2691
|
-
/**
|
|
2692
|
-
* Indicates whether the event was emitted for the approval of an NFT.
|
|
2693
|
-
*
|
|
2694
|
-
*/
|
|
2695
|
-
isNFTApproval: Scalars['Boolean']['output'];
|
|
2696
2691
|
logIndex: Scalars['BigInt']['output'];
|
|
2697
2692
|
name: Scalars['String']['output'];
|
|
2698
2693
|
order: Scalars['BigInt']['output'];
|
|
2699
2694
|
/**
|
|
2700
|
-
* The address that will be granting allowance to transfer ERC20
|
|
2695
|
+
* The address that will be granting allowance to transfer ERC20.
|
|
2701
2696
|
*
|
|
2702
2697
|
*/
|
|
2703
2698
|
owner: Account;
|
|
2704
2699
|
timestamp: Scalars['BigInt']['output'];
|
|
2705
2700
|
/**
|
|
2706
|
-
* The address that will be granted allowance to transfer ERC20
|
|
2701
|
+
* The address that will be granted allowance to transfer ERC20.
|
|
2707
2702
|
*
|
|
2708
2703
|
*/
|
|
2709
2704
|
to: Account;
|
|
2710
|
-
/**
|
|
2711
|
-
* If `tokenId` is non-zero, this event was emitted for the approval of an NFT.
|
|
2712
|
-
* The id of the NFT that will be granted allowance to transfer.
|
|
2713
|
-
* The id is: uint256(keccak256(abi.encode(block.chainid, superToken, sender, receiver)))
|
|
2714
|
-
*
|
|
2715
|
-
*/
|
|
2716
|
-
tokenId: Scalars['BigInt']['output'];
|
|
2717
2705
|
transactionHash: Scalars['Bytes']['output'];
|
|
2718
2706
|
};
|
|
2719
2707
|
export type ApprovalEvent_Filter = {
|
|
@@ -2766,10 +2754,6 @@ export type ApprovalEvent_Filter = {
|
|
|
2766
2754
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2767
2755
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2768
2756
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2769
|
-
isNFTApproval?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2770
|
-
isNFTApproval_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2771
|
-
isNFTApproval_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2772
|
-
isNFTApproval_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2773
2757
|
logIndex?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2774
2758
|
logIndex_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2775
2759
|
logIndex_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -2857,14 +2841,6 @@ export type ApprovalEvent_Filter = {
|
|
|
2857
2841
|
to_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2858
2842
|
to_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
2859
2843
|
to_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2860
|
-
tokenId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2861
|
-
tokenId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2862
|
-
tokenId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2863
|
-
tokenId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2864
|
-
tokenId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2865
|
-
tokenId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2866
|
-
tokenId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2867
|
-
tokenId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2868
2844
|
transactionHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2869
2845
|
transactionHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
2870
2846
|
transactionHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
@@ -2883,7 +2859,6 @@ export declare enum ApprovalEvent_OrderBy {
|
|
|
2883
2859
|
GasPrice = "gasPrice",
|
|
2884
2860
|
GasUsed = "gasUsed",
|
|
2885
2861
|
Id = "id",
|
|
2886
|
-
IsNFTApproval = "isNFTApproval",
|
|
2887
2862
|
LogIndex = "logIndex",
|
|
2888
2863
|
Name = "name",
|
|
2889
2864
|
Order = "order",
|
|
@@ -2902,209 +2877,6 @@ export declare enum ApprovalEvent_OrderBy {
|
|
|
2902
2877
|
To__isSuperApp = "to__isSuperApp",
|
|
2903
2878
|
To__updatedAtBlockNumber = "to__updatedAtBlockNumber",
|
|
2904
2879
|
To__updatedAtTimestamp = "to__updatedAtTimestamp",
|
|
2905
|
-
TokenId = "tokenId",
|
|
2906
|
-
TransactionHash = "transactionHash"
|
|
2907
|
-
}
|
|
2908
|
-
export type ApprovalForAllEvent = Event & {
|
|
2909
|
-
__typename?: 'ApprovalForAllEvent';
|
|
2910
|
-
/**
|
|
2911
|
-
* Contains the addresses that were impacted by this event:
|
|
2912
|
-
* addresses[0] = NFT address
|
|
2913
|
-
* addresses[1] = `owner`
|
|
2914
|
-
* addresses[2] = `operator`
|
|
2915
|
-
*
|
|
2916
|
-
*/
|
|
2917
|
-
addresses: Array<Scalars['Bytes']['output']>;
|
|
2918
|
-
/**
|
|
2919
|
-
* Whether the operator is enabled or disabled for `owner`.
|
|
2920
|
-
*
|
|
2921
|
-
*/
|
|
2922
|
-
approved: Scalars['Boolean']['output'];
|
|
2923
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
2924
|
-
gasPrice: Scalars['BigInt']['output'];
|
|
2925
|
-
gasUsed: Scalars['BigInt']['output'];
|
|
2926
|
-
id: Scalars['ID']['output'];
|
|
2927
|
-
logIndex: Scalars['BigInt']['output'];
|
|
2928
|
-
name: Scalars['String']['output'];
|
|
2929
|
-
/**
|
|
2930
|
-
* The address that will be granted operator permissions for the all of the owner's tokens.
|
|
2931
|
-
*
|
|
2932
|
-
*/
|
|
2933
|
-
operator: Account;
|
|
2934
|
-
order: Scalars['BigInt']['output'];
|
|
2935
|
-
owner: Account;
|
|
2936
|
-
timestamp: Scalars['BigInt']['output'];
|
|
2937
|
-
transactionHash: Scalars['Bytes']['output'];
|
|
2938
|
-
};
|
|
2939
|
-
export type ApprovalForAllEvent_Filter = {
|
|
2940
|
-
/** Filter for the block changed event. */
|
|
2941
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
2942
|
-
addresses?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2943
|
-
addresses_contains?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2944
|
-
addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2945
|
-
addresses_not?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2946
|
-
addresses_not_contains?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2947
|
-
addresses_not_contains_nocase?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
2948
|
-
and?: InputMaybe<Array<InputMaybe<ApprovalForAllEvent_Filter>>>;
|
|
2949
|
-
approved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2950
|
-
approved_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2951
|
-
approved_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2952
|
-
approved_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
2953
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2954
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2955
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2956
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2957
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2958
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2959
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2960
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2961
|
-
gasPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2962
|
-
gasPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2963
|
-
gasPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2964
|
-
gasPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2965
|
-
gasPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2966
|
-
gasPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2967
|
-
gasPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2968
|
-
gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2969
|
-
gasUsed?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2970
|
-
gasUsed_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2971
|
-
gasUsed_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2972
|
-
gasUsed_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2973
|
-
gasUsed_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2974
|
-
gasUsed_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2975
|
-
gasUsed_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2976
|
-
gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2977
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2978
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
2979
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
2980
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2981
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
2982
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
2983
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
2984
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2985
|
-
logIndex?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2986
|
-
logIndex_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2987
|
-
logIndex_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2988
|
-
logIndex_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2989
|
-
logIndex_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2990
|
-
logIndex_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2991
|
-
logIndex_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
2992
|
-
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
2993
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
2994
|
-
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
2995
|
-
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2996
|
-
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
2997
|
-
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
2998
|
-
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
2999
|
-
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
3000
|
-
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3001
|
-
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
3002
|
-
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
3003
|
-
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
3004
|
-
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
3005
|
-
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3006
|
-
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
3007
|
-
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3008
|
-
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3009
|
-
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3010
|
-
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3011
|
-
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3012
|
-
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3013
|
-
operator?: InputMaybe<Scalars['String']['input']>;
|
|
3014
|
-
operator_?: InputMaybe<Account_Filter>;
|
|
3015
|
-
operator_contains?: InputMaybe<Scalars['String']['input']>;
|
|
3016
|
-
operator_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3017
|
-
operator_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
3018
|
-
operator_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3019
|
-
operator_gt?: InputMaybe<Scalars['String']['input']>;
|
|
3020
|
-
operator_gte?: InputMaybe<Scalars['String']['input']>;
|
|
3021
|
-
operator_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3022
|
-
operator_lt?: InputMaybe<Scalars['String']['input']>;
|
|
3023
|
-
operator_lte?: InputMaybe<Scalars['String']['input']>;
|
|
3024
|
-
operator_not?: InputMaybe<Scalars['String']['input']>;
|
|
3025
|
-
operator_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
3026
|
-
operator_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3027
|
-
operator_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
3028
|
-
operator_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3029
|
-
operator_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3030
|
-
operator_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3031
|
-
operator_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3032
|
-
operator_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3033
|
-
operator_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3034
|
-
or?: InputMaybe<Array<InputMaybe<ApprovalForAllEvent_Filter>>>;
|
|
3035
|
-
order?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3036
|
-
order_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3037
|
-
order_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3038
|
-
order_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
3039
|
-
order_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3040
|
-
order_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3041
|
-
order_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3042
|
-
order_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
3043
|
-
owner?: InputMaybe<Scalars['String']['input']>;
|
|
3044
|
-
owner_?: InputMaybe<Account_Filter>;
|
|
3045
|
-
owner_contains?: InputMaybe<Scalars['String']['input']>;
|
|
3046
|
-
owner_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3047
|
-
owner_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
3048
|
-
owner_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3049
|
-
owner_gt?: InputMaybe<Scalars['String']['input']>;
|
|
3050
|
-
owner_gte?: InputMaybe<Scalars['String']['input']>;
|
|
3051
|
-
owner_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3052
|
-
owner_lt?: InputMaybe<Scalars['String']['input']>;
|
|
3053
|
-
owner_lte?: InputMaybe<Scalars['String']['input']>;
|
|
3054
|
-
owner_not?: InputMaybe<Scalars['String']['input']>;
|
|
3055
|
-
owner_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
3056
|
-
owner_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3057
|
-
owner_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
3058
|
-
owner_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3059
|
-
owner_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3060
|
-
owner_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3061
|
-
owner_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3062
|
-
owner_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
3063
|
-
owner_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
3064
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3065
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3066
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3067
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
3068
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3069
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3070
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
3071
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
3072
|
-
transactionHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
3073
|
-
transactionHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
3074
|
-
transactionHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
3075
|
-
transactionHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
3076
|
-
transactionHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
3077
|
-
transactionHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
3078
|
-
transactionHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
3079
|
-
transactionHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
3080
|
-
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
3081
|
-
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
3082
|
-
};
|
|
3083
|
-
export declare enum ApprovalForAllEvent_OrderBy {
|
|
3084
|
-
Addresses = "addresses",
|
|
3085
|
-
Approved = "approved",
|
|
3086
|
-
BlockNumber = "blockNumber",
|
|
3087
|
-
GasPrice = "gasPrice",
|
|
3088
|
-
GasUsed = "gasUsed",
|
|
3089
|
-
Id = "id",
|
|
3090
|
-
LogIndex = "logIndex",
|
|
3091
|
-
Name = "name",
|
|
3092
|
-
Operator = "operator",
|
|
3093
|
-
Operator__createdAtBlockNumber = "operator__createdAtBlockNumber",
|
|
3094
|
-
Operator__createdAtTimestamp = "operator__createdAtTimestamp",
|
|
3095
|
-
Operator__id = "operator__id",
|
|
3096
|
-
Operator__isSuperApp = "operator__isSuperApp",
|
|
3097
|
-
Operator__updatedAtBlockNumber = "operator__updatedAtBlockNumber",
|
|
3098
|
-
Operator__updatedAtTimestamp = "operator__updatedAtTimestamp",
|
|
3099
|
-
Order = "order",
|
|
3100
|
-
Owner = "owner",
|
|
3101
|
-
Owner__createdAtBlockNumber = "owner__createdAtBlockNumber",
|
|
3102
|
-
Owner__createdAtTimestamp = "owner__createdAtTimestamp",
|
|
3103
|
-
Owner__id = "owner__id",
|
|
3104
|
-
Owner__isSuperApp = "owner__isSuperApp",
|
|
3105
|
-
Owner__updatedAtBlockNumber = "owner__updatedAtBlockNumber",
|
|
3106
|
-
Owner__updatedAtTimestamp = "owner__updatedAtTimestamp",
|
|
3107
|
-
Timestamp = "timestamp",
|
|
3108
2880
|
TransactionHash = "transactionHash"
|
|
3109
2881
|
}
|
|
3110
2882
|
export type BlockChangedFilter = {
|
|
@@ -8841,148 +8613,6 @@ export declare enum MemberUnitsUpdatedEvent_OrderBy {
|
|
|
8841
8613
|
TransactionHash = "transactionHash",
|
|
8842
8614
|
Units = "units"
|
|
8843
8615
|
}
|
|
8844
|
-
export type MetadataUpdateEvent = Event & {
|
|
8845
|
-
__typename?: 'MetadataUpdateEvent';
|
|
8846
|
-
/**
|
|
8847
|
-
* Empty addresses array.
|
|
8848
|
-
*
|
|
8849
|
-
*/
|
|
8850
|
-
addresses: Array<Scalars['Bytes']['output']>;
|
|
8851
|
-
blockNumber: Scalars['BigInt']['output'];
|
|
8852
|
-
gasPrice: Scalars['BigInt']['output'];
|
|
8853
|
-
gasUsed: Scalars['BigInt']['output'];
|
|
8854
|
-
id: Scalars['ID']['output'];
|
|
8855
|
-
logIndex: Scalars['BigInt']['output'];
|
|
8856
|
-
name: Scalars['String']['output'];
|
|
8857
|
-
order: Scalars['BigInt']['output'];
|
|
8858
|
-
timestamp: Scalars['BigInt']['output'];
|
|
8859
|
-
/**
|
|
8860
|
-
* The id of the NFT that will be granted allowance to transfer.
|
|
8861
|
-
* The id is: uint256(keccak256(abi.encode(block.chainid, superToken, sender, receiver)))
|
|
8862
|
-
*
|
|
8863
|
-
*/
|
|
8864
|
-
tokenId: Scalars['BigInt']['output'];
|
|
8865
|
-
transactionHash: Scalars['Bytes']['output'];
|
|
8866
|
-
};
|
|
8867
|
-
export type MetadataUpdateEvent_Filter = {
|
|
8868
|
-
/** Filter for the block changed event. */
|
|
8869
|
-
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
8870
|
-
addresses?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
8871
|
-
addresses_contains?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
8872
|
-
addresses_contains_nocase?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
8873
|
-
addresses_not?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
8874
|
-
addresses_not_contains?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
8875
|
-
addresses_not_contains_nocase?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
8876
|
-
and?: InputMaybe<Array<InputMaybe<MetadataUpdateEvent_Filter>>>;
|
|
8877
|
-
blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8878
|
-
blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8879
|
-
blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8880
|
-
blockNumber_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8881
|
-
blockNumber_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8882
|
-
blockNumber_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8883
|
-
blockNumber_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8884
|
-
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8885
|
-
gasPrice?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8886
|
-
gasPrice_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8887
|
-
gasPrice_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8888
|
-
gasPrice_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8889
|
-
gasPrice_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8890
|
-
gasPrice_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8891
|
-
gasPrice_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8892
|
-
gasPrice_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8893
|
-
gasUsed?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8894
|
-
gasUsed_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8895
|
-
gasUsed_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8896
|
-
gasUsed_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8897
|
-
gasUsed_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8898
|
-
gasUsed_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8899
|
-
gasUsed_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8900
|
-
gasUsed_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8901
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
8902
|
-
id_gt?: InputMaybe<Scalars['ID']['input']>;
|
|
8903
|
-
id_gte?: InputMaybe<Scalars['ID']['input']>;
|
|
8904
|
-
id_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8905
|
-
id_lt?: InputMaybe<Scalars['ID']['input']>;
|
|
8906
|
-
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
8907
|
-
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
8908
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8909
|
-
logIndex?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8910
|
-
logIndex_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8911
|
-
logIndex_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8912
|
-
logIndex_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8913
|
-
logIndex_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8914
|
-
logIndex_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8915
|
-
logIndex_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8916
|
-
logIndex_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8917
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
8918
|
-
name_contains?: InputMaybe<Scalars['String']['input']>;
|
|
8919
|
-
name_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
8920
|
-
name_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
8921
|
-
name_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
8922
|
-
name_gt?: InputMaybe<Scalars['String']['input']>;
|
|
8923
|
-
name_gte?: InputMaybe<Scalars['String']['input']>;
|
|
8924
|
-
name_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8925
|
-
name_lt?: InputMaybe<Scalars['String']['input']>;
|
|
8926
|
-
name_lte?: InputMaybe<Scalars['String']['input']>;
|
|
8927
|
-
name_not?: InputMaybe<Scalars['String']['input']>;
|
|
8928
|
-
name_not_contains?: InputMaybe<Scalars['String']['input']>;
|
|
8929
|
-
name_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
8930
|
-
name_not_ends_with?: InputMaybe<Scalars['String']['input']>;
|
|
8931
|
-
name_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
8932
|
-
name_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
8933
|
-
name_not_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
8934
|
-
name_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
8935
|
-
name_starts_with?: InputMaybe<Scalars['String']['input']>;
|
|
8936
|
-
name_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
|
|
8937
|
-
or?: InputMaybe<Array<InputMaybe<MetadataUpdateEvent_Filter>>>;
|
|
8938
|
-
order?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8939
|
-
order_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8940
|
-
order_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8941
|
-
order_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8942
|
-
order_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8943
|
-
order_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8944
|
-
order_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8945
|
-
order_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8946
|
-
timestamp?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8947
|
-
timestamp_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8948
|
-
timestamp_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8949
|
-
timestamp_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8950
|
-
timestamp_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8951
|
-
timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8952
|
-
timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8953
|
-
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8954
|
-
tokenId?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8955
|
-
tokenId_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8956
|
-
tokenId_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8957
|
-
tokenId_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8958
|
-
tokenId_lt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8959
|
-
tokenId_lte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8960
|
-
tokenId_not?: InputMaybe<Scalars['BigInt']['input']>;
|
|
8961
|
-
tokenId_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
|
|
8962
|
-
transactionHash?: InputMaybe<Scalars['Bytes']['input']>;
|
|
8963
|
-
transactionHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
8964
|
-
transactionHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
8965
|
-
transactionHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
8966
|
-
transactionHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
8967
|
-
transactionHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
|
|
8968
|
-
transactionHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
|
|
8969
|
-
transactionHash_not?: InputMaybe<Scalars['Bytes']['input']>;
|
|
8970
|
-
transactionHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
|
|
8971
|
-
transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
|
|
8972
|
-
};
|
|
8973
|
-
export declare enum MetadataUpdateEvent_OrderBy {
|
|
8974
|
-
Addresses = "addresses",
|
|
8975
|
-
BlockNumber = "blockNumber",
|
|
8976
|
-
GasPrice = "gasPrice",
|
|
8977
|
-
GasUsed = "gasUsed",
|
|
8978
|
-
Id = "id",
|
|
8979
|
-
LogIndex = "logIndex",
|
|
8980
|
-
Name = "name",
|
|
8981
|
-
Order = "order",
|
|
8982
|
-
Timestamp = "timestamp",
|
|
8983
|
-
TokenId = "tokenId",
|
|
8984
|
-
TransactionHash = "transactionHash"
|
|
8985
|
-
}
|
|
8986
8616
|
export type MintedEvent = Event & {
|
|
8987
8617
|
__typename?: 'MintedEvent';
|
|
8988
8618
|
/**
|
|
@@ -10877,8 +10507,6 @@ export type Query = {
|
|
|
10877
10507
|
appRegisteredEvents: Array<AppRegisteredEvent>;
|
|
10878
10508
|
approvalEvent?: Maybe<ApprovalEvent>;
|
|
10879
10509
|
approvalEvents: Array<ApprovalEvent>;
|
|
10880
|
-
approvalForAllEvent?: Maybe<ApprovalForAllEvent>;
|
|
10881
|
-
approvalForAllEvents: Array<ApprovalForAllEvent>;
|
|
10882
10510
|
bondIncreasedEvent?: Maybe<BondIncreasedEvent>;
|
|
10883
10511
|
bondIncreasedEvents: Array<BondIncreasedEvent>;
|
|
10884
10512
|
bufferAdjustedEvent?: Maybe<BufferAdjustedEvent>;
|
|
@@ -10929,8 +10557,6 @@ export type Query = {
|
|
|
10929
10557
|
jailEvents: Array<JailEvent>;
|
|
10930
10558
|
memberUnitsUpdatedEvent?: Maybe<MemberUnitsUpdatedEvent>;
|
|
10931
10559
|
memberUnitsUpdatedEvents: Array<MemberUnitsUpdatedEvent>;
|
|
10932
|
-
metadataUpdateEvent?: Maybe<MetadataUpdateEvent>;
|
|
10933
|
-
metadataUpdateEvents: Array<MetadataUpdateEvent>;
|
|
10934
10560
|
mintedEvent?: Maybe<MintedEvent>;
|
|
10935
10561
|
mintedEvents: Array<MintedEvent>;
|
|
10936
10562
|
newPICEvent?: Maybe<NewPicEvent>;
|
|
@@ -11133,20 +10759,6 @@ export type QueryApprovalEventsArgs = {
|
|
|
11133
10759
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
11134
10760
|
where?: InputMaybe<ApprovalEvent_Filter>;
|
|
11135
10761
|
};
|
|
11136
|
-
export type QueryApprovalForAllEventArgs = {
|
|
11137
|
-
block?: InputMaybe<Block_Height>;
|
|
11138
|
-
id: Scalars['ID']['input'];
|
|
11139
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
11140
|
-
};
|
|
11141
|
-
export type QueryApprovalForAllEventsArgs = {
|
|
11142
|
-
block?: InputMaybe<Block_Height>;
|
|
11143
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11144
|
-
orderBy?: InputMaybe<ApprovalForAllEvent_OrderBy>;
|
|
11145
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
11146
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
11147
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
11148
|
-
where?: InputMaybe<ApprovalForAllEvent_Filter>;
|
|
11149
|
-
};
|
|
11150
10762
|
export type QueryBondIncreasedEventArgs = {
|
|
11151
10763
|
block?: InputMaybe<Block_Height>;
|
|
11152
10764
|
id: Scalars['ID']['input'];
|
|
@@ -11497,20 +11109,6 @@ export type QueryMemberUnitsUpdatedEventsArgs = {
|
|
|
11497
11109
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
11498
11110
|
where?: InputMaybe<MemberUnitsUpdatedEvent_Filter>;
|
|
11499
11111
|
};
|
|
11500
|
-
export type QueryMetadataUpdateEventArgs = {
|
|
11501
|
-
block?: InputMaybe<Block_Height>;
|
|
11502
|
-
id: Scalars['ID']['input'];
|
|
11503
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
11504
|
-
};
|
|
11505
|
-
export type QueryMetadataUpdateEventsArgs = {
|
|
11506
|
-
block?: InputMaybe<Block_Height>;
|
|
11507
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11508
|
-
orderBy?: InputMaybe<MetadataUpdateEvent_OrderBy>;
|
|
11509
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
11510
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
11511
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
11512
|
-
where?: InputMaybe<MetadataUpdateEvent_Filter>;
|
|
11513
|
-
};
|
|
11514
11112
|
export type QueryMintedEventArgs = {
|
|
11515
11113
|
block?: InputMaybe<Block_Height>;
|
|
11516
11114
|
id: Scalars['ID']['input'];
|
|
@@ -13989,8 +13587,6 @@ export type Subscription = {
|
|
|
13989
13587
|
appRegisteredEvents: Array<AppRegisteredEvent>;
|
|
13990
13588
|
approvalEvent?: Maybe<ApprovalEvent>;
|
|
13991
13589
|
approvalEvents: Array<ApprovalEvent>;
|
|
13992
|
-
approvalForAllEvent?: Maybe<ApprovalForAllEvent>;
|
|
13993
|
-
approvalForAllEvents: Array<ApprovalForAllEvent>;
|
|
13994
13590
|
bondIncreasedEvent?: Maybe<BondIncreasedEvent>;
|
|
13995
13591
|
bondIncreasedEvents: Array<BondIncreasedEvent>;
|
|
13996
13592
|
bufferAdjustedEvent?: Maybe<BufferAdjustedEvent>;
|
|
@@ -14041,8 +13637,6 @@ export type Subscription = {
|
|
|
14041
13637
|
jailEvents: Array<JailEvent>;
|
|
14042
13638
|
memberUnitsUpdatedEvent?: Maybe<MemberUnitsUpdatedEvent>;
|
|
14043
13639
|
memberUnitsUpdatedEvents: Array<MemberUnitsUpdatedEvent>;
|
|
14044
|
-
metadataUpdateEvent?: Maybe<MetadataUpdateEvent>;
|
|
14045
|
-
metadataUpdateEvents: Array<MetadataUpdateEvent>;
|
|
14046
13640
|
mintedEvent?: Maybe<MintedEvent>;
|
|
14047
13641
|
mintedEvents: Array<MintedEvent>;
|
|
14048
13642
|
newPICEvent?: Maybe<NewPicEvent>;
|
|
@@ -14245,20 +13839,6 @@ export type SubscriptionApprovalEventsArgs = {
|
|
|
14245
13839
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
14246
13840
|
where?: InputMaybe<ApprovalEvent_Filter>;
|
|
14247
13841
|
};
|
|
14248
|
-
export type SubscriptionApprovalForAllEventArgs = {
|
|
14249
|
-
block?: InputMaybe<Block_Height>;
|
|
14250
|
-
id: Scalars['ID']['input'];
|
|
14251
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
14252
|
-
};
|
|
14253
|
-
export type SubscriptionApprovalForAllEventsArgs = {
|
|
14254
|
-
block?: InputMaybe<Block_Height>;
|
|
14255
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14256
|
-
orderBy?: InputMaybe<ApprovalForAllEvent_OrderBy>;
|
|
14257
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
14258
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
14259
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
14260
|
-
where?: InputMaybe<ApprovalForAllEvent_Filter>;
|
|
14261
|
-
};
|
|
14262
13842
|
export type SubscriptionBondIncreasedEventArgs = {
|
|
14263
13843
|
block?: InputMaybe<Block_Height>;
|
|
14264
13844
|
id: Scalars['ID']['input'];
|
|
@@ -14609,20 +14189,6 @@ export type SubscriptionMemberUnitsUpdatedEventsArgs = {
|
|
|
14609
14189
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
14610
14190
|
where?: InputMaybe<MemberUnitsUpdatedEvent_Filter>;
|
|
14611
14191
|
};
|
|
14612
|
-
export type SubscriptionMetadataUpdateEventArgs = {
|
|
14613
|
-
block?: InputMaybe<Block_Height>;
|
|
14614
|
-
id: Scalars['ID']['input'];
|
|
14615
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
14616
|
-
};
|
|
14617
|
-
export type SubscriptionMetadataUpdateEventsArgs = {
|
|
14618
|
-
block?: InputMaybe<Block_Height>;
|
|
14619
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14620
|
-
orderBy?: InputMaybe<MetadataUpdateEvent_OrderBy>;
|
|
14621
|
-
orderDirection?: InputMaybe<OrderDirection>;
|
|
14622
|
-
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
14623
|
-
subgraphError?: _SubgraphErrorPolicy_;
|
|
14624
|
-
where?: InputMaybe<MetadataUpdateEvent_Filter>;
|
|
14625
|
-
};
|
|
14626
14192
|
export type SubscriptionMintedEventArgs = {
|
|
14627
14193
|
block?: InputMaybe<Block_Height>;
|
|
14628
14194
|
id: Scalars['ID']['input'];
|
|
@@ -18634,7 +18200,7 @@ export type TransferEvent = Event & {
|
|
|
18634
18200
|
__typename?: 'TransferEvent';
|
|
18635
18201
|
/**
|
|
18636
18202
|
* Contains the addresses that were impacted by this event:
|
|
18637
|
-
* addresses[0] = `token`
|
|
18203
|
+
* addresses[0] = `token`
|
|
18638
18204
|
* addresses[1] = `from`
|
|
18639
18205
|
* addresses[2] = `to`
|
|
18640
18206
|
*
|
|
@@ -18645,22 +18211,13 @@ export type TransferEvent = Event & {
|
|
|
18645
18211
|
gasPrice: Scalars['BigInt']['output'];
|
|
18646
18212
|
gasUsed: Scalars['BigInt']['output'];
|
|
18647
18213
|
id: Scalars['ID']['output'];
|
|
18648
|
-
isNFTTransfer: Scalars['Boolean']['output'];
|
|
18649
18214
|
logIndex: Scalars['BigInt']['output'];
|
|
18650
18215
|
name: Scalars['String']['output'];
|
|
18651
18216
|
order: Scalars['BigInt']['output'];
|
|
18652
18217
|
timestamp: Scalars['BigInt']['output'];
|
|
18653
18218
|
to: Account;
|
|
18654
|
-
/**
|
|
18655
|
-
* If `isNFTTransfer` is true, value is the NFT address, else it is the SuperToken address.
|
|
18656
|
-
*
|
|
18657
|
-
*/
|
|
18658
18219
|
token: Scalars['Bytes']['output'];
|
|
18659
18220
|
transactionHash: Scalars['Bytes']['output'];
|
|
18660
|
-
/**
|
|
18661
|
-
* If `isNFTTransfer` is true, value is the `tokenId` of the NFT transferred.
|
|
18662
|
-
*
|
|
18663
|
-
*/
|
|
18664
18221
|
value: Scalars['BigInt']['output'];
|
|
18665
18222
|
};
|
|
18666
18223
|
export type TransferEvent_Filter = {
|
|
@@ -18726,10 +18283,6 @@ export type TransferEvent_Filter = {
|
|
|
18726
18283
|
id_lte?: InputMaybe<Scalars['ID']['input']>;
|
|
18727
18284
|
id_not?: InputMaybe<Scalars['ID']['input']>;
|
|
18728
18285
|
id_not_in?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
18729
|
-
isNFTTransfer?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18730
|
-
isNFTTransfer_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
18731
|
-
isNFTTransfer_not?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18732
|
-
isNFTTransfer_not_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
18733
18286
|
logIndex?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18734
18287
|
logIndex_gt?: InputMaybe<Scalars['BigInt']['input']>;
|
|
18735
18288
|
logIndex_gte?: InputMaybe<Scalars['BigInt']['input']>;
|
|
@@ -18838,7 +18391,6 @@ export declare enum TransferEvent_OrderBy {
|
|
|
18838
18391
|
GasPrice = "gasPrice",
|
|
18839
18392
|
GasUsed = "gasUsed",
|
|
18840
18393
|
Id = "id",
|
|
18841
|
-
IsNFTTransfer = "isNFTTransfer",
|
|
18842
18394
|
LogIndex = "logIndex",
|
|
18843
18395
|
Name = "name",
|
|
18844
18396
|
Order = "order",
|