@aptos-labs/js-pro 0.1.4 → 0.1.5
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/CHANGELOG.md +6 -0
- package/dist/client.d.ts +1 -4
- package/dist/client.d.ts.map +1 -1
- package/dist/index.js +34 -51
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +34 -51
- package/dist/index.mjs.map +1 -1
- package/dist/operations/generated/operations.d.ts +0 -27
- package/dist/operations/generated/operations.d.ts.map +1 -1
- package/dist/operations/generated/sdk.d.ts +0 -4
- package/dist/operations/generated/sdk.d.ts.map +1 -1
- package/dist/operations/generated/types.d.ts +37 -3645
- package/dist/operations/generated/types.d.ts.map +1 -1
- package/dist/operations/index.d.ts +0 -2
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/queries/index.d.ts +0 -1
- package/dist/queries/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +0 -3
- package/src/index.ts +1 -1
- package/src/mutations/buildTransaction.ts +3 -3
- package/src/mutations/signAndSubmitTransaction.ts +1 -1
- package/src/mutations/signTransaction.ts +1 -1
- package/src/mutations/simulateTransaction.ts +3 -3
- package/src/mutations/submitTransaction.ts +1 -1
- package/src/mutations/waitForTransaction.ts +1 -1
- package/src/operations/generated/operations.ts +0 -14
- package/src/operations/generated/sdk.ts +0 -25
- package/src/operations/generated/types.ts +5007 -9064
- package/src/operations/index.ts +1 -1
- package/src/operations/schemas/account.gql +0 -19
- package/src/queries/fetchAccountCoins.ts +2 -2
- package/src/queries/fetchAccountCollections.ts +2 -2
- package/src/queries/fetchAccountTokens.ts +1 -1
- package/src/queries/fetchAccountTransactions.ts +2 -2
- package/src/queries/fetchAddressFromName.ts +2 -2
- package/src/queries/fetchAptBalance.ts +1 -1
- package/src/queries/fetchBalance.ts +1 -1
- package/src/queries/fetchEstimatedGasPrice.ts +1 -1
- package/src/queries/fetchFungibleAssetMetadata.ts +1 -1
- package/src/queries/fetchLedgerInfo.ts +1 -1
- package/src/queries/fetchNameFromAddress.ts +2 -2
- package/src/queries/fetchProcessorStatus.ts +1 -1
- package/src/queries/fetchResourceType.ts +1 -1
- package/src/queries/fetchResources.ts +2 -2
- package/src/queries/fetchTokenData.ts +1 -1
- package/src/queries/fetchTransaction.ts +1 -1
- package/src/queries/fetchUserTransactions.ts +1 -1
- package/src/queries/fetchViewModule.ts +1 -1
- package/src/queries/getClients.ts +1 -1
- package/src/queries/index.ts +0 -1
- package/src/types/signers.ts +2 -2
- package/src/utils/convert.ts +3 -3
- package/src/utils/fungibleAssets.ts +2 -2
- package/src/utils/index.ts +1 -1
- package/src/utils/lib.ts +2 -2
- package/src/utils/normalize.ts +16 -16
- package/src/utils/objects.ts +1 -1
- package/src/utils/tokens.ts +1 -1
- package/src/utils/transactions/TransactionParser.ts +6 -6
- package/src/utils/transactions/parsers/CoinEventParser.ts +2 -2
- package/src/utils/transactions/parsers/CoinStoreWritesetParser.ts +4 -4
- package/src/utils/transactions/parsers/FungibleAssetEventParser.ts +4 -4
- package/src/utils/transactions/parsers/FungibleAssetStoreWritesetParser.ts +2 -2
- package/src/utils/transactions/parsers/ObjectOwnersWritesetParser.ts +1 -1
- package/src/utils/transactions/shared.ts +2 -2
- package/dist/queries/fetchAccountTotalTransactions.d.ts +0 -9
- package/dist/queries/fetchAccountTotalTransactions.d.ts.map +0 -1
- package/src/queries/fetchAccountTotalTransactions.ts +0 -27
|
@@ -122,18 +122,10 @@ export type Account_Transactions = {
|
|
|
122
122
|
__typename?: 'account_transactions';
|
|
123
123
|
account_address: Scalars['String']['output'];
|
|
124
124
|
/** An array relationship */
|
|
125
|
-
coin_activities: Array<Coin_Activities>;
|
|
126
|
-
/** An aggregate relationship */
|
|
127
|
-
coin_activities_aggregate: Coin_Activities_Aggregate;
|
|
128
|
-
/** An array relationship */
|
|
129
125
|
delegated_staking_activities: Array<Delegated_Staking_Activities>;
|
|
130
126
|
/** An array relationship */
|
|
131
127
|
fungible_asset_activities: Array<Fungible_Asset_Activities>;
|
|
132
128
|
/** An array relationship */
|
|
133
|
-
token_activities: Array<Token_Activities>;
|
|
134
|
-
/** An aggregate relationship */
|
|
135
|
-
token_activities_aggregate: Token_Activities_Aggregate;
|
|
136
|
-
/** An array relationship */
|
|
137
129
|
token_activities_v2: Array<Token_Activities_V2>;
|
|
138
130
|
/** An aggregate relationship */
|
|
139
131
|
token_activities_v2_aggregate: Token_Activities_V2_Aggregate;
|
|
@@ -142,22 +134,6 @@ export type Account_Transactions = {
|
|
|
142
134
|
user_transaction?: Maybe<User_Transactions>;
|
|
143
135
|
};
|
|
144
136
|
/** columns and relationships of "account_transactions" */
|
|
145
|
-
export type Account_TransactionsCoin_ActivitiesArgs = {
|
|
146
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
147
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
148
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
149
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
150
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
151
|
-
};
|
|
152
|
-
/** columns and relationships of "account_transactions" */
|
|
153
|
-
export type Account_TransactionsCoin_Activities_AggregateArgs = {
|
|
154
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
155
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
156
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
157
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
158
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
159
|
-
};
|
|
160
|
-
/** columns and relationships of "account_transactions" */
|
|
161
137
|
export type Account_TransactionsDelegated_Staking_ActivitiesArgs = {
|
|
162
138
|
distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;
|
|
163
139
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -174,22 +150,6 @@ export type Account_TransactionsFungible_Asset_ActivitiesArgs = {
|
|
|
174
150
|
where?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;
|
|
175
151
|
};
|
|
176
152
|
/** columns and relationships of "account_transactions" */
|
|
177
|
-
export type Account_TransactionsToken_ActivitiesArgs = {
|
|
178
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
179
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
180
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
181
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
182
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
183
|
-
};
|
|
184
|
-
/** columns and relationships of "account_transactions" */
|
|
185
|
-
export type Account_TransactionsToken_Activities_AggregateArgs = {
|
|
186
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
187
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
188
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
189
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
190
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
191
|
-
};
|
|
192
|
-
/** columns and relationships of "account_transactions" */
|
|
193
153
|
export type Account_TransactionsToken_Activities_V2Args = {
|
|
194
154
|
distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;
|
|
195
155
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -242,12 +202,8 @@ export type Account_Transactions_Bool_Exp = {
|
|
|
242
202
|
_not?: InputMaybe<Account_Transactions_Bool_Exp>;
|
|
243
203
|
_or?: InputMaybe<Array<Account_Transactions_Bool_Exp>>;
|
|
244
204
|
account_address?: InputMaybe<String_Comparison_Exp>;
|
|
245
|
-
coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
246
|
-
coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;
|
|
247
205
|
delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;
|
|
248
206
|
fungible_asset_activities?: InputMaybe<Fungible_Asset_Activities_Bool_Exp>;
|
|
249
|
-
token_activities?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
250
|
-
token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;
|
|
251
207
|
token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;
|
|
252
208
|
token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;
|
|
253
209
|
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
@@ -268,10 +224,8 @@ export type Account_Transactions_Min_Fields = {
|
|
|
268
224
|
/** Ordering options when selecting data from "account_transactions". */
|
|
269
225
|
export type Account_Transactions_Order_By = {
|
|
270
226
|
account_address?: InputMaybe<Order_By>;
|
|
271
|
-
coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;
|
|
272
227
|
delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;
|
|
273
228
|
fungible_asset_activities_aggregate?: InputMaybe<Fungible_Asset_Activities_Aggregate_Order_By>;
|
|
274
|
-
token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;
|
|
275
229
|
token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;
|
|
276
230
|
transaction_version?: InputMaybe<Order_By>;
|
|
277
231
|
user_transaction?: InputMaybe<User_Transactions_Order_By>;
|
|
@@ -330,448 +284,6 @@ export type Account_Transactions_Variance_Fields = {
|
|
|
330
284
|
__typename?: 'account_transactions_variance_fields';
|
|
331
285
|
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
332
286
|
};
|
|
333
|
-
/** columns and relationships of "address_events_summary" */
|
|
334
|
-
export type Address_Events_Summary = {
|
|
335
|
-
__typename?: 'address_events_summary';
|
|
336
|
-
account_address?: Maybe<Scalars['String']['output']>;
|
|
337
|
-
/** An object relationship */
|
|
338
|
-
block_metadata?: Maybe<Block_Metadata_Transactions>;
|
|
339
|
-
min_block_height?: Maybe<Scalars['bigint']['output']>;
|
|
340
|
-
num_distinct_versions?: Maybe<Scalars['bigint']['output']>;
|
|
341
|
-
};
|
|
342
|
-
/** Boolean expression to filter rows from the table "address_events_summary". All fields are combined with a logical 'AND'. */
|
|
343
|
-
export type Address_Events_Summary_Bool_Exp = {
|
|
344
|
-
_and?: InputMaybe<Array<Address_Events_Summary_Bool_Exp>>;
|
|
345
|
-
_not?: InputMaybe<Address_Events_Summary_Bool_Exp>;
|
|
346
|
-
_or?: InputMaybe<Array<Address_Events_Summary_Bool_Exp>>;
|
|
347
|
-
account_address?: InputMaybe<String_Comparison_Exp>;
|
|
348
|
-
block_metadata?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;
|
|
349
|
-
min_block_height?: InputMaybe<Bigint_Comparison_Exp>;
|
|
350
|
-
num_distinct_versions?: InputMaybe<Bigint_Comparison_Exp>;
|
|
351
|
-
};
|
|
352
|
-
/** Ordering options when selecting data from "address_events_summary". */
|
|
353
|
-
export type Address_Events_Summary_Order_By = {
|
|
354
|
-
account_address?: InputMaybe<Order_By>;
|
|
355
|
-
block_metadata?: InputMaybe<Block_Metadata_Transactions_Order_By>;
|
|
356
|
-
min_block_height?: InputMaybe<Order_By>;
|
|
357
|
-
num_distinct_versions?: InputMaybe<Order_By>;
|
|
358
|
-
};
|
|
359
|
-
/** select columns of table "address_events_summary" */
|
|
360
|
-
export declare enum Address_Events_Summary_Select_Column {
|
|
361
|
-
/** column name */
|
|
362
|
-
AccountAddress = "account_address",
|
|
363
|
-
/** column name */
|
|
364
|
-
MinBlockHeight = "min_block_height",
|
|
365
|
-
/** column name */
|
|
366
|
-
NumDistinctVersions = "num_distinct_versions"
|
|
367
|
-
}
|
|
368
|
-
/** Streaming cursor of the table "address_events_summary" */
|
|
369
|
-
export type Address_Events_Summary_Stream_Cursor_Input = {
|
|
370
|
-
/** Stream column input with initial value */
|
|
371
|
-
initial_value: Address_Events_Summary_Stream_Cursor_Value_Input;
|
|
372
|
-
/** cursor ordering */
|
|
373
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
374
|
-
};
|
|
375
|
-
/** Initial value of the column from where the streaming should start */
|
|
376
|
-
export type Address_Events_Summary_Stream_Cursor_Value_Input = {
|
|
377
|
-
account_address?: InputMaybe<Scalars['String']['input']>;
|
|
378
|
-
min_block_height?: InputMaybe<Scalars['bigint']['input']>;
|
|
379
|
-
num_distinct_versions?: InputMaybe<Scalars['bigint']['input']>;
|
|
380
|
-
};
|
|
381
|
-
/** columns and relationships of "address_version_from_events" */
|
|
382
|
-
export type Address_Version_From_Events = {
|
|
383
|
-
__typename?: 'address_version_from_events';
|
|
384
|
-
account_address?: Maybe<Scalars['String']['output']>;
|
|
385
|
-
/** An array relationship */
|
|
386
|
-
coin_activities: Array<Coin_Activities>;
|
|
387
|
-
/** An aggregate relationship */
|
|
388
|
-
coin_activities_aggregate: Coin_Activities_Aggregate;
|
|
389
|
-
/** An array relationship */
|
|
390
|
-
delegated_staking_activities: Array<Delegated_Staking_Activities>;
|
|
391
|
-
/** An array relationship */
|
|
392
|
-
token_activities: Array<Token_Activities>;
|
|
393
|
-
/** An aggregate relationship */
|
|
394
|
-
token_activities_aggregate: Token_Activities_Aggregate;
|
|
395
|
-
/** An array relationship */
|
|
396
|
-
token_activities_v2: Array<Token_Activities_V2>;
|
|
397
|
-
/** An aggregate relationship */
|
|
398
|
-
token_activities_v2_aggregate: Token_Activities_V2_Aggregate;
|
|
399
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
400
|
-
};
|
|
401
|
-
/** columns and relationships of "address_version_from_events" */
|
|
402
|
-
export type Address_Version_From_EventsCoin_ActivitiesArgs = {
|
|
403
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
404
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
405
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
406
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
407
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
408
|
-
};
|
|
409
|
-
/** columns and relationships of "address_version_from_events" */
|
|
410
|
-
export type Address_Version_From_EventsCoin_Activities_AggregateArgs = {
|
|
411
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
412
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
413
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
414
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
415
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
416
|
-
};
|
|
417
|
-
/** columns and relationships of "address_version_from_events" */
|
|
418
|
-
export type Address_Version_From_EventsDelegated_Staking_ActivitiesArgs = {
|
|
419
|
-
distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;
|
|
420
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
421
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
422
|
-
order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;
|
|
423
|
-
where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;
|
|
424
|
-
};
|
|
425
|
-
/** columns and relationships of "address_version_from_events" */
|
|
426
|
-
export type Address_Version_From_EventsToken_ActivitiesArgs = {
|
|
427
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
428
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
429
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
430
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
431
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
432
|
-
};
|
|
433
|
-
/** columns and relationships of "address_version_from_events" */
|
|
434
|
-
export type Address_Version_From_EventsToken_Activities_AggregateArgs = {
|
|
435
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
436
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
437
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
438
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
439
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
440
|
-
};
|
|
441
|
-
/** columns and relationships of "address_version_from_events" */
|
|
442
|
-
export type Address_Version_From_EventsToken_Activities_V2Args = {
|
|
443
|
-
distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;
|
|
444
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
445
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
446
|
-
order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;
|
|
447
|
-
where?: InputMaybe<Token_Activities_V2_Bool_Exp>;
|
|
448
|
-
};
|
|
449
|
-
/** columns and relationships of "address_version_from_events" */
|
|
450
|
-
export type Address_Version_From_EventsToken_Activities_V2_AggregateArgs = {
|
|
451
|
-
distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;
|
|
452
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
453
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
454
|
-
order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;
|
|
455
|
-
where?: InputMaybe<Token_Activities_V2_Bool_Exp>;
|
|
456
|
-
};
|
|
457
|
-
/** aggregated selection of "address_version_from_events" */
|
|
458
|
-
export type Address_Version_From_Events_Aggregate = {
|
|
459
|
-
__typename?: 'address_version_from_events_aggregate';
|
|
460
|
-
aggregate?: Maybe<Address_Version_From_Events_Aggregate_Fields>;
|
|
461
|
-
nodes: Array<Address_Version_From_Events>;
|
|
462
|
-
};
|
|
463
|
-
/** aggregate fields of "address_version_from_events" */
|
|
464
|
-
export type Address_Version_From_Events_Aggregate_Fields = {
|
|
465
|
-
__typename?: 'address_version_from_events_aggregate_fields';
|
|
466
|
-
avg?: Maybe<Address_Version_From_Events_Avg_Fields>;
|
|
467
|
-
count: Scalars['Int']['output'];
|
|
468
|
-
max?: Maybe<Address_Version_From_Events_Max_Fields>;
|
|
469
|
-
min?: Maybe<Address_Version_From_Events_Min_Fields>;
|
|
470
|
-
stddev?: Maybe<Address_Version_From_Events_Stddev_Fields>;
|
|
471
|
-
stddev_pop?: Maybe<Address_Version_From_Events_Stddev_Pop_Fields>;
|
|
472
|
-
stddev_samp?: Maybe<Address_Version_From_Events_Stddev_Samp_Fields>;
|
|
473
|
-
sum?: Maybe<Address_Version_From_Events_Sum_Fields>;
|
|
474
|
-
var_pop?: Maybe<Address_Version_From_Events_Var_Pop_Fields>;
|
|
475
|
-
var_samp?: Maybe<Address_Version_From_Events_Var_Samp_Fields>;
|
|
476
|
-
variance?: Maybe<Address_Version_From_Events_Variance_Fields>;
|
|
477
|
-
};
|
|
478
|
-
/** aggregate fields of "address_version_from_events" */
|
|
479
|
-
export type Address_Version_From_Events_Aggregate_FieldsCountArgs = {
|
|
480
|
-
columns?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;
|
|
481
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
482
|
-
};
|
|
483
|
-
/** aggregate avg on columns */
|
|
484
|
-
export type Address_Version_From_Events_Avg_Fields = {
|
|
485
|
-
__typename?: 'address_version_from_events_avg_fields';
|
|
486
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
487
|
-
};
|
|
488
|
-
/** Boolean expression to filter rows from the table "address_version_from_events". All fields are combined with a logical 'AND'. */
|
|
489
|
-
export type Address_Version_From_Events_Bool_Exp = {
|
|
490
|
-
_and?: InputMaybe<Array<Address_Version_From_Events_Bool_Exp>>;
|
|
491
|
-
_not?: InputMaybe<Address_Version_From_Events_Bool_Exp>;
|
|
492
|
-
_or?: InputMaybe<Array<Address_Version_From_Events_Bool_Exp>>;
|
|
493
|
-
account_address?: InputMaybe<String_Comparison_Exp>;
|
|
494
|
-
coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
495
|
-
coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;
|
|
496
|
-
delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;
|
|
497
|
-
token_activities?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
498
|
-
token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;
|
|
499
|
-
token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;
|
|
500
|
-
token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;
|
|
501
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
502
|
-
};
|
|
503
|
-
/** aggregate max on columns */
|
|
504
|
-
export type Address_Version_From_Events_Max_Fields = {
|
|
505
|
-
__typename?: 'address_version_from_events_max_fields';
|
|
506
|
-
account_address?: Maybe<Scalars['String']['output']>;
|
|
507
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
508
|
-
};
|
|
509
|
-
/** aggregate min on columns */
|
|
510
|
-
export type Address_Version_From_Events_Min_Fields = {
|
|
511
|
-
__typename?: 'address_version_from_events_min_fields';
|
|
512
|
-
account_address?: Maybe<Scalars['String']['output']>;
|
|
513
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
514
|
-
};
|
|
515
|
-
/** Ordering options when selecting data from "address_version_from_events". */
|
|
516
|
-
export type Address_Version_From_Events_Order_By = {
|
|
517
|
-
account_address?: InputMaybe<Order_By>;
|
|
518
|
-
coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;
|
|
519
|
-
delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;
|
|
520
|
-
token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;
|
|
521
|
-
token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;
|
|
522
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
523
|
-
};
|
|
524
|
-
/** select columns of table "address_version_from_events" */
|
|
525
|
-
export declare enum Address_Version_From_Events_Select_Column {
|
|
526
|
-
/** column name */
|
|
527
|
-
AccountAddress = "account_address",
|
|
528
|
-
/** column name */
|
|
529
|
-
TransactionVersion = "transaction_version"
|
|
530
|
-
}
|
|
531
|
-
/** aggregate stddev on columns */
|
|
532
|
-
export type Address_Version_From_Events_Stddev_Fields = {
|
|
533
|
-
__typename?: 'address_version_from_events_stddev_fields';
|
|
534
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
535
|
-
};
|
|
536
|
-
/** aggregate stddev_pop on columns */
|
|
537
|
-
export type Address_Version_From_Events_Stddev_Pop_Fields = {
|
|
538
|
-
__typename?: 'address_version_from_events_stddev_pop_fields';
|
|
539
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
540
|
-
};
|
|
541
|
-
/** aggregate stddev_samp on columns */
|
|
542
|
-
export type Address_Version_From_Events_Stddev_Samp_Fields = {
|
|
543
|
-
__typename?: 'address_version_from_events_stddev_samp_fields';
|
|
544
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
545
|
-
};
|
|
546
|
-
/** Streaming cursor of the table "address_version_from_events" */
|
|
547
|
-
export type Address_Version_From_Events_Stream_Cursor_Input = {
|
|
548
|
-
/** Stream column input with initial value */
|
|
549
|
-
initial_value: Address_Version_From_Events_Stream_Cursor_Value_Input;
|
|
550
|
-
/** cursor ordering */
|
|
551
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
552
|
-
};
|
|
553
|
-
/** Initial value of the column from where the streaming should start */
|
|
554
|
-
export type Address_Version_From_Events_Stream_Cursor_Value_Input = {
|
|
555
|
-
account_address?: InputMaybe<Scalars['String']['input']>;
|
|
556
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
557
|
-
};
|
|
558
|
-
/** aggregate sum on columns */
|
|
559
|
-
export type Address_Version_From_Events_Sum_Fields = {
|
|
560
|
-
__typename?: 'address_version_from_events_sum_fields';
|
|
561
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
562
|
-
};
|
|
563
|
-
/** aggregate var_pop on columns */
|
|
564
|
-
export type Address_Version_From_Events_Var_Pop_Fields = {
|
|
565
|
-
__typename?: 'address_version_from_events_var_pop_fields';
|
|
566
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
567
|
-
};
|
|
568
|
-
/** aggregate var_samp on columns */
|
|
569
|
-
export type Address_Version_From_Events_Var_Samp_Fields = {
|
|
570
|
-
__typename?: 'address_version_from_events_var_samp_fields';
|
|
571
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
572
|
-
};
|
|
573
|
-
/** aggregate variance on columns */
|
|
574
|
-
export type Address_Version_From_Events_Variance_Fields = {
|
|
575
|
-
__typename?: 'address_version_from_events_variance_fields';
|
|
576
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
577
|
-
};
|
|
578
|
-
/** columns and relationships of "legacy_migration_v1.address_version_from_move_resources" */
|
|
579
|
-
export type Address_Version_From_Move_Resources = {
|
|
580
|
-
__typename?: 'address_version_from_move_resources';
|
|
581
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
582
|
-
/** An array relationship */
|
|
583
|
-
coin_activities: Array<Coin_Activities>;
|
|
584
|
-
/** An aggregate relationship */
|
|
585
|
-
coin_activities_aggregate: Coin_Activities_Aggregate;
|
|
586
|
-
/** An array relationship */
|
|
587
|
-
delegated_staking_activities: Array<Delegated_Staking_Activities>;
|
|
588
|
-
/** An array relationship */
|
|
589
|
-
token_activities: Array<Token_Activities>;
|
|
590
|
-
/** An aggregate relationship */
|
|
591
|
-
token_activities_aggregate: Token_Activities_Aggregate;
|
|
592
|
-
/** An array relationship */
|
|
593
|
-
token_activities_v2: Array<Token_Activities_V2>;
|
|
594
|
-
/** An aggregate relationship */
|
|
595
|
-
token_activities_v2_aggregate: Token_Activities_V2_Aggregate;
|
|
596
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
597
|
-
};
|
|
598
|
-
/** columns and relationships of "legacy_migration_v1.address_version_from_move_resources" */
|
|
599
|
-
export type Address_Version_From_Move_ResourcesCoin_ActivitiesArgs = {
|
|
600
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
601
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
602
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
603
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
604
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
605
|
-
};
|
|
606
|
-
/** columns and relationships of "legacy_migration_v1.address_version_from_move_resources" */
|
|
607
|
-
export type Address_Version_From_Move_ResourcesCoin_Activities_AggregateArgs = {
|
|
608
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
609
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
610
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
611
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
612
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
613
|
-
};
|
|
614
|
-
/** columns and relationships of "legacy_migration_v1.address_version_from_move_resources" */
|
|
615
|
-
export type Address_Version_From_Move_ResourcesDelegated_Staking_ActivitiesArgs = {
|
|
616
|
-
distinct_on?: InputMaybe<Array<Delegated_Staking_Activities_Select_Column>>;
|
|
617
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
618
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
619
|
-
order_by?: InputMaybe<Array<Delegated_Staking_Activities_Order_By>>;
|
|
620
|
-
where?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;
|
|
621
|
-
};
|
|
622
|
-
/** columns and relationships of "legacy_migration_v1.address_version_from_move_resources" */
|
|
623
|
-
export type Address_Version_From_Move_ResourcesToken_ActivitiesArgs = {
|
|
624
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
625
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
626
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
627
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
628
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
629
|
-
};
|
|
630
|
-
/** columns and relationships of "legacy_migration_v1.address_version_from_move_resources" */
|
|
631
|
-
export type Address_Version_From_Move_ResourcesToken_Activities_AggregateArgs = {
|
|
632
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
633
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
634
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
635
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
636
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
637
|
-
};
|
|
638
|
-
/** columns and relationships of "legacy_migration_v1.address_version_from_move_resources" */
|
|
639
|
-
export type Address_Version_From_Move_ResourcesToken_Activities_V2Args = {
|
|
640
|
-
distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;
|
|
641
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
642
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
643
|
-
order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;
|
|
644
|
-
where?: InputMaybe<Token_Activities_V2_Bool_Exp>;
|
|
645
|
-
};
|
|
646
|
-
/** columns and relationships of "legacy_migration_v1.address_version_from_move_resources" */
|
|
647
|
-
export type Address_Version_From_Move_ResourcesToken_Activities_V2_AggregateArgs = {
|
|
648
|
-
distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;
|
|
649
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
650
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
651
|
-
order_by?: InputMaybe<Array<Token_Activities_V2_Order_By>>;
|
|
652
|
-
where?: InputMaybe<Token_Activities_V2_Bool_Exp>;
|
|
653
|
-
};
|
|
654
|
-
/** aggregated selection of "legacy_migration_v1.address_version_from_move_resources" */
|
|
655
|
-
export type Address_Version_From_Move_Resources_Aggregate = {
|
|
656
|
-
__typename?: 'address_version_from_move_resources_aggregate';
|
|
657
|
-
aggregate?: Maybe<Address_Version_From_Move_Resources_Aggregate_Fields>;
|
|
658
|
-
nodes: Array<Address_Version_From_Move_Resources>;
|
|
659
|
-
};
|
|
660
|
-
/** aggregate fields of "legacy_migration_v1.address_version_from_move_resources" */
|
|
661
|
-
export type Address_Version_From_Move_Resources_Aggregate_Fields = {
|
|
662
|
-
__typename?: 'address_version_from_move_resources_aggregate_fields';
|
|
663
|
-
avg?: Maybe<Address_Version_From_Move_Resources_Avg_Fields>;
|
|
664
|
-
count: Scalars['Int']['output'];
|
|
665
|
-
max?: Maybe<Address_Version_From_Move_Resources_Max_Fields>;
|
|
666
|
-
min?: Maybe<Address_Version_From_Move_Resources_Min_Fields>;
|
|
667
|
-
stddev?: Maybe<Address_Version_From_Move_Resources_Stddev_Fields>;
|
|
668
|
-
stddev_pop?: Maybe<Address_Version_From_Move_Resources_Stddev_Pop_Fields>;
|
|
669
|
-
stddev_samp?: Maybe<Address_Version_From_Move_Resources_Stddev_Samp_Fields>;
|
|
670
|
-
sum?: Maybe<Address_Version_From_Move_Resources_Sum_Fields>;
|
|
671
|
-
var_pop?: Maybe<Address_Version_From_Move_Resources_Var_Pop_Fields>;
|
|
672
|
-
var_samp?: Maybe<Address_Version_From_Move_Resources_Var_Samp_Fields>;
|
|
673
|
-
variance?: Maybe<Address_Version_From_Move_Resources_Variance_Fields>;
|
|
674
|
-
};
|
|
675
|
-
/** aggregate fields of "legacy_migration_v1.address_version_from_move_resources" */
|
|
676
|
-
export type Address_Version_From_Move_Resources_Aggregate_FieldsCountArgs = {
|
|
677
|
-
columns?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;
|
|
678
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
679
|
-
};
|
|
680
|
-
/** aggregate avg on columns */
|
|
681
|
-
export type Address_Version_From_Move_Resources_Avg_Fields = {
|
|
682
|
-
__typename?: 'address_version_from_move_resources_avg_fields';
|
|
683
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
684
|
-
};
|
|
685
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.address_version_from_move_resources". All fields are combined with a logical 'AND'. */
|
|
686
|
-
export type Address_Version_From_Move_Resources_Bool_Exp = {
|
|
687
|
-
_and?: InputMaybe<Array<Address_Version_From_Move_Resources_Bool_Exp>>;
|
|
688
|
-
_not?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;
|
|
689
|
-
_or?: InputMaybe<Array<Address_Version_From_Move_Resources_Bool_Exp>>;
|
|
690
|
-
address?: InputMaybe<String_Comparison_Exp>;
|
|
691
|
-
coin_activities?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
692
|
-
coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp>;
|
|
693
|
-
delegated_staking_activities?: InputMaybe<Delegated_Staking_Activities_Bool_Exp>;
|
|
694
|
-
token_activities?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
695
|
-
token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Bool_Exp>;
|
|
696
|
-
token_activities_v2?: InputMaybe<Token_Activities_V2_Bool_Exp>;
|
|
697
|
-
token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Bool_Exp>;
|
|
698
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
699
|
-
};
|
|
700
|
-
/** aggregate max on columns */
|
|
701
|
-
export type Address_Version_From_Move_Resources_Max_Fields = {
|
|
702
|
-
__typename?: 'address_version_from_move_resources_max_fields';
|
|
703
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
704
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
705
|
-
};
|
|
706
|
-
/** aggregate min on columns */
|
|
707
|
-
export type Address_Version_From_Move_Resources_Min_Fields = {
|
|
708
|
-
__typename?: 'address_version_from_move_resources_min_fields';
|
|
709
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
710
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
711
|
-
};
|
|
712
|
-
/** Ordering options when selecting data from "legacy_migration_v1.address_version_from_move_resources". */
|
|
713
|
-
export type Address_Version_From_Move_Resources_Order_By = {
|
|
714
|
-
address?: InputMaybe<Order_By>;
|
|
715
|
-
coin_activities_aggregate?: InputMaybe<Coin_Activities_Aggregate_Order_By>;
|
|
716
|
-
delegated_staking_activities_aggregate?: InputMaybe<Delegated_Staking_Activities_Aggregate_Order_By>;
|
|
717
|
-
token_activities_aggregate?: InputMaybe<Token_Activities_Aggregate_Order_By>;
|
|
718
|
-
token_activities_v2_aggregate?: InputMaybe<Token_Activities_V2_Aggregate_Order_By>;
|
|
719
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
720
|
-
};
|
|
721
|
-
/** select columns of table "legacy_migration_v1.address_version_from_move_resources" */
|
|
722
|
-
export declare enum Address_Version_From_Move_Resources_Select_Column {
|
|
723
|
-
/** column name */
|
|
724
|
-
Address = "address",
|
|
725
|
-
/** column name */
|
|
726
|
-
TransactionVersion = "transaction_version"
|
|
727
|
-
}
|
|
728
|
-
/** aggregate stddev on columns */
|
|
729
|
-
export type Address_Version_From_Move_Resources_Stddev_Fields = {
|
|
730
|
-
__typename?: 'address_version_from_move_resources_stddev_fields';
|
|
731
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
732
|
-
};
|
|
733
|
-
/** aggregate stddev_pop on columns */
|
|
734
|
-
export type Address_Version_From_Move_Resources_Stddev_Pop_Fields = {
|
|
735
|
-
__typename?: 'address_version_from_move_resources_stddev_pop_fields';
|
|
736
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
737
|
-
};
|
|
738
|
-
/** aggregate stddev_samp on columns */
|
|
739
|
-
export type Address_Version_From_Move_Resources_Stddev_Samp_Fields = {
|
|
740
|
-
__typename?: 'address_version_from_move_resources_stddev_samp_fields';
|
|
741
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
742
|
-
};
|
|
743
|
-
/** Streaming cursor of the table "address_version_from_move_resources" */
|
|
744
|
-
export type Address_Version_From_Move_Resources_Stream_Cursor_Input = {
|
|
745
|
-
/** Stream column input with initial value */
|
|
746
|
-
initial_value: Address_Version_From_Move_Resources_Stream_Cursor_Value_Input;
|
|
747
|
-
/** cursor ordering */
|
|
748
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
749
|
-
};
|
|
750
|
-
/** Initial value of the column from where the streaming should start */
|
|
751
|
-
export type Address_Version_From_Move_Resources_Stream_Cursor_Value_Input = {
|
|
752
|
-
address?: InputMaybe<Scalars['String']['input']>;
|
|
753
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
754
|
-
};
|
|
755
|
-
/** aggregate sum on columns */
|
|
756
|
-
export type Address_Version_From_Move_Resources_Sum_Fields = {
|
|
757
|
-
__typename?: 'address_version_from_move_resources_sum_fields';
|
|
758
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
759
|
-
};
|
|
760
|
-
/** aggregate var_pop on columns */
|
|
761
|
-
export type Address_Version_From_Move_Resources_Var_Pop_Fields = {
|
|
762
|
-
__typename?: 'address_version_from_move_resources_var_pop_fields';
|
|
763
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
764
|
-
};
|
|
765
|
-
/** aggregate var_samp on columns */
|
|
766
|
-
export type Address_Version_From_Move_Resources_Var_Samp_Fields = {
|
|
767
|
-
__typename?: 'address_version_from_move_resources_var_samp_fields';
|
|
768
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
769
|
-
};
|
|
770
|
-
/** aggregate variance on columns */
|
|
771
|
-
export type Address_Version_From_Move_Resources_Variance_Fields = {
|
|
772
|
-
__typename?: 'address_version_from_move_resources_variance_fields';
|
|
773
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
774
|
-
};
|
|
775
287
|
/** columns and relationships of "auth_key_account_addresses" */
|
|
776
288
|
export type Auth_Key_Account_Addresses = {
|
|
777
289
|
__typename?: 'auth_key_account_addresses';
|
|
@@ -1002,865 +514,6 @@ export type Block_Metadata_Transactions_Stream_Cursor_Value_Input = {
|
|
|
1002
514
|
timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1003
515
|
version?: InputMaybe<Scalars['bigint']['input']>;
|
|
1004
516
|
};
|
|
1005
|
-
/** columns and relationships of "legacy_migration_v1.coin_activities" */
|
|
1006
|
-
export type Coin_Activities = {
|
|
1007
|
-
__typename?: 'coin_activities';
|
|
1008
|
-
activity_type?: Maybe<Scalars['String']['output']>;
|
|
1009
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
1010
|
-
/** An array relationship */
|
|
1011
|
-
aptos_names: Array<Current_Aptos_Names>;
|
|
1012
|
-
/** An aggregate relationship */
|
|
1013
|
-
aptos_names_aggregate: Current_Aptos_Names_Aggregate;
|
|
1014
|
-
block_height?: Maybe<Scalars['bigint']['output']>;
|
|
1015
|
-
/** An object relationship */
|
|
1016
|
-
coin_info?: Maybe<Coin_Infos>;
|
|
1017
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
1018
|
-
entry_function_id_str?: Maybe<Scalars['String']['output']>;
|
|
1019
|
-
event_account_address?: Maybe<Scalars['String']['output']>;
|
|
1020
|
-
event_creation_number?: Maybe<Scalars['Int']['output']>;
|
|
1021
|
-
event_index?: Maybe<Scalars['bigint']['output']>;
|
|
1022
|
-
event_sequence_number?: Maybe<Scalars['Int']['output']>;
|
|
1023
|
-
is_gas_fee?: Maybe<Scalars['Boolean']['output']>;
|
|
1024
|
-
is_transaction_success?: Maybe<Scalars['Boolean']['output']>;
|
|
1025
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
1026
|
-
storage_refund_amount?: Maybe<Scalars['numeric']['output']>;
|
|
1027
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1028
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
1029
|
-
};
|
|
1030
|
-
/** columns and relationships of "legacy_migration_v1.coin_activities" */
|
|
1031
|
-
export type Coin_ActivitiesAptos_NamesArgs = {
|
|
1032
|
-
distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;
|
|
1033
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1034
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1035
|
-
order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;
|
|
1036
|
-
where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
1037
|
-
};
|
|
1038
|
-
/** columns and relationships of "legacy_migration_v1.coin_activities" */
|
|
1039
|
-
export type Coin_ActivitiesAptos_Names_AggregateArgs = {
|
|
1040
|
-
distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;
|
|
1041
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1042
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1043
|
-
order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;
|
|
1044
|
-
where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
1045
|
-
};
|
|
1046
|
-
/** aggregated selection of "legacy_migration_v1.coin_activities" */
|
|
1047
|
-
export type Coin_Activities_Aggregate = {
|
|
1048
|
-
__typename?: 'coin_activities_aggregate';
|
|
1049
|
-
aggregate?: Maybe<Coin_Activities_Aggregate_Fields>;
|
|
1050
|
-
nodes: Array<Coin_Activities>;
|
|
1051
|
-
};
|
|
1052
|
-
export type Coin_Activities_Aggregate_Bool_Exp = {
|
|
1053
|
-
bool_and?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Bool_And>;
|
|
1054
|
-
bool_or?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Bool_Or>;
|
|
1055
|
-
count?: InputMaybe<Coin_Activities_Aggregate_Bool_Exp_Count>;
|
|
1056
|
-
};
|
|
1057
|
-
export type Coin_Activities_Aggregate_Bool_Exp_Bool_And = {
|
|
1058
|
-
arguments: Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;
|
|
1059
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1060
|
-
filter?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
1061
|
-
predicate: Boolean_Comparison_Exp;
|
|
1062
|
-
};
|
|
1063
|
-
export type Coin_Activities_Aggregate_Bool_Exp_Bool_Or = {
|
|
1064
|
-
arguments: Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;
|
|
1065
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1066
|
-
filter?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
1067
|
-
predicate: Boolean_Comparison_Exp;
|
|
1068
|
-
};
|
|
1069
|
-
export type Coin_Activities_Aggregate_Bool_Exp_Count = {
|
|
1070
|
-
arguments?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
1071
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1072
|
-
filter?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
1073
|
-
predicate: Int_Comparison_Exp;
|
|
1074
|
-
};
|
|
1075
|
-
/** aggregate fields of "legacy_migration_v1.coin_activities" */
|
|
1076
|
-
export type Coin_Activities_Aggregate_Fields = {
|
|
1077
|
-
__typename?: 'coin_activities_aggregate_fields';
|
|
1078
|
-
avg?: Maybe<Coin_Activities_Avg_Fields>;
|
|
1079
|
-
count: Scalars['Int']['output'];
|
|
1080
|
-
max?: Maybe<Coin_Activities_Max_Fields>;
|
|
1081
|
-
min?: Maybe<Coin_Activities_Min_Fields>;
|
|
1082
|
-
stddev?: Maybe<Coin_Activities_Stddev_Fields>;
|
|
1083
|
-
stddev_pop?: Maybe<Coin_Activities_Stddev_Pop_Fields>;
|
|
1084
|
-
stddev_samp?: Maybe<Coin_Activities_Stddev_Samp_Fields>;
|
|
1085
|
-
sum?: Maybe<Coin_Activities_Sum_Fields>;
|
|
1086
|
-
var_pop?: Maybe<Coin_Activities_Var_Pop_Fields>;
|
|
1087
|
-
var_samp?: Maybe<Coin_Activities_Var_Samp_Fields>;
|
|
1088
|
-
variance?: Maybe<Coin_Activities_Variance_Fields>;
|
|
1089
|
-
};
|
|
1090
|
-
/** aggregate fields of "legacy_migration_v1.coin_activities" */
|
|
1091
|
-
export type Coin_Activities_Aggregate_FieldsCountArgs = {
|
|
1092
|
-
columns?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
1093
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1094
|
-
};
|
|
1095
|
-
/** order by aggregate values of table "legacy_migration_v1.coin_activities" */
|
|
1096
|
-
export type Coin_Activities_Aggregate_Order_By = {
|
|
1097
|
-
avg?: InputMaybe<Coin_Activities_Avg_Order_By>;
|
|
1098
|
-
count?: InputMaybe<Order_By>;
|
|
1099
|
-
max?: InputMaybe<Coin_Activities_Max_Order_By>;
|
|
1100
|
-
min?: InputMaybe<Coin_Activities_Min_Order_By>;
|
|
1101
|
-
stddev?: InputMaybe<Coin_Activities_Stddev_Order_By>;
|
|
1102
|
-
stddev_pop?: InputMaybe<Coin_Activities_Stddev_Pop_Order_By>;
|
|
1103
|
-
stddev_samp?: InputMaybe<Coin_Activities_Stddev_Samp_Order_By>;
|
|
1104
|
-
sum?: InputMaybe<Coin_Activities_Sum_Order_By>;
|
|
1105
|
-
var_pop?: InputMaybe<Coin_Activities_Var_Pop_Order_By>;
|
|
1106
|
-
var_samp?: InputMaybe<Coin_Activities_Var_Samp_Order_By>;
|
|
1107
|
-
variance?: InputMaybe<Coin_Activities_Variance_Order_By>;
|
|
1108
|
-
};
|
|
1109
|
-
/** aggregate avg on columns */
|
|
1110
|
-
export type Coin_Activities_Avg_Fields = {
|
|
1111
|
-
__typename?: 'coin_activities_avg_fields';
|
|
1112
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
1113
|
-
block_height?: Maybe<Scalars['Float']['output']>;
|
|
1114
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
1115
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
1116
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
1117
|
-
storage_refund_amount?: Maybe<Scalars['Float']['output']>;
|
|
1118
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
1119
|
-
};
|
|
1120
|
-
/** order by avg() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1121
|
-
export type Coin_Activities_Avg_Order_By = {
|
|
1122
|
-
amount?: InputMaybe<Order_By>;
|
|
1123
|
-
block_height?: InputMaybe<Order_By>;
|
|
1124
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1125
|
-
event_index?: InputMaybe<Order_By>;
|
|
1126
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1127
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1128
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1129
|
-
};
|
|
1130
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.coin_activities". All fields are combined with a logical 'AND'. */
|
|
1131
|
-
export type Coin_Activities_Bool_Exp = {
|
|
1132
|
-
_and?: InputMaybe<Array<Coin_Activities_Bool_Exp>>;
|
|
1133
|
-
_not?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
1134
|
-
_or?: InputMaybe<Array<Coin_Activities_Bool_Exp>>;
|
|
1135
|
-
activity_type?: InputMaybe<String_Comparison_Exp>;
|
|
1136
|
-
amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1137
|
-
aptos_names?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
1138
|
-
aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;
|
|
1139
|
-
block_height?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1140
|
-
coin_info?: InputMaybe<Coin_Infos_Bool_Exp>;
|
|
1141
|
-
coin_type?: InputMaybe<String_Comparison_Exp>;
|
|
1142
|
-
entry_function_id_str?: InputMaybe<String_Comparison_Exp>;
|
|
1143
|
-
event_account_address?: InputMaybe<String_Comparison_Exp>;
|
|
1144
|
-
event_creation_number?: InputMaybe<Int_Comparison_Exp>;
|
|
1145
|
-
event_index?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1146
|
-
event_sequence_number?: InputMaybe<Int_Comparison_Exp>;
|
|
1147
|
-
is_gas_fee?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1148
|
-
is_transaction_success?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1149
|
-
owner_address?: InputMaybe<String_Comparison_Exp>;
|
|
1150
|
-
storage_refund_amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1151
|
-
transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1152
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1153
|
-
};
|
|
1154
|
-
/** aggregate max on columns */
|
|
1155
|
-
export type Coin_Activities_Max_Fields = {
|
|
1156
|
-
__typename?: 'coin_activities_max_fields';
|
|
1157
|
-
activity_type?: Maybe<Scalars['String']['output']>;
|
|
1158
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
1159
|
-
block_height?: Maybe<Scalars['bigint']['output']>;
|
|
1160
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
1161
|
-
entry_function_id_str?: Maybe<Scalars['String']['output']>;
|
|
1162
|
-
event_account_address?: Maybe<Scalars['String']['output']>;
|
|
1163
|
-
event_creation_number?: Maybe<Scalars['Int']['output']>;
|
|
1164
|
-
event_index?: Maybe<Scalars['bigint']['output']>;
|
|
1165
|
-
event_sequence_number?: Maybe<Scalars['Int']['output']>;
|
|
1166
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
1167
|
-
storage_refund_amount?: Maybe<Scalars['numeric']['output']>;
|
|
1168
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1169
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
1170
|
-
};
|
|
1171
|
-
/** order by max() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1172
|
-
export type Coin_Activities_Max_Order_By = {
|
|
1173
|
-
activity_type?: InputMaybe<Order_By>;
|
|
1174
|
-
amount?: InputMaybe<Order_By>;
|
|
1175
|
-
block_height?: InputMaybe<Order_By>;
|
|
1176
|
-
coin_type?: InputMaybe<Order_By>;
|
|
1177
|
-
entry_function_id_str?: InputMaybe<Order_By>;
|
|
1178
|
-
event_account_address?: InputMaybe<Order_By>;
|
|
1179
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1180
|
-
event_index?: InputMaybe<Order_By>;
|
|
1181
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1182
|
-
owner_address?: InputMaybe<Order_By>;
|
|
1183
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1184
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
1185
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1186
|
-
};
|
|
1187
|
-
/** aggregate min on columns */
|
|
1188
|
-
export type Coin_Activities_Min_Fields = {
|
|
1189
|
-
__typename?: 'coin_activities_min_fields';
|
|
1190
|
-
activity_type?: Maybe<Scalars['String']['output']>;
|
|
1191
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
1192
|
-
block_height?: Maybe<Scalars['bigint']['output']>;
|
|
1193
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
1194
|
-
entry_function_id_str?: Maybe<Scalars['String']['output']>;
|
|
1195
|
-
event_account_address?: Maybe<Scalars['String']['output']>;
|
|
1196
|
-
event_creation_number?: Maybe<Scalars['Int']['output']>;
|
|
1197
|
-
event_index?: Maybe<Scalars['bigint']['output']>;
|
|
1198
|
-
event_sequence_number?: Maybe<Scalars['Int']['output']>;
|
|
1199
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
1200
|
-
storage_refund_amount?: Maybe<Scalars['numeric']['output']>;
|
|
1201
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1202
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
1203
|
-
};
|
|
1204
|
-
/** order by min() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1205
|
-
export type Coin_Activities_Min_Order_By = {
|
|
1206
|
-
activity_type?: InputMaybe<Order_By>;
|
|
1207
|
-
amount?: InputMaybe<Order_By>;
|
|
1208
|
-
block_height?: InputMaybe<Order_By>;
|
|
1209
|
-
coin_type?: InputMaybe<Order_By>;
|
|
1210
|
-
entry_function_id_str?: InputMaybe<Order_By>;
|
|
1211
|
-
event_account_address?: InputMaybe<Order_By>;
|
|
1212
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1213
|
-
event_index?: InputMaybe<Order_By>;
|
|
1214
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1215
|
-
owner_address?: InputMaybe<Order_By>;
|
|
1216
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1217
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
1218
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1219
|
-
};
|
|
1220
|
-
/** Ordering options when selecting data from "legacy_migration_v1.coin_activities". */
|
|
1221
|
-
export type Coin_Activities_Order_By = {
|
|
1222
|
-
activity_type?: InputMaybe<Order_By>;
|
|
1223
|
-
amount?: InputMaybe<Order_By>;
|
|
1224
|
-
aptos_names_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;
|
|
1225
|
-
block_height?: InputMaybe<Order_By>;
|
|
1226
|
-
coin_info?: InputMaybe<Coin_Infos_Order_By>;
|
|
1227
|
-
coin_type?: InputMaybe<Order_By>;
|
|
1228
|
-
entry_function_id_str?: InputMaybe<Order_By>;
|
|
1229
|
-
event_account_address?: InputMaybe<Order_By>;
|
|
1230
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1231
|
-
event_index?: InputMaybe<Order_By>;
|
|
1232
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1233
|
-
is_gas_fee?: InputMaybe<Order_By>;
|
|
1234
|
-
is_transaction_success?: InputMaybe<Order_By>;
|
|
1235
|
-
owner_address?: InputMaybe<Order_By>;
|
|
1236
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1237
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
1238
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1239
|
-
};
|
|
1240
|
-
/** select columns of table "legacy_migration_v1.coin_activities" */
|
|
1241
|
-
export declare enum Coin_Activities_Select_Column {
|
|
1242
|
-
/** column name */
|
|
1243
|
-
ActivityType = "activity_type",
|
|
1244
|
-
/** column name */
|
|
1245
|
-
Amount = "amount",
|
|
1246
|
-
/** column name */
|
|
1247
|
-
BlockHeight = "block_height",
|
|
1248
|
-
/** column name */
|
|
1249
|
-
CoinType = "coin_type",
|
|
1250
|
-
/** column name */
|
|
1251
|
-
EntryFunctionIdStr = "entry_function_id_str",
|
|
1252
|
-
/** column name */
|
|
1253
|
-
EventAccountAddress = "event_account_address",
|
|
1254
|
-
/** column name */
|
|
1255
|
-
EventCreationNumber = "event_creation_number",
|
|
1256
|
-
/** column name */
|
|
1257
|
-
EventIndex = "event_index",
|
|
1258
|
-
/** column name */
|
|
1259
|
-
EventSequenceNumber = "event_sequence_number",
|
|
1260
|
-
/** column name */
|
|
1261
|
-
IsGasFee = "is_gas_fee",
|
|
1262
|
-
/** column name */
|
|
1263
|
-
IsTransactionSuccess = "is_transaction_success",
|
|
1264
|
-
/** column name */
|
|
1265
|
-
OwnerAddress = "owner_address",
|
|
1266
|
-
/** column name */
|
|
1267
|
-
StorageRefundAmount = "storage_refund_amount",
|
|
1268
|
-
/** column name */
|
|
1269
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
1270
|
-
/** column name */
|
|
1271
|
-
TransactionVersion = "transaction_version"
|
|
1272
|
-
}
|
|
1273
|
-
/** select "coin_activities_aggregate_bool_exp_bool_and_arguments_columns" columns of table "legacy_migration_v1.coin_activities" */
|
|
1274
|
-
export declare enum Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns {
|
|
1275
|
-
/** column name */
|
|
1276
|
-
IsGasFee = "is_gas_fee",
|
|
1277
|
-
/** column name */
|
|
1278
|
-
IsTransactionSuccess = "is_transaction_success"
|
|
1279
|
-
}
|
|
1280
|
-
/** select "coin_activities_aggregate_bool_exp_bool_or_arguments_columns" columns of table "legacy_migration_v1.coin_activities" */
|
|
1281
|
-
export declare enum Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns {
|
|
1282
|
-
/** column name */
|
|
1283
|
-
IsGasFee = "is_gas_fee",
|
|
1284
|
-
/** column name */
|
|
1285
|
-
IsTransactionSuccess = "is_transaction_success"
|
|
1286
|
-
}
|
|
1287
|
-
/** aggregate stddev on columns */
|
|
1288
|
-
export type Coin_Activities_Stddev_Fields = {
|
|
1289
|
-
__typename?: 'coin_activities_stddev_fields';
|
|
1290
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
1291
|
-
block_height?: Maybe<Scalars['Float']['output']>;
|
|
1292
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
1293
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
1294
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
1295
|
-
storage_refund_amount?: Maybe<Scalars['Float']['output']>;
|
|
1296
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
1297
|
-
};
|
|
1298
|
-
/** order by stddev() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1299
|
-
export type Coin_Activities_Stddev_Order_By = {
|
|
1300
|
-
amount?: InputMaybe<Order_By>;
|
|
1301
|
-
block_height?: InputMaybe<Order_By>;
|
|
1302
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1303
|
-
event_index?: InputMaybe<Order_By>;
|
|
1304
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1305
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1306
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1307
|
-
};
|
|
1308
|
-
/** aggregate stddev_pop on columns */
|
|
1309
|
-
export type Coin_Activities_Stddev_Pop_Fields = {
|
|
1310
|
-
__typename?: 'coin_activities_stddev_pop_fields';
|
|
1311
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
1312
|
-
block_height?: Maybe<Scalars['Float']['output']>;
|
|
1313
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
1314
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
1315
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
1316
|
-
storage_refund_amount?: Maybe<Scalars['Float']['output']>;
|
|
1317
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
1318
|
-
};
|
|
1319
|
-
/** order by stddev_pop() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1320
|
-
export type Coin_Activities_Stddev_Pop_Order_By = {
|
|
1321
|
-
amount?: InputMaybe<Order_By>;
|
|
1322
|
-
block_height?: InputMaybe<Order_By>;
|
|
1323
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1324
|
-
event_index?: InputMaybe<Order_By>;
|
|
1325
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1326
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1327
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1328
|
-
};
|
|
1329
|
-
/** aggregate stddev_samp on columns */
|
|
1330
|
-
export type Coin_Activities_Stddev_Samp_Fields = {
|
|
1331
|
-
__typename?: 'coin_activities_stddev_samp_fields';
|
|
1332
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
1333
|
-
block_height?: Maybe<Scalars['Float']['output']>;
|
|
1334
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
1335
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
1336
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
1337
|
-
storage_refund_amount?: Maybe<Scalars['Float']['output']>;
|
|
1338
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
1339
|
-
};
|
|
1340
|
-
/** order by stddev_samp() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1341
|
-
export type Coin_Activities_Stddev_Samp_Order_By = {
|
|
1342
|
-
amount?: InputMaybe<Order_By>;
|
|
1343
|
-
block_height?: InputMaybe<Order_By>;
|
|
1344
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1345
|
-
event_index?: InputMaybe<Order_By>;
|
|
1346
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1347
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1348
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1349
|
-
};
|
|
1350
|
-
/** Streaming cursor of the table "coin_activities" */
|
|
1351
|
-
export type Coin_Activities_Stream_Cursor_Input = {
|
|
1352
|
-
/** Stream column input with initial value */
|
|
1353
|
-
initial_value: Coin_Activities_Stream_Cursor_Value_Input;
|
|
1354
|
-
/** cursor ordering */
|
|
1355
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1356
|
-
};
|
|
1357
|
-
/** Initial value of the column from where the streaming should start */
|
|
1358
|
-
export type Coin_Activities_Stream_Cursor_Value_Input = {
|
|
1359
|
-
activity_type?: InputMaybe<Scalars['String']['input']>;
|
|
1360
|
-
amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
1361
|
-
block_height?: InputMaybe<Scalars['bigint']['input']>;
|
|
1362
|
-
coin_type?: InputMaybe<Scalars['String']['input']>;
|
|
1363
|
-
entry_function_id_str?: InputMaybe<Scalars['String']['input']>;
|
|
1364
|
-
event_account_address?: InputMaybe<Scalars['String']['input']>;
|
|
1365
|
-
event_creation_number?: InputMaybe<Scalars['Int']['input']>;
|
|
1366
|
-
event_index?: InputMaybe<Scalars['bigint']['input']>;
|
|
1367
|
-
event_sequence_number?: InputMaybe<Scalars['Int']['input']>;
|
|
1368
|
-
is_gas_fee?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1369
|
-
is_transaction_success?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1370
|
-
owner_address?: InputMaybe<Scalars['String']['input']>;
|
|
1371
|
-
storage_refund_amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
1372
|
-
transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1373
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
1374
|
-
};
|
|
1375
|
-
/** aggregate sum on columns */
|
|
1376
|
-
export type Coin_Activities_Sum_Fields = {
|
|
1377
|
-
__typename?: 'coin_activities_sum_fields';
|
|
1378
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
1379
|
-
block_height?: Maybe<Scalars['bigint']['output']>;
|
|
1380
|
-
event_creation_number?: Maybe<Scalars['Int']['output']>;
|
|
1381
|
-
event_index?: Maybe<Scalars['bigint']['output']>;
|
|
1382
|
-
event_sequence_number?: Maybe<Scalars['Int']['output']>;
|
|
1383
|
-
storage_refund_amount?: Maybe<Scalars['numeric']['output']>;
|
|
1384
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
1385
|
-
};
|
|
1386
|
-
/** order by sum() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1387
|
-
export type Coin_Activities_Sum_Order_By = {
|
|
1388
|
-
amount?: InputMaybe<Order_By>;
|
|
1389
|
-
block_height?: InputMaybe<Order_By>;
|
|
1390
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1391
|
-
event_index?: InputMaybe<Order_By>;
|
|
1392
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1393
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1394
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1395
|
-
};
|
|
1396
|
-
/** aggregate var_pop on columns */
|
|
1397
|
-
export type Coin_Activities_Var_Pop_Fields = {
|
|
1398
|
-
__typename?: 'coin_activities_var_pop_fields';
|
|
1399
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
1400
|
-
block_height?: Maybe<Scalars['Float']['output']>;
|
|
1401
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
1402
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
1403
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
1404
|
-
storage_refund_amount?: Maybe<Scalars['Float']['output']>;
|
|
1405
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
1406
|
-
};
|
|
1407
|
-
/** order by var_pop() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1408
|
-
export type Coin_Activities_Var_Pop_Order_By = {
|
|
1409
|
-
amount?: InputMaybe<Order_By>;
|
|
1410
|
-
block_height?: InputMaybe<Order_By>;
|
|
1411
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1412
|
-
event_index?: InputMaybe<Order_By>;
|
|
1413
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1414
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1415
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1416
|
-
};
|
|
1417
|
-
/** aggregate var_samp on columns */
|
|
1418
|
-
export type Coin_Activities_Var_Samp_Fields = {
|
|
1419
|
-
__typename?: 'coin_activities_var_samp_fields';
|
|
1420
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
1421
|
-
block_height?: Maybe<Scalars['Float']['output']>;
|
|
1422
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
1423
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
1424
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
1425
|
-
storage_refund_amount?: Maybe<Scalars['Float']['output']>;
|
|
1426
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
1427
|
-
};
|
|
1428
|
-
/** order by var_samp() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1429
|
-
export type Coin_Activities_Var_Samp_Order_By = {
|
|
1430
|
-
amount?: InputMaybe<Order_By>;
|
|
1431
|
-
block_height?: InputMaybe<Order_By>;
|
|
1432
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1433
|
-
event_index?: InputMaybe<Order_By>;
|
|
1434
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1435
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1436
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1437
|
-
};
|
|
1438
|
-
/** aggregate variance on columns */
|
|
1439
|
-
export type Coin_Activities_Variance_Fields = {
|
|
1440
|
-
__typename?: 'coin_activities_variance_fields';
|
|
1441
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
1442
|
-
block_height?: Maybe<Scalars['Float']['output']>;
|
|
1443
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
1444
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
1445
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
1446
|
-
storage_refund_amount?: Maybe<Scalars['Float']['output']>;
|
|
1447
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
1448
|
-
};
|
|
1449
|
-
/** order by variance() on columns of table "legacy_migration_v1.coin_activities" */
|
|
1450
|
-
export type Coin_Activities_Variance_Order_By = {
|
|
1451
|
-
amount?: InputMaybe<Order_By>;
|
|
1452
|
-
block_height?: InputMaybe<Order_By>;
|
|
1453
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
1454
|
-
event_index?: InputMaybe<Order_By>;
|
|
1455
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
1456
|
-
storage_refund_amount?: InputMaybe<Order_By>;
|
|
1457
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1458
|
-
};
|
|
1459
|
-
/** columns and relationships of "legacy_migration_v1.coin_balances" */
|
|
1460
|
-
export type Coin_Balances = {
|
|
1461
|
-
__typename?: 'coin_balances';
|
|
1462
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
1463
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
1464
|
-
coin_type_hash?: Maybe<Scalars['String']['output']>;
|
|
1465
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
1466
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1467
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
1468
|
-
};
|
|
1469
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.coin_balances". All fields are combined with a logical 'AND'. */
|
|
1470
|
-
export type Coin_Balances_Bool_Exp = {
|
|
1471
|
-
_and?: InputMaybe<Array<Coin_Balances_Bool_Exp>>;
|
|
1472
|
-
_not?: InputMaybe<Coin_Balances_Bool_Exp>;
|
|
1473
|
-
_or?: InputMaybe<Array<Coin_Balances_Bool_Exp>>;
|
|
1474
|
-
amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1475
|
-
coin_type?: InputMaybe<String_Comparison_Exp>;
|
|
1476
|
-
coin_type_hash?: InputMaybe<String_Comparison_Exp>;
|
|
1477
|
-
owner_address?: InputMaybe<String_Comparison_Exp>;
|
|
1478
|
-
transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1479
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1480
|
-
};
|
|
1481
|
-
/** Ordering options when selecting data from "legacy_migration_v1.coin_balances". */
|
|
1482
|
-
export type Coin_Balances_Order_By = {
|
|
1483
|
-
amount?: InputMaybe<Order_By>;
|
|
1484
|
-
coin_type?: InputMaybe<Order_By>;
|
|
1485
|
-
coin_type_hash?: InputMaybe<Order_By>;
|
|
1486
|
-
owner_address?: InputMaybe<Order_By>;
|
|
1487
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
1488
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1489
|
-
};
|
|
1490
|
-
/** select columns of table "legacy_migration_v1.coin_balances" */
|
|
1491
|
-
export declare enum Coin_Balances_Select_Column {
|
|
1492
|
-
/** column name */
|
|
1493
|
-
Amount = "amount",
|
|
1494
|
-
/** column name */
|
|
1495
|
-
CoinType = "coin_type",
|
|
1496
|
-
/** column name */
|
|
1497
|
-
CoinTypeHash = "coin_type_hash",
|
|
1498
|
-
/** column name */
|
|
1499
|
-
OwnerAddress = "owner_address",
|
|
1500
|
-
/** column name */
|
|
1501
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
1502
|
-
/** column name */
|
|
1503
|
-
TransactionVersion = "transaction_version"
|
|
1504
|
-
}
|
|
1505
|
-
/** Streaming cursor of the table "coin_balances" */
|
|
1506
|
-
export type Coin_Balances_Stream_Cursor_Input = {
|
|
1507
|
-
/** Stream column input with initial value */
|
|
1508
|
-
initial_value: Coin_Balances_Stream_Cursor_Value_Input;
|
|
1509
|
-
/** cursor ordering */
|
|
1510
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1511
|
-
};
|
|
1512
|
-
/** Initial value of the column from where the streaming should start */
|
|
1513
|
-
export type Coin_Balances_Stream_Cursor_Value_Input = {
|
|
1514
|
-
amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
1515
|
-
coin_type?: InputMaybe<Scalars['String']['input']>;
|
|
1516
|
-
coin_type_hash?: InputMaybe<Scalars['String']['input']>;
|
|
1517
|
-
owner_address?: InputMaybe<Scalars['String']['input']>;
|
|
1518
|
-
transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1519
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
1520
|
-
};
|
|
1521
|
-
/** columns and relationships of "legacy_migration_v1.coin_infos" */
|
|
1522
|
-
export type Coin_Infos = {
|
|
1523
|
-
__typename?: 'coin_infos';
|
|
1524
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
1525
|
-
coin_type_hash?: Maybe<Scalars['String']['output']>;
|
|
1526
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
1527
|
-
decimals?: Maybe<Scalars['Int']['output']>;
|
|
1528
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
1529
|
-
supply_aggregator_table_handle?: Maybe<Scalars['String']['output']>;
|
|
1530
|
-
supply_aggregator_table_key?: Maybe<Scalars['String']['output']>;
|
|
1531
|
-
symbol?: Maybe<Scalars['String']['output']>;
|
|
1532
|
-
transaction_created_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1533
|
-
transaction_version_created?: Maybe<Scalars['bigint']['output']>;
|
|
1534
|
-
};
|
|
1535
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.coin_infos". All fields are combined with a logical 'AND'. */
|
|
1536
|
-
export type Coin_Infos_Bool_Exp = {
|
|
1537
|
-
_and?: InputMaybe<Array<Coin_Infos_Bool_Exp>>;
|
|
1538
|
-
_not?: InputMaybe<Coin_Infos_Bool_Exp>;
|
|
1539
|
-
_or?: InputMaybe<Array<Coin_Infos_Bool_Exp>>;
|
|
1540
|
-
coin_type?: InputMaybe<String_Comparison_Exp>;
|
|
1541
|
-
coin_type_hash?: InputMaybe<String_Comparison_Exp>;
|
|
1542
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
1543
|
-
decimals?: InputMaybe<Int_Comparison_Exp>;
|
|
1544
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
1545
|
-
supply_aggregator_table_handle?: InputMaybe<String_Comparison_Exp>;
|
|
1546
|
-
supply_aggregator_table_key?: InputMaybe<String_Comparison_Exp>;
|
|
1547
|
-
symbol?: InputMaybe<String_Comparison_Exp>;
|
|
1548
|
-
transaction_created_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1549
|
-
transaction_version_created?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1550
|
-
};
|
|
1551
|
-
/** Ordering options when selecting data from "legacy_migration_v1.coin_infos". */
|
|
1552
|
-
export type Coin_Infos_Order_By = {
|
|
1553
|
-
coin_type?: InputMaybe<Order_By>;
|
|
1554
|
-
coin_type_hash?: InputMaybe<Order_By>;
|
|
1555
|
-
creator_address?: InputMaybe<Order_By>;
|
|
1556
|
-
decimals?: InputMaybe<Order_By>;
|
|
1557
|
-
name?: InputMaybe<Order_By>;
|
|
1558
|
-
supply_aggregator_table_handle?: InputMaybe<Order_By>;
|
|
1559
|
-
supply_aggregator_table_key?: InputMaybe<Order_By>;
|
|
1560
|
-
symbol?: InputMaybe<Order_By>;
|
|
1561
|
-
transaction_created_timestamp?: InputMaybe<Order_By>;
|
|
1562
|
-
transaction_version_created?: InputMaybe<Order_By>;
|
|
1563
|
-
};
|
|
1564
|
-
/** select columns of table "legacy_migration_v1.coin_infos" */
|
|
1565
|
-
export declare enum Coin_Infos_Select_Column {
|
|
1566
|
-
/** column name */
|
|
1567
|
-
CoinType = "coin_type",
|
|
1568
|
-
/** column name */
|
|
1569
|
-
CoinTypeHash = "coin_type_hash",
|
|
1570
|
-
/** column name */
|
|
1571
|
-
CreatorAddress = "creator_address",
|
|
1572
|
-
/** column name */
|
|
1573
|
-
Decimals = "decimals",
|
|
1574
|
-
/** column name */
|
|
1575
|
-
Name = "name",
|
|
1576
|
-
/** column name */
|
|
1577
|
-
SupplyAggregatorTableHandle = "supply_aggregator_table_handle",
|
|
1578
|
-
/** column name */
|
|
1579
|
-
SupplyAggregatorTableKey = "supply_aggregator_table_key",
|
|
1580
|
-
/** column name */
|
|
1581
|
-
Symbol = "symbol",
|
|
1582
|
-
/** column name */
|
|
1583
|
-
TransactionCreatedTimestamp = "transaction_created_timestamp",
|
|
1584
|
-
/** column name */
|
|
1585
|
-
TransactionVersionCreated = "transaction_version_created"
|
|
1586
|
-
}
|
|
1587
|
-
/** Streaming cursor of the table "coin_infos" */
|
|
1588
|
-
export type Coin_Infos_Stream_Cursor_Input = {
|
|
1589
|
-
/** Stream column input with initial value */
|
|
1590
|
-
initial_value: Coin_Infos_Stream_Cursor_Value_Input;
|
|
1591
|
-
/** cursor ordering */
|
|
1592
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1593
|
-
};
|
|
1594
|
-
/** Initial value of the column from where the streaming should start */
|
|
1595
|
-
export type Coin_Infos_Stream_Cursor_Value_Input = {
|
|
1596
|
-
coin_type?: InputMaybe<Scalars['String']['input']>;
|
|
1597
|
-
coin_type_hash?: InputMaybe<Scalars['String']['input']>;
|
|
1598
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
1599
|
-
decimals?: InputMaybe<Scalars['Int']['input']>;
|
|
1600
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
1601
|
-
supply_aggregator_table_handle?: InputMaybe<Scalars['String']['input']>;
|
|
1602
|
-
supply_aggregator_table_key?: InputMaybe<Scalars['String']['input']>;
|
|
1603
|
-
symbol?: InputMaybe<Scalars['String']['input']>;
|
|
1604
|
-
transaction_created_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1605
|
-
transaction_version_created?: InputMaybe<Scalars['bigint']['input']>;
|
|
1606
|
-
};
|
|
1607
|
-
/** columns and relationships of "coin_supply" */
|
|
1608
|
-
export type Coin_Supply = {
|
|
1609
|
-
__typename?: 'coin_supply';
|
|
1610
|
-
coin_type: Scalars['String']['output'];
|
|
1611
|
-
coin_type_hash: Scalars['String']['output'];
|
|
1612
|
-
supply: Scalars['numeric']['output'];
|
|
1613
|
-
transaction_epoch: Scalars['bigint']['output'];
|
|
1614
|
-
transaction_timestamp: Scalars['timestamp']['output'];
|
|
1615
|
-
transaction_version: Scalars['bigint']['output'];
|
|
1616
|
-
};
|
|
1617
|
-
/** Boolean expression to filter rows from the table "coin_supply". All fields are combined with a logical 'AND'. */
|
|
1618
|
-
export type Coin_Supply_Bool_Exp = {
|
|
1619
|
-
_and?: InputMaybe<Array<Coin_Supply_Bool_Exp>>;
|
|
1620
|
-
_not?: InputMaybe<Coin_Supply_Bool_Exp>;
|
|
1621
|
-
_or?: InputMaybe<Array<Coin_Supply_Bool_Exp>>;
|
|
1622
|
-
coin_type?: InputMaybe<String_Comparison_Exp>;
|
|
1623
|
-
coin_type_hash?: InputMaybe<String_Comparison_Exp>;
|
|
1624
|
-
supply?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1625
|
-
transaction_epoch?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1626
|
-
transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1627
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1628
|
-
};
|
|
1629
|
-
/** Ordering options when selecting data from "coin_supply". */
|
|
1630
|
-
export type Coin_Supply_Order_By = {
|
|
1631
|
-
coin_type?: InputMaybe<Order_By>;
|
|
1632
|
-
coin_type_hash?: InputMaybe<Order_By>;
|
|
1633
|
-
supply?: InputMaybe<Order_By>;
|
|
1634
|
-
transaction_epoch?: InputMaybe<Order_By>;
|
|
1635
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
1636
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1637
|
-
};
|
|
1638
|
-
/** select columns of table "coin_supply" */
|
|
1639
|
-
export declare enum Coin_Supply_Select_Column {
|
|
1640
|
-
/** column name */
|
|
1641
|
-
CoinType = "coin_type",
|
|
1642
|
-
/** column name */
|
|
1643
|
-
CoinTypeHash = "coin_type_hash",
|
|
1644
|
-
/** column name */
|
|
1645
|
-
Supply = "supply",
|
|
1646
|
-
/** column name */
|
|
1647
|
-
TransactionEpoch = "transaction_epoch",
|
|
1648
|
-
/** column name */
|
|
1649
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
1650
|
-
/** column name */
|
|
1651
|
-
TransactionVersion = "transaction_version"
|
|
1652
|
-
}
|
|
1653
|
-
/** Streaming cursor of the table "coin_supply" */
|
|
1654
|
-
export type Coin_Supply_Stream_Cursor_Input = {
|
|
1655
|
-
/** Stream column input with initial value */
|
|
1656
|
-
initial_value: Coin_Supply_Stream_Cursor_Value_Input;
|
|
1657
|
-
/** cursor ordering */
|
|
1658
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1659
|
-
};
|
|
1660
|
-
/** Initial value of the column from where the streaming should start */
|
|
1661
|
-
export type Coin_Supply_Stream_Cursor_Value_Input = {
|
|
1662
|
-
coin_type?: InputMaybe<Scalars['String']['input']>;
|
|
1663
|
-
coin_type_hash?: InputMaybe<Scalars['String']['input']>;
|
|
1664
|
-
supply?: InputMaybe<Scalars['numeric']['input']>;
|
|
1665
|
-
transaction_epoch?: InputMaybe<Scalars['bigint']['input']>;
|
|
1666
|
-
transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1667
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
1668
|
-
};
|
|
1669
|
-
/** columns and relationships of "legacy_migration_v1.collection_datas" */
|
|
1670
|
-
export type Collection_Datas = {
|
|
1671
|
-
__typename?: 'collection_datas';
|
|
1672
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
1673
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
1674
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
1675
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
1676
|
-
description_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
1677
|
-
maximum?: Maybe<Scalars['numeric']['output']>;
|
|
1678
|
-
maximum_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
1679
|
-
metadata_uri?: Maybe<Scalars['String']['output']>;
|
|
1680
|
-
supply?: Maybe<Scalars['numeric']['output']>;
|
|
1681
|
-
table_handle?: Maybe<Scalars['String']['output']>;
|
|
1682
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1683
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
1684
|
-
uri_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
1685
|
-
};
|
|
1686
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.collection_datas". All fields are combined with a logical 'AND'. */
|
|
1687
|
-
export type Collection_Datas_Bool_Exp = {
|
|
1688
|
-
_and?: InputMaybe<Array<Collection_Datas_Bool_Exp>>;
|
|
1689
|
-
_not?: InputMaybe<Collection_Datas_Bool_Exp>;
|
|
1690
|
-
_or?: InputMaybe<Array<Collection_Datas_Bool_Exp>>;
|
|
1691
|
-
collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
1692
|
-
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
1693
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
1694
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
1695
|
-
description_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1696
|
-
maximum?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1697
|
-
maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1698
|
-
metadata_uri?: InputMaybe<String_Comparison_Exp>;
|
|
1699
|
-
supply?: InputMaybe<Numeric_Comparison_Exp>;
|
|
1700
|
-
table_handle?: InputMaybe<String_Comparison_Exp>;
|
|
1701
|
-
transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1702
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1703
|
-
uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1704
|
-
};
|
|
1705
|
-
/** Ordering options when selecting data from "legacy_migration_v1.collection_datas". */
|
|
1706
|
-
export type Collection_Datas_Order_By = {
|
|
1707
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
1708
|
-
collection_name?: InputMaybe<Order_By>;
|
|
1709
|
-
creator_address?: InputMaybe<Order_By>;
|
|
1710
|
-
description?: InputMaybe<Order_By>;
|
|
1711
|
-
description_mutable?: InputMaybe<Order_By>;
|
|
1712
|
-
maximum?: InputMaybe<Order_By>;
|
|
1713
|
-
maximum_mutable?: InputMaybe<Order_By>;
|
|
1714
|
-
metadata_uri?: InputMaybe<Order_By>;
|
|
1715
|
-
supply?: InputMaybe<Order_By>;
|
|
1716
|
-
table_handle?: InputMaybe<Order_By>;
|
|
1717
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
1718
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
1719
|
-
uri_mutable?: InputMaybe<Order_By>;
|
|
1720
|
-
};
|
|
1721
|
-
/** select columns of table "legacy_migration_v1.collection_datas" */
|
|
1722
|
-
export declare enum Collection_Datas_Select_Column {
|
|
1723
|
-
/** column name */
|
|
1724
|
-
CollectionDataIdHash = "collection_data_id_hash",
|
|
1725
|
-
/** column name */
|
|
1726
|
-
CollectionName = "collection_name",
|
|
1727
|
-
/** column name */
|
|
1728
|
-
CreatorAddress = "creator_address",
|
|
1729
|
-
/** column name */
|
|
1730
|
-
Description = "description",
|
|
1731
|
-
/** column name */
|
|
1732
|
-
DescriptionMutable = "description_mutable",
|
|
1733
|
-
/** column name */
|
|
1734
|
-
Maximum = "maximum",
|
|
1735
|
-
/** column name */
|
|
1736
|
-
MaximumMutable = "maximum_mutable",
|
|
1737
|
-
/** column name */
|
|
1738
|
-
MetadataUri = "metadata_uri",
|
|
1739
|
-
/** column name */
|
|
1740
|
-
Supply = "supply",
|
|
1741
|
-
/** column name */
|
|
1742
|
-
TableHandle = "table_handle",
|
|
1743
|
-
/** column name */
|
|
1744
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
1745
|
-
/** column name */
|
|
1746
|
-
TransactionVersion = "transaction_version",
|
|
1747
|
-
/** column name */
|
|
1748
|
-
UriMutable = "uri_mutable"
|
|
1749
|
-
}
|
|
1750
|
-
/** Streaming cursor of the table "collection_datas" */
|
|
1751
|
-
export type Collection_Datas_Stream_Cursor_Input = {
|
|
1752
|
-
/** Stream column input with initial value */
|
|
1753
|
-
initial_value: Collection_Datas_Stream_Cursor_Value_Input;
|
|
1754
|
-
/** cursor ordering */
|
|
1755
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1756
|
-
};
|
|
1757
|
-
/** Initial value of the column from where the streaming should start */
|
|
1758
|
-
export type Collection_Datas_Stream_Cursor_Value_Input = {
|
|
1759
|
-
collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
1760
|
-
collection_name?: InputMaybe<Scalars['String']['input']>;
|
|
1761
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
1762
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
1763
|
-
description_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1764
|
-
maximum?: InputMaybe<Scalars['numeric']['input']>;
|
|
1765
|
-
maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1766
|
-
metadata_uri?: InputMaybe<Scalars['String']['input']>;
|
|
1767
|
-
supply?: InputMaybe<Scalars['numeric']['input']>;
|
|
1768
|
-
table_handle?: InputMaybe<Scalars['String']['input']>;
|
|
1769
|
-
transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1770
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
1771
|
-
uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1772
|
-
};
|
|
1773
|
-
/** columns and relationships of "legacy_migration_v1.current_ans_lookup" */
|
|
1774
|
-
export type Current_Ans_Lookup = {
|
|
1775
|
-
__typename?: 'current_ans_lookup';
|
|
1776
|
-
/** An array relationship */
|
|
1777
|
-
all_token_ownerships: Array<Current_Token_Ownerships>;
|
|
1778
|
-
/** An aggregate relationship */
|
|
1779
|
-
all_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;
|
|
1780
|
-
domain?: Maybe<Scalars['String']['output']>;
|
|
1781
|
-
expiration_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
1782
|
-
is_deleted?: Maybe<Scalars['Boolean']['output']>;
|
|
1783
|
-
last_transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
1784
|
-
registered_address?: Maybe<Scalars['String']['output']>;
|
|
1785
|
-
subdomain?: Maybe<Scalars['String']['output']>;
|
|
1786
|
-
token_name?: Maybe<Scalars['String']['output']>;
|
|
1787
|
-
};
|
|
1788
|
-
/** columns and relationships of "legacy_migration_v1.current_ans_lookup" */
|
|
1789
|
-
export type Current_Ans_LookupAll_Token_OwnershipsArgs = {
|
|
1790
|
-
distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;
|
|
1791
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1792
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1793
|
-
order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;
|
|
1794
|
-
where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
1795
|
-
};
|
|
1796
|
-
/** columns and relationships of "legacy_migration_v1.current_ans_lookup" */
|
|
1797
|
-
export type Current_Ans_LookupAll_Token_Ownerships_AggregateArgs = {
|
|
1798
|
-
distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;
|
|
1799
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1800
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
1801
|
-
order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;
|
|
1802
|
-
where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
1803
|
-
};
|
|
1804
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.current_ans_lookup". All fields are combined with a logical 'AND'. */
|
|
1805
|
-
export type Current_Ans_Lookup_Bool_Exp = {
|
|
1806
|
-
_and?: InputMaybe<Array<Current_Ans_Lookup_Bool_Exp>>;
|
|
1807
|
-
_not?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;
|
|
1808
|
-
_or?: InputMaybe<Array<Current_Ans_Lookup_Bool_Exp>>;
|
|
1809
|
-
all_token_ownerships?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
1810
|
-
all_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_Aggregate_Bool_Exp>;
|
|
1811
|
-
domain?: InputMaybe<String_Comparison_Exp>;
|
|
1812
|
-
expiration_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
1813
|
-
is_deleted?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1814
|
-
last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1815
|
-
registered_address?: InputMaybe<String_Comparison_Exp>;
|
|
1816
|
-
subdomain?: InputMaybe<String_Comparison_Exp>;
|
|
1817
|
-
token_name?: InputMaybe<String_Comparison_Exp>;
|
|
1818
|
-
};
|
|
1819
|
-
/** Ordering options when selecting data from "legacy_migration_v1.current_ans_lookup". */
|
|
1820
|
-
export type Current_Ans_Lookup_Order_By = {
|
|
1821
|
-
all_token_ownerships_aggregate?: InputMaybe<Current_Token_Ownerships_Aggregate_Order_By>;
|
|
1822
|
-
domain?: InputMaybe<Order_By>;
|
|
1823
|
-
expiration_timestamp?: InputMaybe<Order_By>;
|
|
1824
|
-
is_deleted?: InputMaybe<Order_By>;
|
|
1825
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
1826
|
-
registered_address?: InputMaybe<Order_By>;
|
|
1827
|
-
subdomain?: InputMaybe<Order_By>;
|
|
1828
|
-
token_name?: InputMaybe<Order_By>;
|
|
1829
|
-
};
|
|
1830
|
-
/** select columns of table "legacy_migration_v1.current_ans_lookup" */
|
|
1831
|
-
export declare enum Current_Ans_Lookup_Select_Column {
|
|
1832
|
-
/** column name */
|
|
1833
|
-
Domain = "domain",
|
|
1834
|
-
/** column name */
|
|
1835
|
-
ExpirationTimestamp = "expiration_timestamp",
|
|
1836
|
-
/** column name */
|
|
1837
|
-
IsDeleted = "is_deleted",
|
|
1838
|
-
/** column name */
|
|
1839
|
-
LastTransactionVersion = "last_transaction_version",
|
|
1840
|
-
/** column name */
|
|
1841
|
-
RegisteredAddress = "registered_address",
|
|
1842
|
-
/** column name */
|
|
1843
|
-
Subdomain = "subdomain",
|
|
1844
|
-
/** column name */
|
|
1845
|
-
TokenName = "token_name"
|
|
1846
|
-
}
|
|
1847
|
-
/** Streaming cursor of the table "current_ans_lookup" */
|
|
1848
|
-
export type Current_Ans_Lookup_Stream_Cursor_Input = {
|
|
1849
|
-
/** Stream column input with initial value */
|
|
1850
|
-
initial_value: Current_Ans_Lookup_Stream_Cursor_Value_Input;
|
|
1851
|
-
/** cursor ordering */
|
|
1852
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
1853
|
-
};
|
|
1854
|
-
/** Initial value of the column from where the streaming should start */
|
|
1855
|
-
export type Current_Ans_Lookup_Stream_Cursor_Value_Input = {
|
|
1856
|
-
domain?: InputMaybe<Scalars['String']['input']>;
|
|
1857
|
-
expiration_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1858
|
-
is_deleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1859
|
-
last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
1860
|
-
registered_address?: InputMaybe<Scalars['String']['input']>;
|
|
1861
|
-
subdomain?: InputMaybe<Scalars['String']['input']>;
|
|
1862
|
-
token_name?: InputMaybe<Scalars['String']['input']>;
|
|
1863
|
-
};
|
|
1864
517
|
/** columns and relationships of "current_ans_lookup_v2" */
|
|
1865
518
|
export type Current_Ans_Lookup_V2 = {
|
|
1866
519
|
__typename?: 'current_ans_lookup_v2';
|
|
@@ -2266,176 +919,6 @@ export type Current_Aptos_Names_Variance_Order_By = {
|
|
|
2266
919
|
last_transaction_version?: InputMaybe<Order_By>;
|
|
2267
920
|
subdomain_expiration_policy?: InputMaybe<Order_By>;
|
|
2268
921
|
};
|
|
2269
|
-
/** columns and relationships of "legacy_migration_v1.current_coin_balances" */
|
|
2270
|
-
export type Current_Coin_Balances = {
|
|
2271
|
-
__typename?: 'current_coin_balances';
|
|
2272
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
2273
|
-
/** An object relationship */
|
|
2274
|
-
coin_info?: Maybe<Coin_Infos>;
|
|
2275
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
2276
|
-
coin_type_hash?: Maybe<Scalars['String']['output']>;
|
|
2277
|
-
last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
2278
|
-
last_transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
2279
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
2280
|
-
};
|
|
2281
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.current_coin_balances". All fields are combined with a logical 'AND'. */
|
|
2282
|
-
export type Current_Coin_Balances_Bool_Exp = {
|
|
2283
|
-
_and?: InputMaybe<Array<Current_Coin_Balances_Bool_Exp>>;
|
|
2284
|
-
_not?: InputMaybe<Current_Coin_Balances_Bool_Exp>;
|
|
2285
|
-
_or?: InputMaybe<Array<Current_Coin_Balances_Bool_Exp>>;
|
|
2286
|
-
amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2287
|
-
coin_info?: InputMaybe<Coin_Infos_Bool_Exp>;
|
|
2288
|
-
coin_type?: InputMaybe<String_Comparison_Exp>;
|
|
2289
|
-
coin_type_hash?: InputMaybe<String_Comparison_Exp>;
|
|
2290
|
-
last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
2291
|
-
last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
2292
|
-
owner_address?: InputMaybe<String_Comparison_Exp>;
|
|
2293
|
-
};
|
|
2294
|
-
/** Ordering options when selecting data from "legacy_migration_v1.current_coin_balances". */
|
|
2295
|
-
export type Current_Coin_Balances_Order_By = {
|
|
2296
|
-
amount?: InputMaybe<Order_By>;
|
|
2297
|
-
coin_info?: InputMaybe<Coin_Infos_Order_By>;
|
|
2298
|
-
coin_type?: InputMaybe<Order_By>;
|
|
2299
|
-
coin_type_hash?: InputMaybe<Order_By>;
|
|
2300
|
-
last_transaction_timestamp?: InputMaybe<Order_By>;
|
|
2301
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
2302
|
-
owner_address?: InputMaybe<Order_By>;
|
|
2303
|
-
};
|
|
2304
|
-
/** select columns of table "legacy_migration_v1.current_coin_balances" */
|
|
2305
|
-
export declare enum Current_Coin_Balances_Select_Column {
|
|
2306
|
-
/** column name */
|
|
2307
|
-
Amount = "amount",
|
|
2308
|
-
/** column name */
|
|
2309
|
-
CoinType = "coin_type",
|
|
2310
|
-
/** column name */
|
|
2311
|
-
CoinTypeHash = "coin_type_hash",
|
|
2312
|
-
/** column name */
|
|
2313
|
-
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
2314
|
-
/** column name */
|
|
2315
|
-
LastTransactionVersion = "last_transaction_version",
|
|
2316
|
-
/** column name */
|
|
2317
|
-
OwnerAddress = "owner_address"
|
|
2318
|
-
}
|
|
2319
|
-
/** Streaming cursor of the table "current_coin_balances" */
|
|
2320
|
-
export type Current_Coin_Balances_Stream_Cursor_Input = {
|
|
2321
|
-
/** Stream column input with initial value */
|
|
2322
|
-
initial_value: Current_Coin_Balances_Stream_Cursor_Value_Input;
|
|
2323
|
-
/** cursor ordering */
|
|
2324
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
2325
|
-
};
|
|
2326
|
-
/** Initial value of the column from where the streaming should start */
|
|
2327
|
-
export type Current_Coin_Balances_Stream_Cursor_Value_Input = {
|
|
2328
|
-
amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
2329
|
-
coin_type?: InputMaybe<Scalars['String']['input']>;
|
|
2330
|
-
coin_type_hash?: InputMaybe<Scalars['String']['input']>;
|
|
2331
|
-
last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2332
|
-
last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
2333
|
-
owner_address?: InputMaybe<Scalars['String']['input']>;
|
|
2334
|
-
};
|
|
2335
|
-
/** columns and relationships of "legacy_migration_v1.current_collection_datas" */
|
|
2336
|
-
export type Current_Collection_Datas = {
|
|
2337
|
-
__typename?: 'current_collection_datas';
|
|
2338
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
2339
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
2340
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
2341
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
2342
|
-
description_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
2343
|
-
last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
2344
|
-
last_transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
2345
|
-
maximum?: Maybe<Scalars['numeric']['output']>;
|
|
2346
|
-
maximum_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
2347
|
-
metadata_uri?: Maybe<Scalars['String']['output']>;
|
|
2348
|
-
supply?: Maybe<Scalars['numeric']['output']>;
|
|
2349
|
-
table_handle?: Maybe<Scalars['String']['output']>;
|
|
2350
|
-
uri_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
2351
|
-
};
|
|
2352
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.current_collection_datas". All fields are combined with a logical 'AND'. */
|
|
2353
|
-
export type Current_Collection_Datas_Bool_Exp = {
|
|
2354
|
-
_and?: InputMaybe<Array<Current_Collection_Datas_Bool_Exp>>;
|
|
2355
|
-
_not?: InputMaybe<Current_Collection_Datas_Bool_Exp>;
|
|
2356
|
-
_or?: InputMaybe<Array<Current_Collection_Datas_Bool_Exp>>;
|
|
2357
|
-
collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
2358
|
-
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
2359
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
2360
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
2361
|
-
description_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
2362
|
-
last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
2363
|
-
last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
2364
|
-
maximum?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2365
|
-
maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
2366
|
-
metadata_uri?: InputMaybe<String_Comparison_Exp>;
|
|
2367
|
-
supply?: InputMaybe<Numeric_Comparison_Exp>;
|
|
2368
|
-
table_handle?: InputMaybe<String_Comparison_Exp>;
|
|
2369
|
-
uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
2370
|
-
};
|
|
2371
|
-
/** Ordering options when selecting data from "legacy_migration_v1.current_collection_datas". */
|
|
2372
|
-
export type Current_Collection_Datas_Order_By = {
|
|
2373
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
2374
|
-
collection_name?: InputMaybe<Order_By>;
|
|
2375
|
-
creator_address?: InputMaybe<Order_By>;
|
|
2376
|
-
description?: InputMaybe<Order_By>;
|
|
2377
|
-
description_mutable?: InputMaybe<Order_By>;
|
|
2378
|
-
last_transaction_timestamp?: InputMaybe<Order_By>;
|
|
2379
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
2380
|
-
maximum?: InputMaybe<Order_By>;
|
|
2381
|
-
maximum_mutable?: InputMaybe<Order_By>;
|
|
2382
|
-
metadata_uri?: InputMaybe<Order_By>;
|
|
2383
|
-
supply?: InputMaybe<Order_By>;
|
|
2384
|
-
table_handle?: InputMaybe<Order_By>;
|
|
2385
|
-
uri_mutable?: InputMaybe<Order_By>;
|
|
2386
|
-
};
|
|
2387
|
-
/** select columns of table "legacy_migration_v1.current_collection_datas" */
|
|
2388
|
-
export declare enum Current_Collection_Datas_Select_Column {
|
|
2389
|
-
/** column name */
|
|
2390
|
-
CollectionDataIdHash = "collection_data_id_hash",
|
|
2391
|
-
/** column name */
|
|
2392
|
-
CollectionName = "collection_name",
|
|
2393
|
-
/** column name */
|
|
2394
|
-
CreatorAddress = "creator_address",
|
|
2395
|
-
/** column name */
|
|
2396
|
-
Description = "description",
|
|
2397
|
-
/** column name */
|
|
2398
|
-
DescriptionMutable = "description_mutable",
|
|
2399
|
-
/** column name */
|
|
2400
|
-
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
2401
|
-
/** column name */
|
|
2402
|
-
LastTransactionVersion = "last_transaction_version",
|
|
2403
|
-
/** column name */
|
|
2404
|
-
Maximum = "maximum",
|
|
2405
|
-
/** column name */
|
|
2406
|
-
MaximumMutable = "maximum_mutable",
|
|
2407
|
-
/** column name */
|
|
2408
|
-
MetadataUri = "metadata_uri",
|
|
2409
|
-
/** column name */
|
|
2410
|
-
Supply = "supply",
|
|
2411
|
-
/** column name */
|
|
2412
|
-
TableHandle = "table_handle",
|
|
2413
|
-
/** column name */
|
|
2414
|
-
UriMutable = "uri_mutable"
|
|
2415
|
-
}
|
|
2416
|
-
/** Streaming cursor of the table "current_collection_datas" */
|
|
2417
|
-
export type Current_Collection_Datas_Stream_Cursor_Input = {
|
|
2418
|
-
/** Stream column input with initial value */
|
|
2419
|
-
initial_value: Current_Collection_Datas_Stream_Cursor_Value_Input;
|
|
2420
|
-
/** cursor ordering */
|
|
2421
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
2422
|
-
};
|
|
2423
|
-
/** Initial value of the column from where the streaming should start */
|
|
2424
|
-
export type Current_Collection_Datas_Stream_Cursor_Value_Input = {
|
|
2425
|
-
collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
2426
|
-
collection_name?: InputMaybe<Scalars['String']['input']>;
|
|
2427
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
2428
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
2429
|
-
description_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2430
|
-
last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
2431
|
-
last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
2432
|
-
maximum?: InputMaybe<Scalars['numeric']['input']>;
|
|
2433
|
-
maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2434
|
-
metadata_uri?: InputMaybe<Scalars['String']['input']>;
|
|
2435
|
-
supply?: InputMaybe<Scalars['numeric']['input']>;
|
|
2436
|
-
table_handle?: InputMaybe<Scalars['String']['input']>;
|
|
2437
|
-
uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2438
|
-
};
|
|
2439
922
|
/** columns and relationships of "current_collection_ownership_v2_view" */
|
|
2440
923
|
export type Current_Collection_Ownership_V2_View = {
|
|
2441
924
|
__typename?: 'current_collection_ownership_v2_view';
|
|
@@ -3437,169 +1920,9 @@ export type Current_Table_Items_Stream_Cursor_Value_Input = {
|
|
|
3437
1920
|
decoded_value?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3438
1921
|
is_deleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3439
1922
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
3440
|
-
key_hash?: InputMaybe<Scalars['String']['input']>;
|
|
3441
|
-
last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
3442
|
-
table_handle?: InputMaybe<Scalars['String']['input']>;
|
|
3443
|
-
};
|
|
3444
|
-
/** columns and relationships of "legacy_migration_v1.current_token_datas" */
|
|
3445
|
-
export type Current_Token_Datas = {
|
|
3446
|
-
__typename?: 'current_token_datas';
|
|
3447
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
3448
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
3449
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
3450
|
-
/** An object relationship */
|
|
3451
|
-
current_collection_data?: Maybe<Current_Collection_Datas>;
|
|
3452
|
-
default_properties?: Maybe<Scalars['jsonb']['output']>;
|
|
3453
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
3454
|
-
description_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
3455
|
-
largest_property_version?: Maybe<Scalars['numeric']['output']>;
|
|
3456
|
-
last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
3457
|
-
last_transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
3458
|
-
maximum?: Maybe<Scalars['numeric']['output']>;
|
|
3459
|
-
maximum_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
3460
|
-
metadata_uri?: Maybe<Scalars['String']['output']>;
|
|
3461
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
3462
|
-
payee_address?: Maybe<Scalars['String']['output']>;
|
|
3463
|
-
properties_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
3464
|
-
royalty_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
3465
|
-
royalty_points_denominator?: Maybe<Scalars['numeric']['output']>;
|
|
3466
|
-
royalty_points_numerator?: Maybe<Scalars['numeric']['output']>;
|
|
3467
|
-
supply?: Maybe<Scalars['numeric']['output']>;
|
|
3468
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
3469
|
-
uri_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
3470
|
-
};
|
|
3471
|
-
/** columns and relationships of "legacy_migration_v1.current_token_datas" */
|
|
3472
|
-
export type Current_Token_DatasDefault_PropertiesArgs = {
|
|
3473
|
-
path?: InputMaybe<Scalars['String']['input']>;
|
|
3474
|
-
};
|
|
3475
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.current_token_datas". All fields are combined with a logical 'AND'. */
|
|
3476
|
-
export type Current_Token_Datas_Bool_Exp = {
|
|
3477
|
-
_and?: InputMaybe<Array<Current_Token_Datas_Bool_Exp>>;
|
|
3478
|
-
_not?: InputMaybe<Current_Token_Datas_Bool_Exp>;
|
|
3479
|
-
_or?: InputMaybe<Array<Current_Token_Datas_Bool_Exp>>;
|
|
3480
|
-
collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
3481
|
-
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
3482
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
3483
|
-
current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;
|
|
3484
|
-
default_properties?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
3485
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
3486
|
-
description_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
3487
|
-
largest_property_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
3488
|
-
last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
3489
|
-
last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
3490
|
-
maximum?: InputMaybe<Numeric_Comparison_Exp>;
|
|
3491
|
-
maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
3492
|
-
metadata_uri?: InputMaybe<String_Comparison_Exp>;
|
|
3493
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
3494
|
-
payee_address?: InputMaybe<String_Comparison_Exp>;
|
|
3495
|
-
properties_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
3496
|
-
royalty_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
3497
|
-
royalty_points_denominator?: InputMaybe<Numeric_Comparison_Exp>;
|
|
3498
|
-
royalty_points_numerator?: InputMaybe<Numeric_Comparison_Exp>;
|
|
3499
|
-
supply?: InputMaybe<Numeric_Comparison_Exp>;
|
|
3500
|
-
token_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
3501
|
-
uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
3502
|
-
};
|
|
3503
|
-
/** Ordering options when selecting data from "legacy_migration_v1.current_token_datas". */
|
|
3504
|
-
export type Current_Token_Datas_Order_By = {
|
|
3505
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
3506
|
-
collection_name?: InputMaybe<Order_By>;
|
|
3507
|
-
creator_address?: InputMaybe<Order_By>;
|
|
3508
|
-
current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;
|
|
3509
|
-
default_properties?: InputMaybe<Order_By>;
|
|
3510
|
-
description?: InputMaybe<Order_By>;
|
|
3511
|
-
description_mutable?: InputMaybe<Order_By>;
|
|
3512
|
-
largest_property_version?: InputMaybe<Order_By>;
|
|
3513
|
-
last_transaction_timestamp?: InputMaybe<Order_By>;
|
|
3514
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
3515
|
-
maximum?: InputMaybe<Order_By>;
|
|
3516
|
-
maximum_mutable?: InputMaybe<Order_By>;
|
|
3517
|
-
metadata_uri?: InputMaybe<Order_By>;
|
|
3518
|
-
name?: InputMaybe<Order_By>;
|
|
3519
|
-
payee_address?: InputMaybe<Order_By>;
|
|
3520
|
-
properties_mutable?: InputMaybe<Order_By>;
|
|
3521
|
-
royalty_mutable?: InputMaybe<Order_By>;
|
|
3522
|
-
royalty_points_denominator?: InputMaybe<Order_By>;
|
|
3523
|
-
royalty_points_numerator?: InputMaybe<Order_By>;
|
|
3524
|
-
supply?: InputMaybe<Order_By>;
|
|
3525
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
3526
|
-
uri_mutable?: InputMaybe<Order_By>;
|
|
3527
|
-
};
|
|
3528
|
-
/** select columns of table "legacy_migration_v1.current_token_datas" */
|
|
3529
|
-
export declare enum Current_Token_Datas_Select_Column {
|
|
3530
|
-
/** column name */
|
|
3531
|
-
CollectionDataIdHash = "collection_data_id_hash",
|
|
3532
|
-
/** column name */
|
|
3533
|
-
CollectionName = "collection_name",
|
|
3534
|
-
/** column name */
|
|
3535
|
-
CreatorAddress = "creator_address",
|
|
3536
|
-
/** column name */
|
|
3537
|
-
DefaultProperties = "default_properties",
|
|
3538
|
-
/** column name */
|
|
3539
|
-
Description = "description",
|
|
3540
|
-
/** column name */
|
|
3541
|
-
DescriptionMutable = "description_mutable",
|
|
3542
|
-
/** column name */
|
|
3543
|
-
LargestPropertyVersion = "largest_property_version",
|
|
3544
|
-
/** column name */
|
|
3545
|
-
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
3546
|
-
/** column name */
|
|
3547
|
-
LastTransactionVersion = "last_transaction_version",
|
|
3548
|
-
/** column name */
|
|
3549
|
-
Maximum = "maximum",
|
|
3550
|
-
/** column name */
|
|
3551
|
-
MaximumMutable = "maximum_mutable",
|
|
3552
|
-
/** column name */
|
|
3553
|
-
MetadataUri = "metadata_uri",
|
|
3554
|
-
/** column name */
|
|
3555
|
-
Name = "name",
|
|
3556
|
-
/** column name */
|
|
3557
|
-
PayeeAddress = "payee_address",
|
|
3558
|
-
/** column name */
|
|
3559
|
-
PropertiesMutable = "properties_mutable",
|
|
3560
|
-
/** column name */
|
|
3561
|
-
RoyaltyMutable = "royalty_mutable",
|
|
3562
|
-
/** column name */
|
|
3563
|
-
RoyaltyPointsDenominator = "royalty_points_denominator",
|
|
3564
|
-
/** column name */
|
|
3565
|
-
RoyaltyPointsNumerator = "royalty_points_numerator",
|
|
3566
|
-
/** column name */
|
|
3567
|
-
Supply = "supply",
|
|
3568
|
-
/** column name */
|
|
3569
|
-
TokenDataIdHash = "token_data_id_hash",
|
|
3570
|
-
/** column name */
|
|
3571
|
-
UriMutable = "uri_mutable"
|
|
3572
|
-
}
|
|
3573
|
-
/** Streaming cursor of the table "current_token_datas" */
|
|
3574
|
-
export type Current_Token_Datas_Stream_Cursor_Input = {
|
|
3575
|
-
/** Stream column input with initial value */
|
|
3576
|
-
initial_value: Current_Token_Datas_Stream_Cursor_Value_Input;
|
|
3577
|
-
/** cursor ordering */
|
|
3578
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
3579
|
-
};
|
|
3580
|
-
/** Initial value of the column from where the streaming should start */
|
|
3581
|
-
export type Current_Token_Datas_Stream_Cursor_Value_Input = {
|
|
3582
|
-
collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
3583
|
-
collection_name?: InputMaybe<Scalars['String']['input']>;
|
|
3584
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
3585
|
-
default_properties?: InputMaybe<Scalars['jsonb']['input']>;
|
|
3586
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
3587
|
-
description_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3588
|
-
largest_property_version?: InputMaybe<Scalars['numeric']['input']>;
|
|
3589
|
-
last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
1923
|
+
key_hash?: InputMaybe<Scalars['String']['input']>;
|
|
3590
1924
|
last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
3591
|
-
|
|
3592
|
-
maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3593
|
-
metadata_uri?: InputMaybe<Scalars['String']['input']>;
|
|
3594
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
3595
|
-
payee_address?: InputMaybe<Scalars['String']['input']>;
|
|
3596
|
-
properties_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3597
|
-
royalty_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3598
|
-
royalty_points_denominator?: InputMaybe<Scalars['numeric']['input']>;
|
|
3599
|
-
royalty_points_numerator?: InputMaybe<Scalars['numeric']['input']>;
|
|
3600
|
-
supply?: InputMaybe<Scalars['numeric']['input']>;
|
|
3601
|
-
token_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
3602
|
-
uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1925
|
+
table_handle?: InputMaybe<Scalars['String']['input']>;
|
|
3603
1926
|
};
|
|
3604
1927
|
/** columns and relationships of "current_token_datas_v2" */
|
|
3605
1928
|
export type Current_Token_Datas_V2 = {
|
|
@@ -3760,292 +2083,6 @@ export type Current_Token_Datas_V2_Stream_Cursor_Value_Input = {
|
|
|
3760
2083
|
token_standard?: InputMaybe<Scalars['String']['input']>;
|
|
3761
2084
|
token_uri?: InputMaybe<Scalars['String']['input']>;
|
|
3762
2085
|
};
|
|
3763
|
-
/** columns and relationships of "legacy_migration_v1.current_token_ownerships" */
|
|
3764
|
-
export type Current_Token_Ownerships = {
|
|
3765
|
-
__typename?: 'current_token_ownerships';
|
|
3766
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
3767
|
-
/** An object relationship */
|
|
3768
|
-
aptos_name?: Maybe<Current_Aptos_Names>;
|
|
3769
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
3770
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
3771
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
3772
|
-
/** An object relationship */
|
|
3773
|
-
current_collection_data?: Maybe<Current_Collection_Datas>;
|
|
3774
|
-
/** An object relationship */
|
|
3775
|
-
current_token_data?: Maybe<Current_Token_Datas>;
|
|
3776
|
-
last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
3777
|
-
last_transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
3778
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
3779
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
3780
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
3781
|
-
table_type?: Maybe<Scalars['String']['output']>;
|
|
3782
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
3783
|
-
token_properties?: Maybe<Scalars['jsonb']['output']>;
|
|
3784
|
-
};
|
|
3785
|
-
/** columns and relationships of "legacy_migration_v1.current_token_ownerships" */
|
|
3786
|
-
export type Current_Token_OwnershipsToken_PropertiesArgs = {
|
|
3787
|
-
path?: InputMaybe<Scalars['String']['input']>;
|
|
3788
|
-
};
|
|
3789
|
-
/** aggregated selection of "legacy_migration_v1.current_token_ownerships" */
|
|
3790
|
-
export type Current_Token_Ownerships_Aggregate = {
|
|
3791
|
-
__typename?: 'current_token_ownerships_aggregate';
|
|
3792
|
-
aggregate?: Maybe<Current_Token_Ownerships_Aggregate_Fields>;
|
|
3793
|
-
nodes: Array<Current_Token_Ownerships>;
|
|
3794
|
-
};
|
|
3795
|
-
export type Current_Token_Ownerships_Aggregate_Bool_Exp = {
|
|
3796
|
-
count?: InputMaybe<Current_Token_Ownerships_Aggregate_Bool_Exp_Count>;
|
|
3797
|
-
};
|
|
3798
|
-
export type Current_Token_Ownerships_Aggregate_Bool_Exp_Count = {
|
|
3799
|
-
arguments?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;
|
|
3800
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3801
|
-
filter?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
3802
|
-
predicate: Int_Comparison_Exp;
|
|
3803
|
-
};
|
|
3804
|
-
/** aggregate fields of "legacy_migration_v1.current_token_ownerships" */
|
|
3805
|
-
export type Current_Token_Ownerships_Aggregate_Fields = {
|
|
3806
|
-
__typename?: 'current_token_ownerships_aggregate_fields';
|
|
3807
|
-
avg?: Maybe<Current_Token_Ownerships_Avg_Fields>;
|
|
3808
|
-
count: Scalars['Int']['output'];
|
|
3809
|
-
max?: Maybe<Current_Token_Ownerships_Max_Fields>;
|
|
3810
|
-
min?: Maybe<Current_Token_Ownerships_Min_Fields>;
|
|
3811
|
-
stddev?: Maybe<Current_Token_Ownerships_Stddev_Fields>;
|
|
3812
|
-
stddev_pop?: Maybe<Current_Token_Ownerships_Stddev_Pop_Fields>;
|
|
3813
|
-
stddev_samp?: Maybe<Current_Token_Ownerships_Stddev_Samp_Fields>;
|
|
3814
|
-
sum?: Maybe<Current_Token_Ownerships_Sum_Fields>;
|
|
3815
|
-
var_pop?: Maybe<Current_Token_Ownerships_Var_Pop_Fields>;
|
|
3816
|
-
var_samp?: Maybe<Current_Token_Ownerships_Var_Samp_Fields>;
|
|
3817
|
-
variance?: Maybe<Current_Token_Ownerships_Variance_Fields>;
|
|
3818
|
-
};
|
|
3819
|
-
/** aggregate fields of "legacy_migration_v1.current_token_ownerships" */
|
|
3820
|
-
export type Current_Token_Ownerships_Aggregate_FieldsCountArgs = {
|
|
3821
|
-
columns?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;
|
|
3822
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3823
|
-
};
|
|
3824
|
-
/** order by aggregate values of table "legacy_migration_v1.current_token_ownerships" */
|
|
3825
|
-
export type Current_Token_Ownerships_Aggregate_Order_By = {
|
|
3826
|
-
avg?: InputMaybe<Current_Token_Ownerships_Avg_Order_By>;
|
|
3827
|
-
count?: InputMaybe<Order_By>;
|
|
3828
|
-
max?: InputMaybe<Current_Token_Ownerships_Max_Order_By>;
|
|
3829
|
-
min?: InputMaybe<Current_Token_Ownerships_Min_Order_By>;
|
|
3830
|
-
stddev?: InputMaybe<Current_Token_Ownerships_Stddev_Order_By>;
|
|
3831
|
-
stddev_pop?: InputMaybe<Current_Token_Ownerships_Stddev_Pop_Order_By>;
|
|
3832
|
-
stddev_samp?: InputMaybe<Current_Token_Ownerships_Stddev_Samp_Order_By>;
|
|
3833
|
-
sum?: InputMaybe<Current_Token_Ownerships_Sum_Order_By>;
|
|
3834
|
-
var_pop?: InputMaybe<Current_Token_Ownerships_Var_Pop_Order_By>;
|
|
3835
|
-
var_samp?: InputMaybe<Current_Token_Ownerships_Var_Samp_Order_By>;
|
|
3836
|
-
variance?: InputMaybe<Current_Token_Ownerships_Variance_Order_By>;
|
|
3837
|
-
};
|
|
3838
|
-
/** aggregate avg on columns */
|
|
3839
|
-
export type Current_Token_Ownerships_Avg_Fields = {
|
|
3840
|
-
__typename?: 'current_token_ownerships_avg_fields';
|
|
3841
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
3842
|
-
last_transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
3843
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
3844
|
-
};
|
|
3845
|
-
/** order by avg() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
3846
|
-
export type Current_Token_Ownerships_Avg_Order_By = {
|
|
3847
|
-
amount?: InputMaybe<Order_By>;
|
|
3848
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
3849
|
-
property_version?: InputMaybe<Order_By>;
|
|
3850
|
-
};
|
|
3851
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.current_token_ownerships". All fields are combined with a logical 'AND'. */
|
|
3852
|
-
export type Current_Token_Ownerships_Bool_Exp = {
|
|
3853
|
-
_and?: InputMaybe<Array<Current_Token_Ownerships_Bool_Exp>>;
|
|
3854
|
-
_not?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
3855
|
-
_or?: InputMaybe<Array<Current_Token_Ownerships_Bool_Exp>>;
|
|
3856
|
-
amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
3857
|
-
aptos_name?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
3858
|
-
collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
3859
|
-
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
3860
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
3861
|
-
current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;
|
|
3862
|
-
current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;
|
|
3863
|
-
last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
3864
|
-
last_transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
3865
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
3866
|
-
owner_address?: InputMaybe<String_Comparison_Exp>;
|
|
3867
|
-
property_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
3868
|
-
table_type?: InputMaybe<String_Comparison_Exp>;
|
|
3869
|
-
token_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
3870
|
-
token_properties?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
3871
|
-
};
|
|
3872
|
-
/** aggregate max on columns */
|
|
3873
|
-
export type Current_Token_Ownerships_Max_Fields = {
|
|
3874
|
-
__typename?: 'current_token_ownerships_max_fields';
|
|
3875
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
3876
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
3877
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
3878
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
3879
|
-
last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
3880
|
-
last_transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
3881
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
3882
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
3883
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
3884
|
-
table_type?: Maybe<Scalars['String']['output']>;
|
|
3885
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
3886
|
-
};
|
|
3887
|
-
/** order by max() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
3888
|
-
export type Current_Token_Ownerships_Max_Order_By = {
|
|
3889
|
-
amount?: InputMaybe<Order_By>;
|
|
3890
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
3891
|
-
collection_name?: InputMaybe<Order_By>;
|
|
3892
|
-
creator_address?: InputMaybe<Order_By>;
|
|
3893
|
-
last_transaction_timestamp?: InputMaybe<Order_By>;
|
|
3894
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
3895
|
-
name?: InputMaybe<Order_By>;
|
|
3896
|
-
owner_address?: InputMaybe<Order_By>;
|
|
3897
|
-
property_version?: InputMaybe<Order_By>;
|
|
3898
|
-
table_type?: InputMaybe<Order_By>;
|
|
3899
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
3900
|
-
};
|
|
3901
|
-
/** aggregate min on columns */
|
|
3902
|
-
export type Current_Token_Ownerships_Min_Fields = {
|
|
3903
|
-
__typename?: 'current_token_ownerships_min_fields';
|
|
3904
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
3905
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
3906
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
3907
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
3908
|
-
last_transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
3909
|
-
last_transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
3910
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
3911
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
3912
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
3913
|
-
table_type?: Maybe<Scalars['String']['output']>;
|
|
3914
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
3915
|
-
};
|
|
3916
|
-
/** order by min() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
3917
|
-
export type Current_Token_Ownerships_Min_Order_By = {
|
|
3918
|
-
amount?: InputMaybe<Order_By>;
|
|
3919
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
3920
|
-
collection_name?: InputMaybe<Order_By>;
|
|
3921
|
-
creator_address?: InputMaybe<Order_By>;
|
|
3922
|
-
last_transaction_timestamp?: InputMaybe<Order_By>;
|
|
3923
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
3924
|
-
name?: InputMaybe<Order_By>;
|
|
3925
|
-
owner_address?: InputMaybe<Order_By>;
|
|
3926
|
-
property_version?: InputMaybe<Order_By>;
|
|
3927
|
-
table_type?: InputMaybe<Order_By>;
|
|
3928
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
3929
|
-
};
|
|
3930
|
-
/** Ordering options when selecting data from "legacy_migration_v1.current_token_ownerships". */
|
|
3931
|
-
export type Current_Token_Ownerships_Order_By = {
|
|
3932
|
-
amount?: InputMaybe<Order_By>;
|
|
3933
|
-
aptos_name?: InputMaybe<Current_Aptos_Names_Order_By>;
|
|
3934
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
3935
|
-
collection_name?: InputMaybe<Order_By>;
|
|
3936
|
-
creator_address?: InputMaybe<Order_By>;
|
|
3937
|
-
current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;
|
|
3938
|
-
current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;
|
|
3939
|
-
last_transaction_timestamp?: InputMaybe<Order_By>;
|
|
3940
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
3941
|
-
name?: InputMaybe<Order_By>;
|
|
3942
|
-
owner_address?: InputMaybe<Order_By>;
|
|
3943
|
-
property_version?: InputMaybe<Order_By>;
|
|
3944
|
-
table_type?: InputMaybe<Order_By>;
|
|
3945
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
3946
|
-
token_properties?: InputMaybe<Order_By>;
|
|
3947
|
-
};
|
|
3948
|
-
/** select columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
3949
|
-
export declare enum Current_Token_Ownerships_Select_Column {
|
|
3950
|
-
/** column name */
|
|
3951
|
-
Amount = "amount",
|
|
3952
|
-
/** column name */
|
|
3953
|
-
CollectionDataIdHash = "collection_data_id_hash",
|
|
3954
|
-
/** column name */
|
|
3955
|
-
CollectionName = "collection_name",
|
|
3956
|
-
/** column name */
|
|
3957
|
-
CreatorAddress = "creator_address",
|
|
3958
|
-
/** column name */
|
|
3959
|
-
LastTransactionTimestamp = "last_transaction_timestamp",
|
|
3960
|
-
/** column name */
|
|
3961
|
-
LastTransactionVersion = "last_transaction_version",
|
|
3962
|
-
/** column name */
|
|
3963
|
-
Name = "name",
|
|
3964
|
-
/** column name */
|
|
3965
|
-
OwnerAddress = "owner_address",
|
|
3966
|
-
/** column name */
|
|
3967
|
-
PropertyVersion = "property_version",
|
|
3968
|
-
/** column name */
|
|
3969
|
-
TableType = "table_type",
|
|
3970
|
-
/** column name */
|
|
3971
|
-
TokenDataIdHash = "token_data_id_hash",
|
|
3972
|
-
/** column name */
|
|
3973
|
-
TokenProperties = "token_properties"
|
|
3974
|
-
}
|
|
3975
|
-
/** aggregate stddev on columns */
|
|
3976
|
-
export type Current_Token_Ownerships_Stddev_Fields = {
|
|
3977
|
-
__typename?: 'current_token_ownerships_stddev_fields';
|
|
3978
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
3979
|
-
last_transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
3980
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
3981
|
-
};
|
|
3982
|
-
/** order by stddev() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
3983
|
-
export type Current_Token_Ownerships_Stddev_Order_By = {
|
|
3984
|
-
amount?: InputMaybe<Order_By>;
|
|
3985
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
3986
|
-
property_version?: InputMaybe<Order_By>;
|
|
3987
|
-
};
|
|
3988
|
-
/** aggregate stddev_pop on columns */
|
|
3989
|
-
export type Current_Token_Ownerships_Stddev_Pop_Fields = {
|
|
3990
|
-
__typename?: 'current_token_ownerships_stddev_pop_fields';
|
|
3991
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
3992
|
-
last_transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
3993
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
3994
|
-
};
|
|
3995
|
-
/** order by stddev_pop() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
3996
|
-
export type Current_Token_Ownerships_Stddev_Pop_Order_By = {
|
|
3997
|
-
amount?: InputMaybe<Order_By>;
|
|
3998
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
3999
|
-
property_version?: InputMaybe<Order_By>;
|
|
4000
|
-
};
|
|
4001
|
-
/** aggregate stddev_samp on columns */
|
|
4002
|
-
export type Current_Token_Ownerships_Stddev_Samp_Fields = {
|
|
4003
|
-
__typename?: 'current_token_ownerships_stddev_samp_fields';
|
|
4004
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
4005
|
-
last_transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
4006
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
4007
|
-
};
|
|
4008
|
-
/** order by stddev_samp() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
4009
|
-
export type Current_Token_Ownerships_Stddev_Samp_Order_By = {
|
|
4010
|
-
amount?: InputMaybe<Order_By>;
|
|
4011
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
4012
|
-
property_version?: InputMaybe<Order_By>;
|
|
4013
|
-
};
|
|
4014
|
-
/** Streaming cursor of the table "current_token_ownerships" */
|
|
4015
|
-
export type Current_Token_Ownerships_Stream_Cursor_Input = {
|
|
4016
|
-
/** Stream column input with initial value */
|
|
4017
|
-
initial_value: Current_Token_Ownerships_Stream_Cursor_Value_Input;
|
|
4018
|
-
/** cursor ordering */
|
|
4019
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
4020
|
-
};
|
|
4021
|
-
/** Initial value of the column from where the streaming should start */
|
|
4022
|
-
export type Current_Token_Ownerships_Stream_Cursor_Value_Input = {
|
|
4023
|
-
amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
4024
|
-
collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
4025
|
-
collection_name?: InputMaybe<Scalars['String']['input']>;
|
|
4026
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
4027
|
-
last_transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
4028
|
-
last_transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
4029
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
4030
|
-
owner_address?: InputMaybe<Scalars['String']['input']>;
|
|
4031
|
-
property_version?: InputMaybe<Scalars['numeric']['input']>;
|
|
4032
|
-
table_type?: InputMaybe<Scalars['String']['input']>;
|
|
4033
|
-
token_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
4034
|
-
token_properties?: InputMaybe<Scalars['jsonb']['input']>;
|
|
4035
|
-
};
|
|
4036
|
-
/** aggregate sum on columns */
|
|
4037
|
-
export type Current_Token_Ownerships_Sum_Fields = {
|
|
4038
|
-
__typename?: 'current_token_ownerships_sum_fields';
|
|
4039
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
4040
|
-
last_transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
4041
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
4042
|
-
};
|
|
4043
|
-
/** order by sum() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
4044
|
-
export type Current_Token_Ownerships_Sum_Order_By = {
|
|
4045
|
-
amount?: InputMaybe<Order_By>;
|
|
4046
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
4047
|
-
property_version?: InputMaybe<Order_By>;
|
|
4048
|
-
};
|
|
4049
2086
|
/** columns and relationships of "current_token_ownerships_v2" */
|
|
4050
2087
|
export type Current_Token_Ownerships_V2 = {
|
|
4051
2088
|
__typename?: 'current_token_ownerships_v2';
|
|
@@ -4416,45 +2453,6 @@ export type Current_Token_Ownerships_V2_Variance_Order_By = {
|
|
|
4416
2453
|
last_transaction_version?: InputMaybe<Order_By>;
|
|
4417
2454
|
property_version_v1?: InputMaybe<Order_By>;
|
|
4418
2455
|
};
|
|
4419
|
-
/** aggregate var_pop on columns */
|
|
4420
|
-
export type Current_Token_Ownerships_Var_Pop_Fields = {
|
|
4421
|
-
__typename?: 'current_token_ownerships_var_pop_fields';
|
|
4422
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
4423
|
-
last_transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
4424
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
4425
|
-
};
|
|
4426
|
-
/** order by var_pop() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
4427
|
-
export type Current_Token_Ownerships_Var_Pop_Order_By = {
|
|
4428
|
-
amount?: InputMaybe<Order_By>;
|
|
4429
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
4430
|
-
property_version?: InputMaybe<Order_By>;
|
|
4431
|
-
};
|
|
4432
|
-
/** aggregate var_samp on columns */
|
|
4433
|
-
export type Current_Token_Ownerships_Var_Samp_Fields = {
|
|
4434
|
-
__typename?: 'current_token_ownerships_var_samp_fields';
|
|
4435
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
4436
|
-
last_transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
4437
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
4438
|
-
};
|
|
4439
|
-
/** order by var_samp() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
4440
|
-
export type Current_Token_Ownerships_Var_Samp_Order_By = {
|
|
4441
|
-
amount?: InputMaybe<Order_By>;
|
|
4442
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
4443
|
-
property_version?: InputMaybe<Order_By>;
|
|
4444
|
-
};
|
|
4445
|
-
/** aggregate variance on columns */
|
|
4446
|
-
export type Current_Token_Ownerships_Variance_Fields = {
|
|
4447
|
-
__typename?: 'current_token_ownerships_variance_fields';
|
|
4448
|
-
amount?: Maybe<Scalars['Float']['output']>;
|
|
4449
|
-
last_transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
4450
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
4451
|
-
};
|
|
4452
|
-
/** order by variance() on columns of table "legacy_migration_v1.current_token_ownerships" */
|
|
4453
|
-
export type Current_Token_Ownerships_Variance_Order_By = {
|
|
4454
|
-
amount?: InputMaybe<Order_By>;
|
|
4455
|
-
last_transaction_version?: InputMaybe<Order_By>;
|
|
4456
|
-
property_version?: InputMaybe<Order_By>;
|
|
4457
|
-
};
|
|
4458
2456
|
/** columns and relationships of "current_token_pending_claims" */
|
|
4459
2457
|
export type Current_Token_Pending_Claims = {
|
|
4460
2458
|
__typename?: 'current_token_pending_claims';
|
|
@@ -4464,12 +2462,8 @@ export type Current_Token_Pending_Claims = {
|
|
|
4464
2462
|
collection_name: Scalars['String']['output'];
|
|
4465
2463
|
creator_address: Scalars['String']['output'];
|
|
4466
2464
|
/** An object relationship */
|
|
4467
|
-
current_collection_data?: Maybe<Current_Collection_Datas>;
|
|
4468
|
-
/** An object relationship */
|
|
4469
2465
|
current_collection_v2?: Maybe<Current_Collections_V2>;
|
|
4470
2466
|
/** An object relationship */
|
|
4471
|
-
current_token_data?: Maybe<Current_Token_Datas>;
|
|
4472
|
-
/** An object relationship */
|
|
4473
2467
|
current_token_data_v2?: Maybe<Current_Token_Datas_V2>;
|
|
4474
2468
|
from_address: Scalars['String']['output'];
|
|
4475
2469
|
last_transaction_timestamp: Scalars['timestamp']['output'];
|
|
@@ -4478,8 +2472,6 @@ export type Current_Token_Pending_Claims = {
|
|
|
4478
2472
|
property_version: Scalars['numeric']['output'];
|
|
4479
2473
|
table_handle: Scalars['String']['output'];
|
|
4480
2474
|
to_address: Scalars['String']['output'];
|
|
4481
|
-
/** An object relationship */
|
|
4482
|
-
token?: Maybe<Tokens>;
|
|
4483
2475
|
token_data_id: Scalars['String']['output'];
|
|
4484
2476
|
token_data_id_hash: Scalars['String']['output'];
|
|
4485
2477
|
};
|
|
@@ -4493,9 +2485,7 @@ export type Current_Token_Pending_Claims_Bool_Exp = {
|
|
|
4493
2485
|
collection_id?: InputMaybe<String_Comparison_Exp>;
|
|
4494
2486
|
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
4495
2487
|
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
4496
|
-
current_collection_data?: InputMaybe<Current_Collection_Datas_Bool_Exp>;
|
|
4497
2488
|
current_collection_v2?: InputMaybe<Current_Collections_V2_Bool_Exp>;
|
|
4498
|
-
current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;
|
|
4499
2489
|
current_token_data_v2?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;
|
|
4500
2490
|
from_address?: InputMaybe<String_Comparison_Exp>;
|
|
4501
2491
|
last_transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
@@ -4504,7 +2494,6 @@ export type Current_Token_Pending_Claims_Bool_Exp = {
|
|
|
4504
2494
|
property_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
4505
2495
|
table_handle?: InputMaybe<String_Comparison_Exp>;
|
|
4506
2496
|
to_address?: InputMaybe<String_Comparison_Exp>;
|
|
4507
|
-
token?: InputMaybe<Tokens_Bool_Exp>;
|
|
4508
2497
|
token_data_id?: InputMaybe<String_Comparison_Exp>;
|
|
4509
2498
|
token_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
4510
2499
|
};
|
|
@@ -4515,9 +2504,7 @@ export type Current_Token_Pending_Claims_Order_By = {
|
|
|
4515
2504
|
collection_id?: InputMaybe<Order_By>;
|
|
4516
2505
|
collection_name?: InputMaybe<Order_By>;
|
|
4517
2506
|
creator_address?: InputMaybe<Order_By>;
|
|
4518
|
-
current_collection_data?: InputMaybe<Current_Collection_Datas_Order_By>;
|
|
4519
2507
|
current_collection_v2?: InputMaybe<Current_Collections_V2_Order_By>;
|
|
4520
|
-
current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;
|
|
4521
2508
|
current_token_data_v2?: InputMaybe<Current_Token_Datas_V2_Order_By>;
|
|
4522
2509
|
from_address?: InputMaybe<Order_By>;
|
|
4523
2510
|
last_transaction_timestamp?: InputMaybe<Order_By>;
|
|
@@ -4526,7 +2513,6 @@ export type Current_Token_Pending_Claims_Order_By = {
|
|
|
4526
2513
|
property_version?: InputMaybe<Order_By>;
|
|
4527
2514
|
table_handle?: InputMaybe<Order_By>;
|
|
4528
2515
|
to_address?: InputMaybe<Order_By>;
|
|
4529
|
-
token?: InputMaybe<Tokens_Order_By>;
|
|
4530
2516
|
token_data_id?: InputMaybe<Order_By>;
|
|
4531
2517
|
token_data_id_hash?: InputMaybe<Order_By>;
|
|
4532
2518
|
};
|
|
@@ -5089,94 +3075,10 @@ export type Delegator_Distinct_Pool_Stream_Cursor_Input = {
|
|
|
5089
3075
|
/** cursor ordering */
|
|
5090
3076
|
ordering?: InputMaybe<Cursor_Ordering>;
|
|
5091
3077
|
};
|
|
5092
|
-
/** Initial value of the column from where the streaming should start */
|
|
5093
|
-
export type Delegator_Distinct_Pool_Stream_Cursor_Value_Input = {
|
|
5094
|
-
delegator_address?: InputMaybe<Scalars['String']['input']>;
|
|
5095
|
-
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
5096
|
-
};
|
|
5097
|
-
/** columns and relationships of "events" */
|
|
5098
|
-
export type Events = {
|
|
5099
|
-
__typename?: 'events';
|
|
5100
|
-
account_address: Scalars['String']['output'];
|
|
5101
|
-
creation_number: Scalars['bigint']['output'];
|
|
5102
|
-
data: Scalars['jsonb']['output'];
|
|
5103
|
-
event_index: Scalars['bigint']['output'];
|
|
5104
|
-
indexed_type: Scalars['String']['output'];
|
|
5105
|
-
sequence_number: Scalars['bigint']['output'];
|
|
5106
|
-
transaction_block_height: Scalars['bigint']['output'];
|
|
5107
|
-
transaction_version: Scalars['bigint']['output'];
|
|
5108
|
-
type: Scalars['String']['output'];
|
|
5109
|
-
};
|
|
5110
|
-
/** columns and relationships of "events" */
|
|
5111
|
-
export type EventsDataArgs = {
|
|
5112
|
-
path?: InputMaybe<Scalars['String']['input']>;
|
|
5113
|
-
};
|
|
5114
|
-
/** Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. */
|
|
5115
|
-
export type Events_Bool_Exp = {
|
|
5116
|
-
_and?: InputMaybe<Array<Events_Bool_Exp>>;
|
|
5117
|
-
_not?: InputMaybe<Events_Bool_Exp>;
|
|
5118
|
-
_or?: InputMaybe<Array<Events_Bool_Exp>>;
|
|
5119
|
-
account_address?: InputMaybe<String_Comparison_Exp>;
|
|
5120
|
-
creation_number?: InputMaybe<Bigint_Comparison_Exp>;
|
|
5121
|
-
data?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
5122
|
-
event_index?: InputMaybe<Bigint_Comparison_Exp>;
|
|
5123
|
-
indexed_type?: InputMaybe<String_Comparison_Exp>;
|
|
5124
|
-
sequence_number?: InputMaybe<Bigint_Comparison_Exp>;
|
|
5125
|
-
transaction_block_height?: InputMaybe<Bigint_Comparison_Exp>;
|
|
5126
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
5127
|
-
type?: InputMaybe<String_Comparison_Exp>;
|
|
5128
|
-
};
|
|
5129
|
-
/** Ordering options when selecting data from "events". */
|
|
5130
|
-
export type Events_Order_By = {
|
|
5131
|
-
account_address?: InputMaybe<Order_By>;
|
|
5132
|
-
creation_number?: InputMaybe<Order_By>;
|
|
5133
|
-
data?: InputMaybe<Order_By>;
|
|
5134
|
-
event_index?: InputMaybe<Order_By>;
|
|
5135
|
-
indexed_type?: InputMaybe<Order_By>;
|
|
5136
|
-
sequence_number?: InputMaybe<Order_By>;
|
|
5137
|
-
transaction_block_height?: InputMaybe<Order_By>;
|
|
5138
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
5139
|
-
type?: InputMaybe<Order_By>;
|
|
5140
|
-
};
|
|
5141
|
-
/** select columns of table "events" */
|
|
5142
|
-
export declare enum Events_Select_Column {
|
|
5143
|
-
/** column name */
|
|
5144
|
-
AccountAddress = "account_address",
|
|
5145
|
-
/** column name */
|
|
5146
|
-
CreationNumber = "creation_number",
|
|
5147
|
-
/** column name */
|
|
5148
|
-
Data = "data",
|
|
5149
|
-
/** column name */
|
|
5150
|
-
EventIndex = "event_index",
|
|
5151
|
-
/** column name */
|
|
5152
|
-
IndexedType = "indexed_type",
|
|
5153
|
-
/** column name */
|
|
5154
|
-
SequenceNumber = "sequence_number",
|
|
5155
|
-
/** column name */
|
|
5156
|
-
TransactionBlockHeight = "transaction_block_height",
|
|
5157
|
-
/** column name */
|
|
5158
|
-
TransactionVersion = "transaction_version",
|
|
5159
|
-
/** column name */
|
|
5160
|
-
Type = "type"
|
|
5161
|
-
}
|
|
5162
|
-
/** Streaming cursor of the table "events" */
|
|
5163
|
-
export type Events_Stream_Cursor_Input = {
|
|
5164
|
-
/** Stream column input with initial value */
|
|
5165
|
-
initial_value: Events_Stream_Cursor_Value_Input;
|
|
5166
|
-
/** cursor ordering */
|
|
5167
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
5168
|
-
};
|
|
5169
|
-
/** Initial value of the column from where the streaming should start */
|
|
5170
|
-
export type Events_Stream_Cursor_Value_Input = {
|
|
5171
|
-
account_address?: InputMaybe<Scalars['String']['input']>;
|
|
5172
|
-
creation_number?: InputMaybe<Scalars['bigint']['input']>;
|
|
5173
|
-
data?: InputMaybe<Scalars['jsonb']['input']>;
|
|
5174
|
-
event_index?: InputMaybe<Scalars['bigint']['input']>;
|
|
5175
|
-
indexed_type?: InputMaybe<Scalars['String']['input']>;
|
|
5176
|
-
sequence_number?: InputMaybe<Scalars['bigint']['input']>;
|
|
5177
|
-
transaction_block_height?: InputMaybe<Scalars['bigint']['input']>;
|
|
5178
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
5179
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
3078
|
+
/** Initial value of the column from where the streaming should start */
|
|
3079
|
+
export type Delegator_Distinct_Pool_Stream_Cursor_Value_Input = {
|
|
3080
|
+
delegator_address?: InputMaybe<Scalars['String']['input']>;
|
|
3081
|
+
pool_address?: InputMaybe<Scalars['String']['input']>;
|
|
5180
3082
|
};
|
|
5181
3083
|
/** columns and relationships of "fungible_asset_activities" */
|
|
5182
3084
|
export type Fungible_Asset_Activities = {
|
|
@@ -5643,122 +3545,6 @@ export type Ledger_Infos_Stream_Cursor_Input = {
|
|
|
5643
3545
|
export type Ledger_Infos_Stream_Cursor_Value_Input = {
|
|
5644
3546
|
chain_id?: InputMaybe<Scalars['bigint']['input']>;
|
|
5645
3547
|
};
|
|
5646
|
-
/** columns and relationships of "legacy_migration_v1.move_resources" */
|
|
5647
|
-
export type Move_Resources = {
|
|
5648
|
-
__typename?: 'move_resources';
|
|
5649
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
5650
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
5651
|
-
};
|
|
5652
|
-
/** aggregated selection of "legacy_migration_v1.move_resources" */
|
|
5653
|
-
export type Move_Resources_Aggregate = {
|
|
5654
|
-
__typename?: 'move_resources_aggregate';
|
|
5655
|
-
aggregate?: Maybe<Move_Resources_Aggregate_Fields>;
|
|
5656
|
-
nodes: Array<Move_Resources>;
|
|
5657
|
-
};
|
|
5658
|
-
/** aggregate fields of "legacy_migration_v1.move_resources" */
|
|
5659
|
-
export type Move_Resources_Aggregate_Fields = {
|
|
5660
|
-
__typename?: 'move_resources_aggregate_fields';
|
|
5661
|
-
avg?: Maybe<Move_Resources_Avg_Fields>;
|
|
5662
|
-
count: Scalars['Int']['output'];
|
|
5663
|
-
max?: Maybe<Move_Resources_Max_Fields>;
|
|
5664
|
-
min?: Maybe<Move_Resources_Min_Fields>;
|
|
5665
|
-
stddev?: Maybe<Move_Resources_Stddev_Fields>;
|
|
5666
|
-
stddev_pop?: Maybe<Move_Resources_Stddev_Pop_Fields>;
|
|
5667
|
-
stddev_samp?: Maybe<Move_Resources_Stddev_Samp_Fields>;
|
|
5668
|
-
sum?: Maybe<Move_Resources_Sum_Fields>;
|
|
5669
|
-
var_pop?: Maybe<Move_Resources_Var_Pop_Fields>;
|
|
5670
|
-
var_samp?: Maybe<Move_Resources_Var_Samp_Fields>;
|
|
5671
|
-
variance?: Maybe<Move_Resources_Variance_Fields>;
|
|
5672
|
-
};
|
|
5673
|
-
/** aggregate fields of "legacy_migration_v1.move_resources" */
|
|
5674
|
-
export type Move_Resources_Aggregate_FieldsCountArgs = {
|
|
5675
|
-
columns?: InputMaybe<Array<Move_Resources_Select_Column>>;
|
|
5676
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5677
|
-
};
|
|
5678
|
-
/** aggregate avg on columns */
|
|
5679
|
-
export type Move_Resources_Avg_Fields = {
|
|
5680
|
-
__typename?: 'move_resources_avg_fields';
|
|
5681
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
5682
|
-
};
|
|
5683
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.move_resources". All fields are combined with a logical 'AND'. */
|
|
5684
|
-
export type Move_Resources_Bool_Exp = {
|
|
5685
|
-
_and?: InputMaybe<Array<Move_Resources_Bool_Exp>>;
|
|
5686
|
-
_not?: InputMaybe<Move_Resources_Bool_Exp>;
|
|
5687
|
-
_or?: InputMaybe<Array<Move_Resources_Bool_Exp>>;
|
|
5688
|
-
address?: InputMaybe<String_Comparison_Exp>;
|
|
5689
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
5690
|
-
};
|
|
5691
|
-
/** aggregate max on columns */
|
|
5692
|
-
export type Move_Resources_Max_Fields = {
|
|
5693
|
-
__typename?: 'move_resources_max_fields';
|
|
5694
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
5695
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
5696
|
-
};
|
|
5697
|
-
/** aggregate min on columns */
|
|
5698
|
-
export type Move_Resources_Min_Fields = {
|
|
5699
|
-
__typename?: 'move_resources_min_fields';
|
|
5700
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
5701
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
5702
|
-
};
|
|
5703
|
-
/** Ordering options when selecting data from "legacy_migration_v1.move_resources". */
|
|
5704
|
-
export type Move_Resources_Order_By = {
|
|
5705
|
-
address?: InputMaybe<Order_By>;
|
|
5706
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
5707
|
-
};
|
|
5708
|
-
/** select columns of table "legacy_migration_v1.move_resources" */
|
|
5709
|
-
export declare enum Move_Resources_Select_Column {
|
|
5710
|
-
/** column name */
|
|
5711
|
-
Address = "address",
|
|
5712
|
-
/** column name */
|
|
5713
|
-
TransactionVersion = "transaction_version"
|
|
5714
|
-
}
|
|
5715
|
-
/** aggregate stddev on columns */
|
|
5716
|
-
export type Move_Resources_Stddev_Fields = {
|
|
5717
|
-
__typename?: 'move_resources_stddev_fields';
|
|
5718
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
5719
|
-
};
|
|
5720
|
-
/** aggregate stddev_pop on columns */
|
|
5721
|
-
export type Move_Resources_Stddev_Pop_Fields = {
|
|
5722
|
-
__typename?: 'move_resources_stddev_pop_fields';
|
|
5723
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
5724
|
-
};
|
|
5725
|
-
/** aggregate stddev_samp on columns */
|
|
5726
|
-
export type Move_Resources_Stddev_Samp_Fields = {
|
|
5727
|
-
__typename?: 'move_resources_stddev_samp_fields';
|
|
5728
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
5729
|
-
};
|
|
5730
|
-
/** Streaming cursor of the table "move_resources" */
|
|
5731
|
-
export type Move_Resources_Stream_Cursor_Input = {
|
|
5732
|
-
/** Stream column input with initial value */
|
|
5733
|
-
initial_value: Move_Resources_Stream_Cursor_Value_Input;
|
|
5734
|
-
/** cursor ordering */
|
|
5735
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
5736
|
-
};
|
|
5737
|
-
/** Initial value of the column from where the streaming should start */
|
|
5738
|
-
export type Move_Resources_Stream_Cursor_Value_Input = {
|
|
5739
|
-
address?: InputMaybe<Scalars['String']['input']>;
|
|
5740
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
5741
|
-
};
|
|
5742
|
-
/** aggregate sum on columns */
|
|
5743
|
-
export type Move_Resources_Sum_Fields = {
|
|
5744
|
-
__typename?: 'move_resources_sum_fields';
|
|
5745
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
5746
|
-
};
|
|
5747
|
-
/** aggregate var_pop on columns */
|
|
5748
|
-
export type Move_Resources_Var_Pop_Fields = {
|
|
5749
|
-
__typename?: 'move_resources_var_pop_fields';
|
|
5750
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
5751
|
-
};
|
|
5752
|
-
/** aggregate var_samp on columns */
|
|
5753
|
-
export type Move_Resources_Var_Samp_Fields = {
|
|
5754
|
-
__typename?: 'move_resources_var_samp_fields';
|
|
5755
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
5756
|
-
};
|
|
5757
|
-
/** aggregate variance on columns */
|
|
5758
|
-
export type Move_Resources_Variance_Fields = {
|
|
5759
|
-
__typename?: 'move_resources_variance_fields';
|
|
5760
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
5761
|
-
};
|
|
5762
3548
|
/** columns and relationships of "nft_metadata_crawler.parsed_asset_uris" */
|
|
5763
3549
|
export type Nft_Metadata_Crawler_Parsed_Asset_Uris = {
|
|
5764
3550
|
__typename?: 'nft_metadata_crawler_parsed_asset_uris';
|
|
@@ -6286,16 +4072,6 @@ export type Query_Root = {
|
|
|
6286
4072
|
account_transactions_aggregate: Account_Transactions_Aggregate;
|
|
6287
4073
|
/** fetch data from the table: "account_transactions" using primary key columns */
|
|
6288
4074
|
account_transactions_by_pk?: Maybe<Account_Transactions>;
|
|
6289
|
-
/** fetch data from the table: "address_events_summary" */
|
|
6290
|
-
address_events_summary: Array<Address_Events_Summary>;
|
|
6291
|
-
/** fetch data from the table: "address_version_from_events" */
|
|
6292
|
-
address_version_from_events: Array<Address_Version_From_Events>;
|
|
6293
|
-
/** fetch aggregated fields from the table: "address_version_from_events" */
|
|
6294
|
-
address_version_from_events_aggregate: Address_Version_From_Events_Aggregate;
|
|
6295
|
-
/** fetch data from the table: "legacy_migration_v1.address_version_from_move_resources" */
|
|
6296
|
-
address_version_from_move_resources: Array<Address_Version_From_Move_Resources>;
|
|
6297
|
-
/** fetch aggregated fields from the table: "legacy_migration_v1.address_version_from_move_resources" */
|
|
6298
|
-
address_version_from_move_resources_aggregate: Address_Version_From_Move_Resources_Aggregate;
|
|
6299
4075
|
/** fetch data from the table: "auth_key_account_addresses" */
|
|
6300
4076
|
auth_key_account_addresses: Array<Auth_Key_Account_Addresses>;
|
|
6301
4077
|
/** fetch aggregated fields from the table: "auth_key_account_addresses" */
|
|
@@ -6306,22 +4082,6 @@ export type Query_Root = {
|
|
|
6306
4082
|
block_metadata_transactions: Array<Block_Metadata_Transactions>;
|
|
6307
4083
|
/** fetch data from the table: "block_metadata_transactions" using primary key columns */
|
|
6308
4084
|
block_metadata_transactions_by_pk?: Maybe<Block_Metadata_Transactions>;
|
|
6309
|
-
/** An array relationship */
|
|
6310
|
-
coin_activities: Array<Coin_Activities>;
|
|
6311
|
-
/** An aggregate relationship */
|
|
6312
|
-
coin_activities_aggregate: Coin_Activities_Aggregate;
|
|
6313
|
-
/** fetch data from the table: "legacy_migration_v1.coin_balances" */
|
|
6314
|
-
coin_balances: Array<Coin_Balances>;
|
|
6315
|
-
/** fetch data from the table: "legacy_migration_v1.coin_infos" */
|
|
6316
|
-
coin_infos: Array<Coin_Infos>;
|
|
6317
|
-
/** fetch data from the table: "coin_supply" */
|
|
6318
|
-
coin_supply: Array<Coin_Supply>;
|
|
6319
|
-
/** fetch data from the table: "coin_supply" using primary key columns */
|
|
6320
|
-
coin_supply_by_pk?: Maybe<Coin_Supply>;
|
|
6321
|
-
/** fetch data from the table: "legacy_migration_v1.collection_datas" */
|
|
6322
|
-
collection_datas: Array<Collection_Datas>;
|
|
6323
|
-
/** fetch data from the table: "legacy_migration_v1.current_ans_lookup" */
|
|
6324
|
-
current_ans_lookup: Array<Current_Ans_Lookup>;
|
|
6325
4085
|
/** fetch data from the table: "current_ans_lookup_v2" */
|
|
6326
4086
|
current_ans_lookup_v2: Array<Current_Ans_Lookup_V2>;
|
|
6327
4087
|
/** fetch data from the table: "current_ans_lookup_v2" using primary key columns */
|
|
@@ -6330,10 +4090,6 @@ export type Query_Root = {
|
|
|
6330
4090
|
current_aptos_names: Array<Current_Aptos_Names>;
|
|
6331
4091
|
/** fetch aggregated fields from the table: "current_aptos_names" */
|
|
6332
4092
|
current_aptos_names_aggregate: Current_Aptos_Names_Aggregate;
|
|
6333
|
-
/** fetch data from the table: "legacy_migration_v1.current_coin_balances" */
|
|
6334
|
-
current_coin_balances: Array<Current_Coin_Balances>;
|
|
6335
|
-
/** fetch data from the table: "legacy_migration_v1.current_collection_datas" */
|
|
6336
|
-
current_collection_datas: Array<Current_Collection_Datas>;
|
|
6337
4093
|
/** fetch data from the table: "current_collection_ownership_v2_view" */
|
|
6338
4094
|
current_collection_ownership_v2_view: Array<Current_Collection_Ownership_V2_View>;
|
|
6339
4095
|
/** fetch aggregated fields from the table: "current_collection_ownership_v2_view" */
|
|
@@ -6372,16 +4128,10 @@ export type Query_Root = {
|
|
|
6372
4128
|
current_table_items: Array<Current_Table_Items>;
|
|
6373
4129
|
/** fetch data from the table: "current_table_items" using primary key columns */
|
|
6374
4130
|
current_table_items_by_pk?: Maybe<Current_Table_Items>;
|
|
6375
|
-
/** fetch data from the table: "legacy_migration_v1.current_token_datas" */
|
|
6376
|
-
current_token_datas: Array<Current_Token_Datas>;
|
|
6377
4131
|
/** fetch data from the table: "current_token_datas_v2" */
|
|
6378
4132
|
current_token_datas_v2: Array<Current_Token_Datas_V2>;
|
|
6379
4133
|
/** fetch data from the table: "current_token_datas_v2" using primary key columns */
|
|
6380
4134
|
current_token_datas_v2_by_pk?: Maybe<Current_Token_Datas_V2>;
|
|
6381
|
-
/** fetch data from the table: "legacy_migration_v1.current_token_ownerships" */
|
|
6382
|
-
current_token_ownerships: Array<Current_Token_Ownerships>;
|
|
6383
|
-
/** fetch aggregated fields from the table: "legacy_migration_v1.current_token_ownerships" */
|
|
6384
|
-
current_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;
|
|
6385
4135
|
/** fetch data from the table: "current_token_ownerships_v2" */
|
|
6386
4136
|
current_token_ownerships_v2: Array<Current_Token_Ownerships_V2>;
|
|
6387
4137
|
/** fetch aggregated fields from the table: "current_token_ownerships_v2" */
|
|
@@ -6414,10 +4164,6 @@ export type Query_Root = {
|
|
|
6414
4164
|
delegator_distinct_pool: Array<Delegator_Distinct_Pool>;
|
|
6415
4165
|
/** fetch aggregated fields from the table: "delegator_distinct_pool" */
|
|
6416
4166
|
delegator_distinct_pool_aggregate: Delegator_Distinct_Pool_Aggregate;
|
|
6417
|
-
/** fetch data from the table: "events" */
|
|
6418
|
-
events: Array<Events>;
|
|
6419
|
-
/** fetch data from the table: "events" using primary key columns */
|
|
6420
|
-
events_by_pk?: Maybe<Events>;
|
|
6421
4167
|
/** An array relationship */
|
|
6422
4168
|
fungible_asset_activities: Array<Fungible_Asset_Activities>;
|
|
6423
4169
|
/** fetch data from the table: "fungible_asset_activities" using primary key columns */
|
|
@@ -6434,10 +4180,6 @@ export type Query_Root = {
|
|
|
6434
4180
|
ledger_infos: Array<Ledger_Infos>;
|
|
6435
4181
|
/** fetch data from the table: "processor_metadata.ledger_infos" using primary key columns */
|
|
6436
4182
|
ledger_infos_by_pk?: Maybe<Ledger_Infos>;
|
|
6437
|
-
/** fetch data from the table: "legacy_migration_v1.move_resources" */
|
|
6438
|
-
move_resources: Array<Move_Resources>;
|
|
6439
|
-
/** fetch aggregated fields from the table: "legacy_migration_v1.move_resources" */
|
|
6440
|
-
move_resources_aggregate: Move_Resources_Aggregate;
|
|
6441
4183
|
/** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" */
|
|
6442
4184
|
nft_metadata_crawler_parsed_asset_uris: Array<Nft_Metadata_Crawler_Parsed_Asset_Uris>;
|
|
6443
4185
|
/** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" using primary key columns */
|
|
@@ -6473,21 +4215,11 @@ export type Query_Root = {
|
|
|
6473
4215
|
/** fetch data from the table: "table_metadatas" using primary key columns */
|
|
6474
4216
|
table_metadatas_by_pk?: Maybe<Table_Metadatas>;
|
|
6475
4217
|
/** An array relationship */
|
|
6476
|
-
token_activities: Array<Token_Activities>;
|
|
6477
|
-
/** An aggregate relationship */
|
|
6478
|
-
token_activities_aggregate: Token_Activities_Aggregate;
|
|
6479
|
-
/** An array relationship */
|
|
6480
4218
|
token_activities_v2: Array<Token_Activities_V2>;
|
|
6481
4219
|
/** An aggregate relationship */
|
|
6482
4220
|
token_activities_v2_aggregate: Token_Activities_V2_Aggregate;
|
|
6483
4221
|
/** fetch data from the table: "token_activities_v2" using primary key columns */
|
|
6484
4222
|
token_activities_v2_by_pk?: Maybe<Token_Activities_V2>;
|
|
6485
|
-
/** fetch data from the table: "legacy_migration_v1.token_datas" */
|
|
6486
|
-
token_datas: Array<Token_Datas>;
|
|
6487
|
-
/** fetch data from the table: "legacy_migration_v1.token_ownerships" */
|
|
6488
|
-
token_ownerships: Array<Token_Ownerships>;
|
|
6489
|
-
/** fetch data from the table: "legacy_migration_v1.tokens" */
|
|
6490
|
-
tokens: Array<Tokens>;
|
|
6491
4223
|
/** fetch data from the table: "user_transactions" */
|
|
6492
4224
|
user_transactions: Array<User_Transactions>;
|
|
6493
4225
|
/** fetch data from the table: "user_transactions" using primary key columns */
|
|
@@ -6511,41 +4243,6 @@ export type Query_RootAccount_Transactions_By_PkArgs = {
|
|
|
6511
4243
|
account_address: Scalars['String']['input'];
|
|
6512
4244
|
transaction_version: Scalars['bigint']['input'];
|
|
6513
4245
|
};
|
|
6514
|
-
export type Query_RootAddress_Events_SummaryArgs = {
|
|
6515
|
-
distinct_on?: InputMaybe<Array<Address_Events_Summary_Select_Column>>;
|
|
6516
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6517
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6518
|
-
order_by?: InputMaybe<Array<Address_Events_Summary_Order_By>>;
|
|
6519
|
-
where?: InputMaybe<Address_Events_Summary_Bool_Exp>;
|
|
6520
|
-
};
|
|
6521
|
-
export type Query_RootAddress_Version_From_EventsArgs = {
|
|
6522
|
-
distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;
|
|
6523
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6524
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6525
|
-
order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;
|
|
6526
|
-
where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;
|
|
6527
|
-
};
|
|
6528
|
-
export type Query_RootAddress_Version_From_Events_AggregateArgs = {
|
|
6529
|
-
distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;
|
|
6530
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6531
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6532
|
-
order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;
|
|
6533
|
-
where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;
|
|
6534
|
-
};
|
|
6535
|
-
export type Query_RootAddress_Version_From_Move_ResourcesArgs = {
|
|
6536
|
-
distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;
|
|
6537
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6538
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6539
|
-
order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;
|
|
6540
|
-
where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;
|
|
6541
|
-
};
|
|
6542
|
-
export type Query_RootAddress_Version_From_Move_Resources_AggregateArgs = {
|
|
6543
|
-
distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;
|
|
6544
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6545
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6546
|
-
order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;
|
|
6547
|
-
where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;
|
|
6548
|
-
};
|
|
6549
4246
|
export type Query_RootAuth_Key_Account_AddressesArgs = {
|
|
6550
4247
|
distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;
|
|
6551
4248
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6573,59 +4270,6 @@ export type Query_RootBlock_Metadata_TransactionsArgs = {
|
|
|
6573
4270
|
export type Query_RootBlock_Metadata_Transactions_By_PkArgs = {
|
|
6574
4271
|
version: Scalars['bigint']['input'];
|
|
6575
4272
|
};
|
|
6576
|
-
export type Query_RootCoin_ActivitiesArgs = {
|
|
6577
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
6578
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6579
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6580
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
6581
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
6582
|
-
};
|
|
6583
|
-
export type Query_RootCoin_Activities_AggregateArgs = {
|
|
6584
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
6585
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6586
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6587
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
6588
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
6589
|
-
};
|
|
6590
|
-
export type Query_RootCoin_BalancesArgs = {
|
|
6591
|
-
distinct_on?: InputMaybe<Array<Coin_Balances_Select_Column>>;
|
|
6592
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6593
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6594
|
-
order_by?: InputMaybe<Array<Coin_Balances_Order_By>>;
|
|
6595
|
-
where?: InputMaybe<Coin_Balances_Bool_Exp>;
|
|
6596
|
-
};
|
|
6597
|
-
export type Query_RootCoin_InfosArgs = {
|
|
6598
|
-
distinct_on?: InputMaybe<Array<Coin_Infos_Select_Column>>;
|
|
6599
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6600
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6601
|
-
order_by?: InputMaybe<Array<Coin_Infos_Order_By>>;
|
|
6602
|
-
where?: InputMaybe<Coin_Infos_Bool_Exp>;
|
|
6603
|
-
};
|
|
6604
|
-
export type Query_RootCoin_SupplyArgs = {
|
|
6605
|
-
distinct_on?: InputMaybe<Array<Coin_Supply_Select_Column>>;
|
|
6606
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6607
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6608
|
-
order_by?: InputMaybe<Array<Coin_Supply_Order_By>>;
|
|
6609
|
-
where?: InputMaybe<Coin_Supply_Bool_Exp>;
|
|
6610
|
-
};
|
|
6611
|
-
export type Query_RootCoin_Supply_By_PkArgs = {
|
|
6612
|
-
coin_type_hash: Scalars['String']['input'];
|
|
6613
|
-
transaction_version: Scalars['bigint']['input'];
|
|
6614
|
-
};
|
|
6615
|
-
export type Query_RootCollection_DatasArgs = {
|
|
6616
|
-
distinct_on?: InputMaybe<Array<Collection_Datas_Select_Column>>;
|
|
6617
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6618
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6619
|
-
order_by?: InputMaybe<Array<Collection_Datas_Order_By>>;
|
|
6620
|
-
where?: InputMaybe<Collection_Datas_Bool_Exp>;
|
|
6621
|
-
};
|
|
6622
|
-
export type Query_RootCurrent_Ans_LookupArgs = {
|
|
6623
|
-
distinct_on?: InputMaybe<Array<Current_Ans_Lookup_Select_Column>>;
|
|
6624
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6625
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6626
|
-
order_by?: InputMaybe<Array<Current_Ans_Lookup_Order_By>>;
|
|
6627
|
-
where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;
|
|
6628
|
-
};
|
|
6629
4273
|
export type Query_RootCurrent_Ans_Lookup_V2Args = {
|
|
6630
4274
|
distinct_on?: InputMaybe<Array<Current_Ans_Lookup_V2_Select_Column>>;
|
|
6631
4275
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6652,20 +4296,6 @@ export type Query_RootCurrent_Aptos_Names_AggregateArgs = {
|
|
|
6652
4296
|
order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;
|
|
6653
4297
|
where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
6654
4298
|
};
|
|
6655
|
-
export type Query_RootCurrent_Coin_BalancesArgs = {
|
|
6656
|
-
distinct_on?: InputMaybe<Array<Current_Coin_Balances_Select_Column>>;
|
|
6657
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6658
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6659
|
-
order_by?: InputMaybe<Array<Current_Coin_Balances_Order_By>>;
|
|
6660
|
-
where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;
|
|
6661
|
-
};
|
|
6662
|
-
export type Query_RootCurrent_Collection_DatasArgs = {
|
|
6663
|
-
distinct_on?: InputMaybe<Array<Current_Collection_Datas_Select_Column>>;
|
|
6664
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6665
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6666
|
-
order_by?: InputMaybe<Array<Current_Collection_Datas_Order_By>>;
|
|
6667
|
-
where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;
|
|
6668
|
-
};
|
|
6669
4299
|
export type Query_RootCurrent_Collection_Ownership_V2_ViewArgs = {
|
|
6670
4300
|
distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;
|
|
6671
4301
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6772,13 +4402,6 @@ export type Query_RootCurrent_Table_Items_By_PkArgs = {
|
|
|
6772
4402
|
key_hash: Scalars['String']['input'];
|
|
6773
4403
|
table_handle: Scalars['String']['input'];
|
|
6774
4404
|
};
|
|
6775
|
-
export type Query_RootCurrent_Token_DatasArgs = {
|
|
6776
|
-
distinct_on?: InputMaybe<Array<Current_Token_Datas_Select_Column>>;
|
|
6777
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6778
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6779
|
-
order_by?: InputMaybe<Array<Current_Token_Datas_Order_By>>;
|
|
6780
|
-
where?: InputMaybe<Current_Token_Datas_Bool_Exp>;
|
|
6781
|
-
};
|
|
6782
4405
|
export type Query_RootCurrent_Token_Datas_V2Args = {
|
|
6783
4406
|
distinct_on?: InputMaybe<Array<Current_Token_Datas_V2_Select_Column>>;
|
|
6784
4407
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6789,20 +4412,6 @@ export type Query_RootCurrent_Token_Datas_V2Args = {
|
|
|
6789
4412
|
export type Query_RootCurrent_Token_Datas_V2_By_PkArgs = {
|
|
6790
4413
|
token_data_id: Scalars['String']['input'];
|
|
6791
4414
|
};
|
|
6792
|
-
export type Query_RootCurrent_Token_OwnershipsArgs = {
|
|
6793
|
-
distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;
|
|
6794
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6795
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6796
|
-
order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;
|
|
6797
|
-
where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
6798
|
-
};
|
|
6799
|
-
export type Query_RootCurrent_Token_Ownerships_AggregateArgs = {
|
|
6800
|
-
distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;
|
|
6801
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6802
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6803
|
-
order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;
|
|
6804
|
-
where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
6805
|
-
};
|
|
6806
4415
|
export type Query_RootCurrent_Token_Ownerships_V2Args = {
|
|
6807
4416
|
distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;
|
|
6808
4417
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6899,17 +4508,6 @@ export type Query_RootDelegator_Distinct_Pool_AggregateArgs = {
|
|
|
6899
4508
|
order_by?: InputMaybe<Array<Delegator_Distinct_Pool_Order_By>>;
|
|
6900
4509
|
where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;
|
|
6901
4510
|
};
|
|
6902
|
-
export type Query_RootEventsArgs = {
|
|
6903
|
-
distinct_on?: InputMaybe<Array<Events_Select_Column>>;
|
|
6904
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6905
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6906
|
-
order_by?: InputMaybe<Array<Events_Order_By>>;
|
|
6907
|
-
where?: InputMaybe<Events_Bool_Exp>;
|
|
6908
|
-
};
|
|
6909
|
-
export type Query_RootEvents_By_PkArgs = {
|
|
6910
|
-
event_index: Scalars['bigint']['input'];
|
|
6911
|
-
transaction_version: Scalars['bigint']['input'];
|
|
6912
|
-
};
|
|
6913
4511
|
export type Query_RootFungible_Asset_ActivitiesArgs = {
|
|
6914
4512
|
distinct_on?: InputMaybe<Array<Fungible_Asset_Activities_Select_Column>>;
|
|
6915
4513
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6951,20 +4549,6 @@ export type Query_RootLedger_InfosArgs = {
|
|
|
6951
4549
|
export type Query_RootLedger_Infos_By_PkArgs = {
|
|
6952
4550
|
chain_id: Scalars['bigint']['input'];
|
|
6953
4551
|
};
|
|
6954
|
-
export type Query_RootMove_ResourcesArgs = {
|
|
6955
|
-
distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;
|
|
6956
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6957
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6958
|
-
order_by?: InputMaybe<Array<Move_Resources_Order_By>>;
|
|
6959
|
-
where?: InputMaybe<Move_Resources_Bool_Exp>;
|
|
6960
|
-
};
|
|
6961
|
-
export type Query_RootMove_Resources_AggregateArgs = {
|
|
6962
|
-
distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;
|
|
6963
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6964
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
6965
|
-
order_by?: InputMaybe<Array<Move_Resources_Order_By>>;
|
|
6966
|
-
where?: InputMaybe<Move_Resources_Bool_Exp>;
|
|
6967
|
-
};
|
|
6968
4552
|
export type Query_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs = {
|
|
6969
4553
|
distinct_on?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column>>;
|
|
6970
4554
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7064,20 +4648,6 @@ export type Query_RootTable_MetadatasArgs = {
|
|
|
7064
4648
|
export type Query_RootTable_Metadatas_By_PkArgs = {
|
|
7065
4649
|
handle: Scalars['String']['input'];
|
|
7066
4650
|
};
|
|
7067
|
-
export type Query_RootToken_ActivitiesArgs = {
|
|
7068
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
7069
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7070
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7071
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
7072
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
7073
|
-
};
|
|
7074
|
-
export type Query_RootToken_Activities_AggregateArgs = {
|
|
7075
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
7076
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7077
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7078
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
7079
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
7080
|
-
};
|
|
7081
4651
|
export type Query_RootToken_Activities_V2Args = {
|
|
7082
4652
|
distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;
|
|
7083
4653
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7096,27 +4666,6 @@ export type Query_RootToken_Activities_V2_By_PkArgs = {
|
|
|
7096
4666
|
event_index: Scalars['bigint']['input'];
|
|
7097
4667
|
transaction_version: Scalars['bigint']['input'];
|
|
7098
4668
|
};
|
|
7099
|
-
export type Query_RootToken_DatasArgs = {
|
|
7100
|
-
distinct_on?: InputMaybe<Array<Token_Datas_Select_Column>>;
|
|
7101
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7102
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7103
|
-
order_by?: InputMaybe<Array<Token_Datas_Order_By>>;
|
|
7104
|
-
where?: InputMaybe<Token_Datas_Bool_Exp>;
|
|
7105
|
-
};
|
|
7106
|
-
export type Query_RootToken_OwnershipsArgs = {
|
|
7107
|
-
distinct_on?: InputMaybe<Array<Token_Ownerships_Select_Column>>;
|
|
7108
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7109
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7110
|
-
order_by?: InputMaybe<Array<Token_Ownerships_Order_By>>;
|
|
7111
|
-
where?: InputMaybe<Token_Ownerships_Bool_Exp>;
|
|
7112
|
-
};
|
|
7113
|
-
export type Query_RootTokensArgs = {
|
|
7114
|
-
distinct_on?: InputMaybe<Array<Tokens_Select_Column>>;
|
|
7115
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7116
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7117
|
-
order_by?: InputMaybe<Array<Tokens_Order_By>>;
|
|
7118
|
-
where?: InputMaybe<Tokens_Bool_Exp>;
|
|
7119
|
-
};
|
|
7120
4669
|
export type Query_RootUser_TransactionsArgs = {
|
|
7121
4670
|
distinct_on?: InputMaybe<Array<User_Transactions_Select_Column>>;
|
|
7122
4671
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7130,11 +4679,14 @@ export type Query_RootUser_Transactions_By_PkArgs = {
|
|
|
7130
4679
|
/** columns and relationships of "signatures" */
|
|
7131
4680
|
export type Signatures = {
|
|
7132
4681
|
__typename?: 'signatures';
|
|
4682
|
+
any_signature_type?: Maybe<Scalars['String']['output']>;
|
|
4683
|
+
function_info?: Maybe<Scalars['String']['output']>;
|
|
7133
4684
|
is_sender_primary: Scalars['Boolean']['output'];
|
|
7134
4685
|
multi_agent_index: Scalars['bigint']['output'];
|
|
7135
4686
|
multi_sig_index: Scalars['bigint']['output'];
|
|
7136
4687
|
public_key: Scalars['String']['output'];
|
|
7137
4688
|
public_key_indices: Scalars['jsonb']['output'];
|
|
4689
|
+
public_key_type?: Maybe<Scalars['String']['output']>;
|
|
7138
4690
|
signature: Scalars['String']['output'];
|
|
7139
4691
|
signer: Scalars['String']['output'];
|
|
7140
4692
|
threshold: Scalars['bigint']['output'];
|
|
@@ -7151,11 +4703,14 @@ export type Signatures_Bool_Exp = {
|
|
|
7151
4703
|
_and?: InputMaybe<Array<Signatures_Bool_Exp>>;
|
|
7152
4704
|
_not?: InputMaybe<Signatures_Bool_Exp>;
|
|
7153
4705
|
_or?: InputMaybe<Array<Signatures_Bool_Exp>>;
|
|
4706
|
+
any_signature_type?: InputMaybe<String_Comparison_Exp>;
|
|
4707
|
+
function_info?: InputMaybe<String_Comparison_Exp>;
|
|
7154
4708
|
is_sender_primary?: InputMaybe<Boolean_Comparison_Exp>;
|
|
7155
4709
|
multi_agent_index?: InputMaybe<Bigint_Comparison_Exp>;
|
|
7156
4710
|
multi_sig_index?: InputMaybe<Bigint_Comparison_Exp>;
|
|
7157
4711
|
public_key?: InputMaybe<String_Comparison_Exp>;
|
|
7158
4712
|
public_key_indices?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
4713
|
+
public_key_type?: InputMaybe<String_Comparison_Exp>;
|
|
7159
4714
|
signature?: InputMaybe<String_Comparison_Exp>;
|
|
7160
4715
|
signer?: InputMaybe<String_Comparison_Exp>;
|
|
7161
4716
|
threshold?: InputMaybe<Bigint_Comparison_Exp>;
|
|
@@ -7165,11 +4720,14 @@ export type Signatures_Bool_Exp = {
|
|
|
7165
4720
|
};
|
|
7166
4721
|
/** Ordering options when selecting data from "signatures". */
|
|
7167
4722
|
export type Signatures_Order_By = {
|
|
4723
|
+
any_signature_type?: InputMaybe<Order_By>;
|
|
4724
|
+
function_info?: InputMaybe<Order_By>;
|
|
7168
4725
|
is_sender_primary?: InputMaybe<Order_By>;
|
|
7169
4726
|
multi_agent_index?: InputMaybe<Order_By>;
|
|
7170
4727
|
multi_sig_index?: InputMaybe<Order_By>;
|
|
7171
4728
|
public_key?: InputMaybe<Order_By>;
|
|
7172
4729
|
public_key_indices?: InputMaybe<Order_By>;
|
|
4730
|
+
public_key_type?: InputMaybe<Order_By>;
|
|
7173
4731
|
signature?: InputMaybe<Order_By>;
|
|
7174
4732
|
signer?: InputMaybe<Order_By>;
|
|
7175
4733
|
threshold?: InputMaybe<Order_By>;
|
|
@@ -7179,6 +4737,10 @@ export type Signatures_Order_By = {
|
|
|
7179
4737
|
};
|
|
7180
4738
|
/** select columns of table "signatures" */
|
|
7181
4739
|
export declare enum Signatures_Select_Column {
|
|
4740
|
+
/** column name */
|
|
4741
|
+
AnySignatureType = "any_signature_type",
|
|
4742
|
+
/** column name */
|
|
4743
|
+
FunctionInfo = "function_info",
|
|
7182
4744
|
/** column name */
|
|
7183
4745
|
IsSenderPrimary = "is_sender_primary",
|
|
7184
4746
|
/** column name */
|
|
@@ -7190,6 +4752,8 @@ export declare enum Signatures_Select_Column {
|
|
|
7190
4752
|
/** column name */
|
|
7191
4753
|
PublicKeyIndices = "public_key_indices",
|
|
7192
4754
|
/** column name */
|
|
4755
|
+
PublicKeyType = "public_key_type",
|
|
4756
|
+
/** column name */
|
|
7193
4757
|
Signature = "signature",
|
|
7194
4758
|
/** column name */
|
|
7195
4759
|
Signer = "signer",
|
|
@@ -7211,11 +4775,14 @@ export type Signatures_Stream_Cursor_Input = {
|
|
|
7211
4775
|
};
|
|
7212
4776
|
/** Initial value of the column from where the streaming should start */
|
|
7213
4777
|
export type Signatures_Stream_Cursor_Value_Input = {
|
|
4778
|
+
any_signature_type?: InputMaybe<Scalars['String']['input']>;
|
|
4779
|
+
function_info?: InputMaybe<Scalars['String']['input']>;
|
|
7214
4780
|
is_sender_primary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7215
4781
|
multi_agent_index?: InputMaybe<Scalars['bigint']['input']>;
|
|
7216
4782
|
multi_sig_index?: InputMaybe<Scalars['bigint']['input']>;
|
|
7217
4783
|
public_key?: InputMaybe<Scalars['String']['input']>;
|
|
7218
4784
|
public_key_indices?: InputMaybe<Scalars['jsonb']['input']>;
|
|
4785
|
+
public_key_type?: InputMaybe<Scalars['String']['input']>;
|
|
7219
4786
|
signature?: InputMaybe<Scalars['String']['input']>;
|
|
7220
4787
|
signer?: InputMaybe<Scalars['String']['input']>;
|
|
7221
4788
|
threshold?: InputMaybe<Scalars['bigint']['input']>;
|
|
@@ -7233,22 +4800,6 @@ export type Subscription_Root = {
|
|
|
7233
4800
|
account_transactions_by_pk?: Maybe<Account_Transactions>;
|
|
7234
4801
|
/** fetch data from the table in a streaming manner: "account_transactions" */
|
|
7235
4802
|
account_transactions_stream: Array<Account_Transactions>;
|
|
7236
|
-
/** fetch data from the table: "address_events_summary" */
|
|
7237
|
-
address_events_summary: Array<Address_Events_Summary>;
|
|
7238
|
-
/** fetch data from the table in a streaming manner: "address_events_summary" */
|
|
7239
|
-
address_events_summary_stream: Array<Address_Events_Summary>;
|
|
7240
|
-
/** fetch data from the table: "address_version_from_events" */
|
|
7241
|
-
address_version_from_events: Array<Address_Version_From_Events>;
|
|
7242
|
-
/** fetch aggregated fields from the table: "address_version_from_events" */
|
|
7243
|
-
address_version_from_events_aggregate: Address_Version_From_Events_Aggregate;
|
|
7244
|
-
/** fetch data from the table in a streaming manner: "address_version_from_events" */
|
|
7245
|
-
address_version_from_events_stream: Array<Address_Version_From_Events>;
|
|
7246
|
-
/** fetch data from the table: "legacy_migration_v1.address_version_from_move_resources" */
|
|
7247
|
-
address_version_from_move_resources: Array<Address_Version_From_Move_Resources>;
|
|
7248
|
-
/** fetch aggregated fields from the table: "legacy_migration_v1.address_version_from_move_resources" */
|
|
7249
|
-
address_version_from_move_resources_aggregate: Address_Version_From_Move_Resources_Aggregate;
|
|
7250
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.address_version_from_move_resources" */
|
|
7251
|
-
address_version_from_move_resources_stream: Array<Address_Version_From_Move_Resources>;
|
|
7252
4803
|
/** fetch data from the table: "auth_key_account_addresses" */
|
|
7253
4804
|
auth_key_account_addresses: Array<Auth_Key_Account_Addresses>;
|
|
7254
4805
|
/** fetch aggregated fields from the table: "auth_key_account_addresses" */
|
|
@@ -7263,34 +4814,6 @@ export type Subscription_Root = {
|
|
|
7263
4814
|
block_metadata_transactions_by_pk?: Maybe<Block_Metadata_Transactions>;
|
|
7264
4815
|
/** fetch data from the table in a streaming manner: "block_metadata_transactions" */
|
|
7265
4816
|
block_metadata_transactions_stream: Array<Block_Metadata_Transactions>;
|
|
7266
|
-
/** An array relationship */
|
|
7267
|
-
coin_activities: Array<Coin_Activities>;
|
|
7268
|
-
/** An aggregate relationship */
|
|
7269
|
-
coin_activities_aggregate: Coin_Activities_Aggregate;
|
|
7270
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.coin_activities" */
|
|
7271
|
-
coin_activities_stream: Array<Coin_Activities>;
|
|
7272
|
-
/** fetch data from the table: "legacy_migration_v1.coin_balances" */
|
|
7273
|
-
coin_balances: Array<Coin_Balances>;
|
|
7274
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.coin_balances" */
|
|
7275
|
-
coin_balances_stream: Array<Coin_Balances>;
|
|
7276
|
-
/** fetch data from the table: "legacy_migration_v1.coin_infos" */
|
|
7277
|
-
coin_infos: Array<Coin_Infos>;
|
|
7278
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.coin_infos" */
|
|
7279
|
-
coin_infos_stream: Array<Coin_Infos>;
|
|
7280
|
-
/** fetch data from the table: "coin_supply" */
|
|
7281
|
-
coin_supply: Array<Coin_Supply>;
|
|
7282
|
-
/** fetch data from the table: "coin_supply" using primary key columns */
|
|
7283
|
-
coin_supply_by_pk?: Maybe<Coin_Supply>;
|
|
7284
|
-
/** fetch data from the table in a streaming manner: "coin_supply" */
|
|
7285
|
-
coin_supply_stream: Array<Coin_Supply>;
|
|
7286
|
-
/** fetch data from the table: "legacy_migration_v1.collection_datas" */
|
|
7287
|
-
collection_datas: Array<Collection_Datas>;
|
|
7288
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.collection_datas" */
|
|
7289
|
-
collection_datas_stream: Array<Collection_Datas>;
|
|
7290
|
-
/** fetch data from the table: "legacy_migration_v1.current_ans_lookup" */
|
|
7291
|
-
current_ans_lookup: Array<Current_Ans_Lookup>;
|
|
7292
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.current_ans_lookup" */
|
|
7293
|
-
current_ans_lookup_stream: Array<Current_Ans_Lookup>;
|
|
7294
4817
|
/** fetch data from the table: "current_ans_lookup_v2" */
|
|
7295
4818
|
current_ans_lookup_v2: Array<Current_Ans_Lookup_V2>;
|
|
7296
4819
|
/** fetch data from the table: "current_ans_lookup_v2" using primary key columns */
|
|
@@ -7303,14 +4826,6 @@ export type Subscription_Root = {
|
|
|
7303
4826
|
current_aptos_names_aggregate: Current_Aptos_Names_Aggregate;
|
|
7304
4827
|
/** fetch data from the table in a streaming manner: "current_aptos_names" */
|
|
7305
4828
|
current_aptos_names_stream: Array<Current_Aptos_Names>;
|
|
7306
|
-
/** fetch data from the table: "legacy_migration_v1.current_coin_balances" */
|
|
7307
|
-
current_coin_balances: Array<Current_Coin_Balances>;
|
|
7308
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.current_coin_balances" */
|
|
7309
|
-
current_coin_balances_stream: Array<Current_Coin_Balances>;
|
|
7310
|
-
/** fetch data from the table: "legacy_migration_v1.current_collection_datas" */
|
|
7311
|
-
current_collection_datas: Array<Current_Collection_Datas>;
|
|
7312
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.current_collection_datas" */
|
|
7313
|
-
current_collection_datas_stream: Array<Current_Collection_Datas>;
|
|
7314
4829
|
/** fetch data from the table: "current_collection_ownership_v2_view" */
|
|
7315
4830
|
current_collection_ownership_v2_view: Array<Current_Collection_Ownership_V2_View>;
|
|
7316
4831
|
/** fetch aggregated fields from the table: "current_collection_ownership_v2_view" */
|
|
@@ -7367,22 +4882,12 @@ export type Subscription_Root = {
|
|
|
7367
4882
|
current_table_items_by_pk?: Maybe<Current_Table_Items>;
|
|
7368
4883
|
/** fetch data from the table in a streaming manner: "current_table_items" */
|
|
7369
4884
|
current_table_items_stream: Array<Current_Table_Items>;
|
|
7370
|
-
/** fetch data from the table: "legacy_migration_v1.current_token_datas" */
|
|
7371
|
-
current_token_datas: Array<Current_Token_Datas>;
|
|
7372
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.current_token_datas" */
|
|
7373
|
-
current_token_datas_stream: Array<Current_Token_Datas>;
|
|
7374
4885
|
/** fetch data from the table: "current_token_datas_v2" */
|
|
7375
4886
|
current_token_datas_v2: Array<Current_Token_Datas_V2>;
|
|
7376
4887
|
/** fetch data from the table: "current_token_datas_v2" using primary key columns */
|
|
7377
4888
|
current_token_datas_v2_by_pk?: Maybe<Current_Token_Datas_V2>;
|
|
7378
4889
|
/** fetch data from the table in a streaming manner: "current_token_datas_v2" */
|
|
7379
4890
|
current_token_datas_v2_stream: Array<Current_Token_Datas_V2>;
|
|
7380
|
-
/** fetch data from the table: "legacy_migration_v1.current_token_ownerships" */
|
|
7381
|
-
current_token_ownerships: Array<Current_Token_Ownerships>;
|
|
7382
|
-
/** fetch aggregated fields from the table: "legacy_migration_v1.current_token_ownerships" */
|
|
7383
|
-
current_token_ownerships_aggregate: Current_Token_Ownerships_Aggregate;
|
|
7384
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.current_token_ownerships" */
|
|
7385
|
-
current_token_ownerships_stream: Array<Current_Token_Ownerships>;
|
|
7386
4891
|
/** fetch data from the table: "current_token_ownerships_v2" */
|
|
7387
4892
|
current_token_ownerships_v2: Array<Current_Token_Ownerships_V2>;
|
|
7388
4893
|
/** fetch aggregated fields from the table: "current_token_ownerships_v2" */
|
|
@@ -7429,12 +4934,6 @@ export type Subscription_Root = {
|
|
|
7429
4934
|
delegator_distinct_pool_aggregate: Delegator_Distinct_Pool_Aggregate;
|
|
7430
4935
|
/** fetch data from the table in a streaming manner: "delegator_distinct_pool" */
|
|
7431
4936
|
delegator_distinct_pool_stream: Array<Delegator_Distinct_Pool>;
|
|
7432
|
-
/** fetch data from the table: "events" */
|
|
7433
|
-
events: Array<Events>;
|
|
7434
|
-
/** fetch data from the table: "events" using primary key columns */
|
|
7435
|
-
events_by_pk?: Maybe<Events>;
|
|
7436
|
-
/** fetch data from the table in a streaming manner: "events" */
|
|
7437
|
-
events_stream: Array<Events>;
|
|
7438
4937
|
/** An array relationship */
|
|
7439
4938
|
fungible_asset_activities: Array<Fungible_Asset_Activities>;
|
|
7440
4939
|
/** fetch data from the table: "fungible_asset_activities" using primary key columns */
|
|
@@ -7459,12 +4958,6 @@ export type Subscription_Root = {
|
|
|
7459
4958
|
ledger_infos_by_pk?: Maybe<Ledger_Infos>;
|
|
7460
4959
|
/** fetch data from the table in a streaming manner: "processor_metadata.ledger_infos" */
|
|
7461
4960
|
ledger_infos_stream: Array<Ledger_Infos>;
|
|
7462
|
-
/** fetch data from the table: "legacy_migration_v1.move_resources" */
|
|
7463
|
-
move_resources: Array<Move_Resources>;
|
|
7464
|
-
/** fetch aggregated fields from the table: "legacy_migration_v1.move_resources" */
|
|
7465
|
-
move_resources_aggregate: Move_Resources_Aggregate;
|
|
7466
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.move_resources" */
|
|
7467
|
-
move_resources_stream: Array<Move_Resources>;
|
|
7468
4961
|
/** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" */
|
|
7469
4962
|
nft_metadata_crawler_parsed_asset_uris: Array<Nft_Metadata_Crawler_Parsed_Asset_Uris>;
|
|
7470
4963
|
/** fetch data from the table: "nft_metadata_crawler.parsed_asset_uris" using primary key columns */
|
|
@@ -7516,12 +5009,6 @@ export type Subscription_Root = {
|
|
|
7516
5009
|
/** fetch data from the table in a streaming manner: "table_metadatas" */
|
|
7517
5010
|
table_metadatas_stream: Array<Table_Metadatas>;
|
|
7518
5011
|
/** An array relationship */
|
|
7519
|
-
token_activities: Array<Token_Activities>;
|
|
7520
|
-
/** An aggregate relationship */
|
|
7521
|
-
token_activities_aggregate: Token_Activities_Aggregate;
|
|
7522
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.token_activities" */
|
|
7523
|
-
token_activities_stream: Array<Token_Activities>;
|
|
7524
|
-
/** An array relationship */
|
|
7525
5012
|
token_activities_v2: Array<Token_Activities_V2>;
|
|
7526
5013
|
/** An aggregate relationship */
|
|
7527
5014
|
token_activities_v2_aggregate: Token_Activities_V2_Aggregate;
|
|
@@ -7529,18 +5016,6 @@ export type Subscription_Root = {
|
|
|
7529
5016
|
token_activities_v2_by_pk?: Maybe<Token_Activities_V2>;
|
|
7530
5017
|
/** fetch data from the table in a streaming manner: "token_activities_v2" */
|
|
7531
5018
|
token_activities_v2_stream: Array<Token_Activities_V2>;
|
|
7532
|
-
/** fetch data from the table: "legacy_migration_v1.token_datas" */
|
|
7533
|
-
token_datas: Array<Token_Datas>;
|
|
7534
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.token_datas" */
|
|
7535
|
-
token_datas_stream: Array<Token_Datas>;
|
|
7536
|
-
/** fetch data from the table: "legacy_migration_v1.token_ownerships" */
|
|
7537
|
-
token_ownerships: Array<Token_Ownerships>;
|
|
7538
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.token_ownerships" */
|
|
7539
|
-
token_ownerships_stream: Array<Token_Ownerships>;
|
|
7540
|
-
/** fetch data from the table: "legacy_migration_v1.tokens" */
|
|
7541
|
-
tokens: Array<Tokens>;
|
|
7542
|
-
/** fetch data from the table in a streaming manner: "legacy_migration_v1.tokens" */
|
|
7543
|
-
tokens_stream: Array<Tokens>;
|
|
7544
5019
|
/** fetch data from the table: "user_transactions" */
|
|
7545
5020
|
user_transactions: Array<User_Transactions>;
|
|
7546
5021
|
/** fetch data from the table: "user_transactions" using primary key columns */
|
|
@@ -7571,56 +5046,6 @@ export type Subscription_RootAccount_Transactions_StreamArgs = {
|
|
|
7571
5046
|
cursor: Array<InputMaybe<Account_Transactions_Stream_Cursor_Input>>;
|
|
7572
5047
|
where?: InputMaybe<Account_Transactions_Bool_Exp>;
|
|
7573
5048
|
};
|
|
7574
|
-
export type Subscription_RootAddress_Events_SummaryArgs = {
|
|
7575
|
-
distinct_on?: InputMaybe<Array<Address_Events_Summary_Select_Column>>;
|
|
7576
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7577
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7578
|
-
order_by?: InputMaybe<Array<Address_Events_Summary_Order_By>>;
|
|
7579
|
-
where?: InputMaybe<Address_Events_Summary_Bool_Exp>;
|
|
7580
|
-
};
|
|
7581
|
-
export type Subscription_RootAddress_Events_Summary_StreamArgs = {
|
|
7582
|
-
batch_size: Scalars['Int']['input'];
|
|
7583
|
-
cursor: Array<InputMaybe<Address_Events_Summary_Stream_Cursor_Input>>;
|
|
7584
|
-
where?: InputMaybe<Address_Events_Summary_Bool_Exp>;
|
|
7585
|
-
};
|
|
7586
|
-
export type Subscription_RootAddress_Version_From_EventsArgs = {
|
|
7587
|
-
distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;
|
|
7588
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7589
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7590
|
-
order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;
|
|
7591
|
-
where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;
|
|
7592
|
-
};
|
|
7593
|
-
export type Subscription_RootAddress_Version_From_Events_AggregateArgs = {
|
|
7594
|
-
distinct_on?: InputMaybe<Array<Address_Version_From_Events_Select_Column>>;
|
|
7595
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7596
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7597
|
-
order_by?: InputMaybe<Array<Address_Version_From_Events_Order_By>>;
|
|
7598
|
-
where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;
|
|
7599
|
-
};
|
|
7600
|
-
export type Subscription_RootAddress_Version_From_Events_StreamArgs = {
|
|
7601
|
-
batch_size: Scalars['Int']['input'];
|
|
7602
|
-
cursor: Array<InputMaybe<Address_Version_From_Events_Stream_Cursor_Input>>;
|
|
7603
|
-
where?: InputMaybe<Address_Version_From_Events_Bool_Exp>;
|
|
7604
|
-
};
|
|
7605
|
-
export type Subscription_RootAddress_Version_From_Move_ResourcesArgs = {
|
|
7606
|
-
distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;
|
|
7607
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7608
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7609
|
-
order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;
|
|
7610
|
-
where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;
|
|
7611
|
-
};
|
|
7612
|
-
export type Subscription_RootAddress_Version_From_Move_Resources_AggregateArgs = {
|
|
7613
|
-
distinct_on?: InputMaybe<Array<Address_Version_From_Move_Resources_Select_Column>>;
|
|
7614
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7615
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7616
|
-
order_by?: InputMaybe<Array<Address_Version_From_Move_Resources_Order_By>>;
|
|
7617
|
-
where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;
|
|
7618
|
-
};
|
|
7619
|
-
export type Subscription_RootAddress_Version_From_Move_Resources_StreamArgs = {
|
|
7620
|
-
batch_size: Scalars['Int']['input'];
|
|
7621
|
-
cursor: Array<InputMaybe<Address_Version_From_Move_Resources_Stream_Cursor_Input>>;
|
|
7622
|
-
where?: InputMaybe<Address_Version_From_Move_Resources_Bool_Exp>;
|
|
7623
|
-
};
|
|
7624
5049
|
export type Subscription_RootAuth_Key_Account_AddressesArgs = {
|
|
7625
5050
|
distinct_on?: InputMaybe<Array<Auth_Key_Account_Addresses_Select_Column>>;
|
|
7626
5051
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7658,89 +5083,6 @@ export type Subscription_RootBlock_Metadata_Transactions_StreamArgs = {
|
|
|
7658
5083
|
cursor: Array<InputMaybe<Block_Metadata_Transactions_Stream_Cursor_Input>>;
|
|
7659
5084
|
where?: InputMaybe<Block_Metadata_Transactions_Bool_Exp>;
|
|
7660
5085
|
};
|
|
7661
|
-
export type Subscription_RootCoin_ActivitiesArgs = {
|
|
7662
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
7663
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7664
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7665
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
7666
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
7667
|
-
};
|
|
7668
|
-
export type Subscription_RootCoin_Activities_AggregateArgs = {
|
|
7669
|
-
distinct_on?: InputMaybe<Array<Coin_Activities_Select_Column>>;
|
|
7670
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7671
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7672
|
-
order_by?: InputMaybe<Array<Coin_Activities_Order_By>>;
|
|
7673
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
7674
|
-
};
|
|
7675
|
-
export type Subscription_RootCoin_Activities_StreamArgs = {
|
|
7676
|
-
batch_size: Scalars['Int']['input'];
|
|
7677
|
-
cursor: Array<InputMaybe<Coin_Activities_Stream_Cursor_Input>>;
|
|
7678
|
-
where?: InputMaybe<Coin_Activities_Bool_Exp>;
|
|
7679
|
-
};
|
|
7680
|
-
export type Subscription_RootCoin_BalancesArgs = {
|
|
7681
|
-
distinct_on?: InputMaybe<Array<Coin_Balances_Select_Column>>;
|
|
7682
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7683
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7684
|
-
order_by?: InputMaybe<Array<Coin_Balances_Order_By>>;
|
|
7685
|
-
where?: InputMaybe<Coin_Balances_Bool_Exp>;
|
|
7686
|
-
};
|
|
7687
|
-
export type Subscription_RootCoin_Balances_StreamArgs = {
|
|
7688
|
-
batch_size: Scalars['Int']['input'];
|
|
7689
|
-
cursor: Array<InputMaybe<Coin_Balances_Stream_Cursor_Input>>;
|
|
7690
|
-
where?: InputMaybe<Coin_Balances_Bool_Exp>;
|
|
7691
|
-
};
|
|
7692
|
-
export type Subscription_RootCoin_InfosArgs = {
|
|
7693
|
-
distinct_on?: InputMaybe<Array<Coin_Infos_Select_Column>>;
|
|
7694
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7695
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7696
|
-
order_by?: InputMaybe<Array<Coin_Infos_Order_By>>;
|
|
7697
|
-
where?: InputMaybe<Coin_Infos_Bool_Exp>;
|
|
7698
|
-
};
|
|
7699
|
-
export type Subscription_RootCoin_Infos_StreamArgs = {
|
|
7700
|
-
batch_size: Scalars['Int']['input'];
|
|
7701
|
-
cursor: Array<InputMaybe<Coin_Infos_Stream_Cursor_Input>>;
|
|
7702
|
-
where?: InputMaybe<Coin_Infos_Bool_Exp>;
|
|
7703
|
-
};
|
|
7704
|
-
export type Subscription_RootCoin_SupplyArgs = {
|
|
7705
|
-
distinct_on?: InputMaybe<Array<Coin_Supply_Select_Column>>;
|
|
7706
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7707
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7708
|
-
order_by?: InputMaybe<Array<Coin_Supply_Order_By>>;
|
|
7709
|
-
where?: InputMaybe<Coin_Supply_Bool_Exp>;
|
|
7710
|
-
};
|
|
7711
|
-
export type Subscription_RootCoin_Supply_By_PkArgs = {
|
|
7712
|
-
coin_type_hash: Scalars['String']['input'];
|
|
7713
|
-
transaction_version: Scalars['bigint']['input'];
|
|
7714
|
-
};
|
|
7715
|
-
export type Subscription_RootCoin_Supply_StreamArgs = {
|
|
7716
|
-
batch_size: Scalars['Int']['input'];
|
|
7717
|
-
cursor: Array<InputMaybe<Coin_Supply_Stream_Cursor_Input>>;
|
|
7718
|
-
where?: InputMaybe<Coin_Supply_Bool_Exp>;
|
|
7719
|
-
};
|
|
7720
|
-
export type Subscription_RootCollection_DatasArgs = {
|
|
7721
|
-
distinct_on?: InputMaybe<Array<Collection_Datas_Select_Column>>;
|
|
7722
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7723
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7724
|
-
order_by?: InputMaybe<Array<Collection_Datas_Order_By>>;
|
|
7725
|
-
where?: InputMaybe<Collection_Datas_Bool_Exp>;
|
|
7726
|
-
};
|
|
7727
|
-
export type Subscription_RootCollection_Datas_StreamArgs = {
|
|
7728
|
-
batch_size: Scalars['Int']['input'];
|
|
7729
|
-
cursor: Array<InputMaybe<Collection_Datas_Stream_Cursor_Input>>;
|
|
7730
|
-
where?: InputMaybe<Collection_Datas_Bool_Exp>;
|
|
7731
|
-
};
|
|
7732
|
-
export type Subscription_RootCurrent_Ans_LookupArgs = {
|
|
7733
|
-
distinct_on?: InputMaybe<Array<Current_Ans_Lookup_Select_Column>>;
|
|
7734
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7735
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7736
|
-
order_by?: InputMaybe<Array<Current_Ans_Lookup_Order_By>>;
|
|
7737
|
-
where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;
|
|
7738
|
-
};
|
|
7739
|
-
export type Subscription_RootCurrent_Ans_Lookup_StreamArgs = {
|
|
7740
|
-
batch_size: Scalars['Int']['input'];
|
|
7741
|
-
cursor: Array<InputMaybe<Current_Ans_Lookup_Stream_Cursor_Input>>;
|
|
7742
|
-
where?: InputMaybe<Current_Ans_Lookup_Bool_Exp>;
|
|
7743
|
-
};
|
|
7744
5086
|
export type Subscription_RootCurrent_Ans_Lookup_V2Args = {
|
|
7745
5087
|
distinct_on?: InputMaybe<Array<Current_Ans_Lookup_V2_Select_Column>>;
|
|
7746
5088
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7777,30 +5119,6 @@ export type Subscription_RootCurrent_Aptos_Names_StreamArgs = {
|
|
|
7777
5119
|
cursor: Array<InputMaybe<Current_Aptos_Names_Stream_Cursor_Input>>;
|
|
7778
5120
|
where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
7779
5121
|
};
|
|
7780
|
-
export type Subscription_RootCurrent_Coin_BalancesArgs = {
|
|
7781
|
-
distinct_on?: InputMaybe<Array<Current_Coin_Balances_Select_Column>>;
|
|
7782
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7783
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7784
|
-
order_by?: InputMaybe<Array<Current_Coin_Balances_Order_By>>;
|
|
7785
|
-
where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;
|
|
7786
|
-
};
|
|
7787
|
-
export type Subscription_RootCurrent_Coin_Balances_StreamArgs = {
|
|
7788
|
-
batch_size: Scalars['Int']['input'];
|
|
7789
|
-
cursor: Array<InputMaybe<Current_Coin_Balances_Stream_Cursor_Input>>;
|
|
7790
|
-
where?: InputMaybe<Current_Coin_Balances_Bool_Exp>;
|
|
7791
|
-
};
|
|
7792
|
-
export type Subscription_RootCurrent_Collection_DatasArgs = {
|
|
7793
|
-
distinct_on?: InputMaybe<Array<Current_Collection_Datas_Select_Column>>;
|
|
7794
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7795
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7796
|
-
order_by?: InputMaybe<Array<Current_Collection_Datas_Order_By>>;
|
|
7797
|
-
where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;
|
|
7798
|
-
};
|
|
7799
|
-
export type Subscription_RootCurrent_Collection_Datas_StreamArgs = {
|
|
7800
|
-
batch_size: Scalars['Int']['input'];
|
|
7801
|
-
cursor: Array<InputMaybe<Current_Collection_Datas_Stream_Cursor_Input>>;
|
|
7802
|
-
where?: InputMaybe<Current_Collection_Datas_Bool_Exp>;
|
|
7803
|
-
};
|
|
7804
5122
|
export type Subscription_RootCurrent_Collection_Ownership_V2_ViewArgs = {
|
|
7805
5123
|
distinct_on?: InputMaybe<Array<Current_Collection_Ownership_V2_View_Select_Column>>;
|
|
7806
5124
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7952,18 +5270,6 @@ export type Subscription_RootCurrent_Table_Items_StreamArgs = {
|
|
|
7952
5270
|
cursor: Array<InputMaybe<Current_Table_Items_Stream_Cursor_Input>>;
|
|
7953
5271
|
where?: InputMaybe<Current_Table_Items_Bool_Exp>;
|
|
7954
5272
|
};
|
|
7955
|
-
export type Subscription_RootCurrent_Token_DatasArgs = {
|
|
7956
|
-
distinct_on?: InputMaybe<Array<Current_Token_Datas_Select_Column>>;
|
|
7957
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7958
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7959
|
-
order_by?: InputMaybe<Array<Current_Token_Datas_Order_By>>;
|
|
7960
|
-
where?: InputMaybe<Current_Token_Datas_Bool_Exp>;
|
|
7961
|
-
};
|
|
7962
|
-
export type Subscription_RootCurrent_Token_Datas_StreamArgs = {
|
|
7963
|
-
batch_size: Scalars['Int']['input'];
|
|
7964
|
-
cursor: Array<InputMaybe<Current_Token_Datas_Stream_Cursor_Input>>;
|
|
7965
|
-
where?: InputMaybe<Current_Token_Datas_Bool_Exp>;
|
|
7966
|
-
};
|
|
7967
5273
|
export type Subscription_RootCurrent_Token_Datas_V2Args = {
|
|
7968
5274
|
distinct_on?: InputMaybe<Array<Current_Token_Datas_V2_Select_Column>>;
|
|
7969
5275
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -7979,25 +5285,6 @@ export type Subscription_RootCurrent_Token_Datas_V2_StreamArgs = {
|
|
|
7979
5285
|
cursor: Array<InputMaybe<Current_Token_Datas_V2_Stream_Cursor_Input>>;
|
|
7980
5286
|
where?: InputMaybe<Current_Token_Datas_V2_Bool_Exp>;
|
|
7981
5287
|
};
|
|
7982
|
-
export type Subscription_RootCurrent_Token_OwnershipsArgs = {
|
|
7983
|
-
distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;
|
|
7984
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7985
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7986
|
-
order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;
|
|
7987
|
-
where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
7988
|
-
};
|
|
7989
|
-
export type Subscription_RootCurrent_Token_Ownerships_AggregateArgs = {
|
|
7990
|
-
distinct_on?: InputMaybe<Array<Current_Token_Ownerships_Select_Column>>;
|
|
7991
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7992
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
7993
|
-
order_by?: InputMaybe<Array<Current_Token_Ownerships_Order_By>>;
|
|
7994
|
-
where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
7995
|
-
};
|
|
7996
|
-
export type Subscription_RootCurrent_Token_Ownerships_StreamArgs = {
|
|
7997
|
-
batch_size: Scalars['Int']['input'];
|
|
7998
|
-
cursor: Array<InputMaybe<Current_Token_Ownerships_Stream_Cursor_Input>>;
|
|
7999
|
-
where?: InputMaybe<Current_Token_Ownerships_Bool_Exp>;
|
|
8000
|
-
};
|
|
8001
5288
|
export type Subscription_RootCurrent_Token_Ownerships_V2Args = {
|
|
8002
5289
|
distinct_on?: InputMaybe<Array<Current_Token_Ownerships_V2_Select_Column>>;
|
|
8003
5290
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8129,22 +5416,6 @@ export type Subscription_RootDelegator_Distinct_Pool_StreamArgs = {
|
|
|
8129
5416
|
cursor: Array<InputMaybe<Delegator_Distinct_Pool_Stream_Cursor_Input>>;
|
|
8130
5417
|
where?: InputMaybe<Delegator_Distinct_Pool_Bool_Exp>;
|
|
8131
5418
|
};
|
|
8132
|
-
export type Subscription_RootEventsArgs = {
|
|
8133
|
-
distinct_on?: InputMaybe<Array<Events_Select_Column>>;
|
|
8134
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8135
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8136
|
-
order_by?: InputMaybe<Array<Events_Order_By>>;
|
|
8137
|
-
where?: InputMaybe<Events_Bool_Exp>;
|
|
8138
|
-
};
|
|
8139
|
-
export type Subscription_RootEvents_By_PkArgs = {
|
|
8140
|
-
event_index: Scalars['bigint']['input'];
|
|
8141
|
-
transaction_version: Scalars['bigint']['input'];
|
|
8142
|
-
};
|
|
8143
|
-
export type Subscription_RootEvents_StreamArgs = {
|
|
8144
|
-
batch_size: Scalars['Int']['input'];
|
|
8145
|
-
cursor: Array<InputMaybe<Events_Stream_Cursor_Input>>;
|
|
8146
|
-
where?: InputMaybe<Events_Bool_Exp>;
|
|
8147
|
-
};
|
|
8148
5419
|
export type Subscription_RootFungible_Asset_ActivitiesArgs = {
|
|
8149
5420
|
distinct_on?: InputMaybe<Array<Fungible_Asset_Activities_Select_Column>>;
|
|
8150
5421
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8206,25 +5477,6 @@ export type Subscription_RootLedger_Infos_StreamArgs = {
|
|
|
8206
5477
|
cursor: Array<InputMaybe<Ledger_Infos_Stream_Cursor_Input>>;
|
|
8207
5478
|
where?: InputMaybe<Ledger_Infos_Bool_Exp>;
|
|
8208
5479
|
};
|
|
8209
|
-
export type Subscription_RootMove_ResourcesArgs = {
|
|
8210
|
-
distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;
|
|
8211
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8212
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8213
|
-
order_by?: InputMaybe<Array<Move_Resources_Order_By>>;
|
|
8214
|
-
where?: InputMaybe<Move_Resources_Bool_Exp>;
|
|
8215
|
-
};
|
|
8216
|
-
export type Subscription_RootMove_Resources_AggregateArgs = {
|
|
8217
|
-
distinct_on?: InputMaybe<Array<Move_Resources_Select_Column>>;
|
|
8218
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8219
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8220
|
-
order_by?: InputMaybe<Array<Move_Resources_Order_By>>;
|
|
8221
|
-
where?: InputMaybe<Move_Resources_Bool_Exp>;
|
|
8222
|
-
};
|
|
8223
|
-
export type Subscription_RootMove_Resources_StreamArgs = {
|
|
8224
|
-
batch_size: Scalars['Int']['input'];
|
|
8225
|
-
cursor: Array<InputMaybe<Move_Resources_Stream_Cursor_Input>>;
|
|
8226
|
-
where?: InputMaybe<Move_Resources_Bool_Exp>;
|
|
8227
|
-
};
|
|
8228
5480
|
export type Subscription_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs = {
|
|
8229
5481
|
distinct_on?: InputMaybe<Array<Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column>>;
|
|
8230
5482
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8361,27 +5613,8 @@ export type Subscription_RootTable_Metadatas_By_PkArgs = {
|
|
|
8361
5613
|
};
|
|
8362
5614
|
export type Subscription_RootTable_Metadatas_StreamArgs = {
|
|
8363
5615
|
batch_size: Scalars['Int']['input'];
|
|
8364
|
-
cursor: Array<InputMaybe<Table_Metadatas_Stream_Cursor_Input>>;
|
|
8365
|
-
where?: InputMaybe<Table_Metadatas_Bool_Exp>;
|
|
8366
|
-
};
|
|
8367
|
-
export type Subscription_RootToken_ActivitiesArgs = {
|
|
8368
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
8369
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8370
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8371
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
8372
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
8373
|
-
};
|
|
8374
|
-
export type Subscription_RootToken_Activities_AggregateArgs = {
|
|
8375
|
-
distinct_on?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
8376
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8377
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8378
|
-
order_by?: InputMaybe<Array<Token_Activities_Order_By>>;
|
|
8379
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
8380
|
-
};
|
|
8381
|
-
export type Subscription_RootToken_Activities_StreamArgs = {
|
|
8382
|
-
batch_size: Scalars['Int']['input'];
|
|
8383
|
-
cursor: Array<InputMaybe<Token_Activities_Stream_Cursor_Input>>;
|
|
8384
|
-
where?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
5616
|
+
cursor: Array<InputMaybe<Table_Metadatas_Stream_Cursor_Input>>;
|
|
5617
|
+
where?: InputMaybe<Table_Metadatas_Bool_Exp>;
|
|
8385
5618
|
};
|
|
8386
5619
|
export type Subscription_RootToken_Activities_V2Args = {
|
|
8387
5620
|
distinct_on?: InputMaybe<Array<Token_Activities_V2_Select_Column>>;
|
|
@@ -8406,42 +5639,6 @@ export type Subscription_RootToken_Activities_V2_StreamArgs = {
|
|
|
8406
5639
|
cursor: Array<InputMaybe<Token_Activities_V2_Stream_Cursor_Input>>;
|
|
8407
5640
|
where?: InputMaybe<Token_Activities_V2_Bool_Exp>;
|
|
8408
5641
|
};
|
|
8409
|
-
export type Subscription_RootToken_DatasArgs = {
|
|
8410
|
-
distinct_on?: InputMaybe<Array<Token_Datas_Select_Column>>;
|
|
8411
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8412
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8413
|
-
order_by?: InputMaybe<Array<Token_Datas_Order_By>>;
|
|
8414
|
-
where?: InputMaybe<Token_Datas_Bool_Exp>;
|
|
8415
|
-
};
|
|
8416
|
-
export type Subscription_RootToken_Datas_StreamArgs = {
|
|
8417
|
-
batch_size: Scalars['Int']['input'];
|
|
8418
|
-
cursor: Array<InputMaybe<Token_Datas_Stream_Cursor_Input>>;
|
|
8419
|
-
where?: InputMaybe<Token_Datas_Bool_Exp>;
|
|
8420
|
-
};
|
|
8421
|
-
export type Subscription_RootToken_OwnershipsArgs = {
|
|
8422
|
-
distinct_on?: InputMaybe<Array<Token_Ownerships_Select_Column>>;
|
|
8423
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8424
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8425
|
-
order_by?: InputMaybe<Array<Token_Ownerships_Order_By>>;
|
|
8426
|
-
where?: InputMaybe<Token_Ownerships_Bool_Exp>;
|
|
8427
|
-
};
|
|
8428
|
-
export type Subscription_RootToken_Ownerships_StreamArgs = {
|
|
8429
|
-
batch_size: Scalars['Int']['input'];
|
|
8430
|
-
cursor: Array<InputMaybe<Token_Ownerships_Stream_Cursor_Input>>;
|
|
8431
|
-
where?: InputMaybe<Token_Ownerships_Bool_Exp>;
|
|
8432
|
-
};
|
|
8433
|
-
export type Subscription_RootTokensArgs = {
|
|
8434
|
-
distinct_on?: InputMaybe<Array<Tokens_Select_Column>>;
|
|
8435
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8436
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8437
|
-
order_by?: InputMaybe<Array<Tokens_Order_By>>;
|
|
8438
|
-
where?: InputMaybe<Tokens_Bool_Exp>;
|
|
8439
|
-
};
|
|
8440
|
-
export type Subscription_RootTokens_StreamArgs = {
|
|
8441
|
-
batch_size: Scalars['Int']['input'];
|
|
8442
|
-
cursor: Array<InputMaybe<Tokens_Stream_Cursor_Input>>;
|
|
8443
|
-
where?: InputMaybe<Tokens_Bool_Exp>;
|
|
8444
|
-
};
|
|
8445
5642
|
export type Subscription_RootUser_TransactionsArgs = {
|
|
8446
5643
|
distinct_on?: InputMaybe<Array<User_Transactions_Select_Column>>;
|
|
8447
5644
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8575,427 +5772,13 @@ export type Table_Metadatas_Stream_Cursor_Value_Input = {
|
|
|
8575
5772
|
export type Timestamp_Comparison_Exp = {
|
|
8576
5773
|
_eq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
8577
5774
|
_gt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
8578
|
-
_gte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
8579
|
-
_in?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
8580
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8581
|
-
_lt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
8582
|
-
_lte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
8583
|
-
_neq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
8584
|
-
_nin?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
8585
|
-
};
|
|
8586
|
-
/** columns and relationships of "legacy_migration_v1.token_activities" */
|
|
8587
|
-
export type Token_Activities = {
|
|
8588
|
-
__typename?: 'token_activities';
|
|
8589
|
-
/** An array relationship */
|
|
8590
|
-
aptos_names_owner: Array<Current_Aptos_Names>;
|
|
8591
|
-
/** An aggregate relationship */
|
|
8592
|
-
aptos_names_owner_aggregate: Current_Aptos_Names_Aggregate;
|
|
8593
|
-
/** An array relationship */
|
|
8594
|
-
aptos_names_to: Array<Current_Aptos_Names>;
|
|
8595
|
-
/** An aggregate relationship */
|
|
8596
|
-
aptos_names_to_aggregate: Current_Aptos_Names_Aggregate;
|
|
8597
|
-
coin_amount?: Maybe<Scalars['String']['output']>;
|
|
8598
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
8599
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
8600
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
8601
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
8602
|
-
/** An object relationship */
|
|
8603
|
-
current_token_data?: Maybe<Current_Token_Datas>;
|
|
8604
|
-
event_account_address?: Maybe<Scalars['String']['output']>;
|
|
8605
|
-
event_creation_number?: Maybe<Scalars['Int']['output']>;
|
|
8606
|
-
event_index?: Maybe<Scalars['bigint']['output']>;
|
|
8607
|
-
event_sequence_number?: Maybe<Scalars['Int']['output']>;
|
|
8608
|
-
from_address?: Maybe<Scalars['String']['output']>;
|
|
8609
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
8610
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
8611
|
-
to_address?: Maybe<Scalars['String']['output']>;
|
|
8612
|
-
token_amount?: Maybe<Scalars['numeric']['output']>;
|
|
8613
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
8614
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
8615
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
8616
|
-
transfer_type?: Maybe<Scalars['String']['output']>;
|
|
8617
|
-
};
|
|
8618
|
-
/** columns and relationships of "legacy_migration_v1.token_activities" */
|
|
8619
|
-
export type Token_ActivitiesAptos_Names_OwnerArgs = {
|
|
8620
|
-
distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;
|
|
8621
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8622
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8623
|
-
order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;
|
|
8624
|
-
where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
8625
|
-
};
|
|
8626
|
-
/** columns and relationships of "legacy_migration_v1.token_activities" */
|
|
8627
|
-
export type Token_ActivitiesAptos_Names_Owner_AggregateArgs = {
|
|
8628
|
-
distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;
|
|
8629
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8630
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8631
|
-
order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;
|
|
8632
|
-
where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
8633
|
-
};
|
|
8634
|
-
/** columns and relationships of "legacy_migration_v1.token_activities" */
|
|
8635
|
-
export type Token_ActivitiesAptos_Names_ToArgs = {
|
|
8636
|
-
distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;
|
|
8637
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8638
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8639
|
-
order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;
|
|
8640
|
-
where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
8641
|
-
};
|
|
8642
|
-
/** columns and relationships of "legacy_migration_v1.token_activities" */
|
|
8643
|
-
export type Token_ActivitiesAptos_Names_To_AggregateArgs = {
|
|
8644
|
-
distinct_on?: InputMaybe<Array<Current_Aptos_Names_Select_Column>>;
|
|
8645
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8646
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
8647
|
-
order_by?: InputMaybe<Array<Current_Aptos_Names_Order_By>>;
|
|
8648
|
-
where?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
8649
|
-
};
|
|
8650
|
-
/** aggregated selection of "legacy_migration_v1.token_activities" */
|
|
8651
|
-
export type Token_Activities_Aggregate = {
|
|
8652
|
-
__typename?: 'token_activities_aggregate';
|
|
8653
|
-
aggregate?: Maybe<Token_Activities_Aggregate_Fields>;
|
|
8654
|
-
nodes: Array<Token_Activities>;
|
|
8655
|
-
};
|
|
8656
|
-
export type Token_Activities_Aggregate_Bool_Exp = {
|
|
8657
|
-
count?: InputMaybe<Token_Activities_Aggregate_Bool_Exp_Count>;
|
|
8658
|
-
};
|
|
8659
|
-
export type Token_Activities_Aggregate_Bool_Exp_Count = {
|
|
8660
|
-
arguments?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
8661
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8662
|
-
filter?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
8663
|
-
predicate: Int_Comparison_Exp;
|
|
8664
|
-
};
|
|
8665
|
-
/** aggregate fields of "legacy_migration_v1.token_activities" */
|
|
8666
|
-
export type Token_Activities_Aggregate_Fields = {
|
|
8667
|
-
__typename?: 'token_activities_aggregate_fields';
|
|
8668
|
-
avg?: Maybe<Token_Activities_Avg_Fields>;
|
|
8669
|
-
count: Scalars['Int']['output'];
|
|
8670
|
-
max?: Maybe<Token_Activities_Max_Fields>;
|
|
8671
|
-
min?: Maybe<Token_Activities_Min_Fields>;
|
|
8672
|
-
stddev?: Maybe<Token_Activities_Stddev_Fields>;
|
|
8673
|
-
stddev_pop?: Maybe<Token_Activities_Stddev_Pop_Fields>;
|
|
8674
|
-
stddev_samp?: Maybe<Token_Activities_Stddev_Samp_Fields>;
|
|
8675
|
-
sum?: Maybe<Token_Activities_Sum_Fields>;
|
|
8676
|
-
var_pop?: Maybe<Token_Activities_Var_Pop_Fields>;
|
|
8677
|
-
var_samp?: Maybe<Token_Activities_Var_Samp_Fields>;
|
|
8678
|
-
variance?: Maybe<Token_Activities_Variance_Fields>;
|
|
8679
|
-
};
|
|
8680
|
-
/** aggregate fields of "legacy_migration_v1.token_activities" */
|
|
8681
|
-
export type Token_Activities_Aggregate_FieldsCountArgs = {
|
|
8682
|
-
columns?: InputMaybe<Array<Token_Activities_Select_Column>>;
|
|
8683
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8684
|
-
};
|
|
8685
|
-
/** order by aggregate values of table "legacy_migration_v1.token_activities" */
|
|
8686
|
-
export type Token_Activities_Aggregate_Order_By = {
|
|
8687
|
-
avg?: InputMaybe<Token_Activities_Avg_Order_By>;
|
|
8688
|
-
count?: InputMaybe<Order_By>;
|
|
8689
|
-
max?: InputMaybe<Token_Activities_Max_Order_By>;
|
|
8690
|
-
min?: InputMaybe<Token_Activities_Min_Order_By>;
|
|
8691
|
-
stddev?: InputMaybe<Token_Activities_Stddev_Order_By>;
|
|
8692
|
-
stddev_pop?: InputMaybe<Token_Activities_Stddev_Pop_Order_By>;
|
|
8693
|
-
stddev_samp?: InputMaybe<Token_Activities_Stddev_Samp_Order_By>;
|
|
8694
|
-
sum?: InputMaybe<Token_Activities_Sum_Order_By>;
|
|
8695
|
-
var_pop?: InputMaybe<Token_Activities_Var_Pop_Order_By>;
|
|
8696
|
-
var_samp?: InputMaybe<Token_Activities_Var_Samp_Order_By>;
|
|
8697
|
-
variance?: InputMaybe<Token_Activities_Variance_Order_By>;
|
|
8698
|
-
};
|
|
8699
|
-
/** aggregate avg on columns */
|
|
8700
|
-
export type Token_Activities_Avg_Fields = {
|
|
8701
|
-
__typename?: 'token_activities_avg_fields';
|
|
8702
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
8703
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
8704
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
8705
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
8706
|
-
token_amount?: Maybe<Scalars['Float']['output']>;
|
|
8707
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
8708
|
-
};
|
|
8709
|
-
/** order by avg() on columns of table "legacy_migration_v1.token_activities" */
|
|
8710
|
-
export type Token_Activities_Avg_Order_By = {
|
|
8711
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
8712
|
-
event_index?: InputMaybe<Order_By>;
|
|
8713
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
8714
|
-
property_version?: InputMaybe<Order_By>;
|
|
8715
|
-
token_amount?: InputMaybe<Order_By>;
|
|
8716
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
8717
|
-
};
|
|
8718
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.token_activities". All fields are combined with a logical 'AND'. */
|
|
8719
|
-
export type Token_Activities_Bool_Exp = {
|
|
8720
|
-
_and?: InputMaybe<Array<Token_Activities_Bool_Exp>>;
|
|
8721
|
-
_not?: InputMaybe<Token_Activities_Bool_Exp>;
|
|
8722
|
-
_or?: InputMaybe<Array<Token_Activities_Bool_Exp>>;
|
|
8723
|
-
aptos_names_owner?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
8724
|
-
aptos_names_owner_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;
|
|
8725
|
-
aptos_names_to?: InputMaybe<Current_Aptos_Names_Bool_Exp>;
|
|
8726
|
-
aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Bool_Exp>;
|
|
8727
|
-
coin_amount?: InputMaybe<String_Comparison_Exp>;
|
|
8728
|
-
coin_type?: InputMaybe<String_Comparison_Exp>;
|
|
8729
|
-
collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
8730
|
-
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
8731
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
8732
|
-
current_token_data?: InputMaybe<Current_Token_Datas_Bool_Exp>;
|
|
8733
|
-
event_account_address?: InputMaybe<String_Comparison_Exp>;
|
|
8734
|
-
event_creation_number?: InputMaybe<Int_Comparison_Exp>;
|
|
8735
|
-
event_index?: InputMaybe<Bigint_Comparison_Exp>;
|
|
8736
|
-
event_sequence_number?: InputMaybe<Int_Comparison_Exp>;
|
|
8737
|
-
from_address?: InputMaybe<String_Comparison_Exp>;
|
|
8738
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
8739
|
-
property_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
8740
|
-
to_address?: InputMaybe<String_Comparison_Exp>;
|
|
8741
|
-
token_amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
8742
|
-
token_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
8743
|
-
transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
8744
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
8745
|
-
transfer_type?: InputMaybe<String_Comparison_Exp>;
|
|
8746
|
-
};
|
|
8747
|
-
/** aggregate max on columns */
|
|
8748
|
-
export type Token_Activities_Max_Fields = {
|
|
8749
|
-
__typename?: 'token_activities_max_fields';
|
|
8750
|
-
coin_amount?: Maybe<Scalars['String']['output']>;
|
|
8751
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
8752
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
8753
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
8754
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
8755
|
-
event_account_address?: Maybe<Scalars['String']['output']>;
|
|
8756
|
-
event_creation_number?: Maybe<Scalars['Int']['output']>;
|
|
8757
|
-
event_index?: Maybe<Scalars['bigint']['output']>;
|
|
8758
|
-
event_sequence_number?: Maybe<Scalars['Int']['output']>;
|
|
8759
|
-
from_address?: Maybe<Scalars['String']['output']>;
|
|
8760
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
8761
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
8762
|
-
to_address?: Maybe<Scalars['String']['output']>;
|
|
8763
|
-
token_amount?: Maybe<Scalars['numeric']['output']>;
|
|
8764
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
8765
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
8766
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
8767
|
-
transfer_type?: Maybe<Scalars['String']['output']>;
|
|
8768
|
-
};
|
|
8769
|
-
/** order by max() on columns of table "legacy_migration_v1.token_activities" */
|
|
8770
|
-
export type Token_Activities_Max_Order_By = {
|
|
8771
|
-
coin_amount?: InputMaybe<Order_By>;
|
|
8772
|
-
coin_type?: InputMaybe<Order_By>;
|
|
8773
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
8774
|
-
collection_name?: InputMaybe<Order_By>;
|
|
8775
|
-
creator_address?: InputMaybe<Order_By>;
|
|
8776
|
-
event_account_address?: InputMaybe<Order_By>;
|
|
8777
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
8778
|
-
event_index?: InputMaybe<Order_By>;
|
|
8779
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
8780
|
-
from_address?: InputMaybe<Order_By>;
|
|
8781
|
-
name?: InputMaybe<Order_By>;
|
|
8782
|
-
property_version?: InputMaybe<Order_By>;
|
|
8783
|
-
to_address?: InputMaybe<Order_By>;
|
|
8784
|
-
token_amount?: InputMaybe<Order_By>;
|
|
8785
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
8786
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
8787
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
8788
|
-
transfer_type?: InputMaybe<Order_By>;
|
|
8789
|
-
};
|
|
8790
|
-
/** aggregate min on columns */
|
|
8791
|
-
export type Token_Activities_Min_Fields = {
|
|
8792
|
-
__typename?: 'token_activities_min_fields';
|
|
8793
|
-
coin_amount?: Maybe<Scalars['String']['output']>;
|
|
8794
|
-
coin_type?: Maybe<Scalars['String']['output']>;
|
|
8795
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
8796
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
8797
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
8798
|
-
event_account_address?: Maybe<Scalars['String']['output']>;
|
|
8799
|
-
event_creation_number?: Maybe<Scalars['Int']['output']>;
|
|
8800
|
-
event_index?: Maybe<Scalars['bigint']['output']>;
|
|
8801
|
-
event_sequence_number?: Maybe<Scalars['Int']['output']>;
|
|
8802
|
-
from_address?: Maybe<Scalars['String']['output']>;
|
|
8803
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
8804
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
8805
|
-
to_address?: Maybe<Scalars['String']['output']>;
|
|
8806
|
-
token_amount?: Maybe<Scalars['numeric']['output']>;
|
|
8807
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
8808
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
8809
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
8810
|
-
transfer_type?: Maybe<Scalars['String']['output']>;
|
|
8811
|
-
};
|
|
8812
|
-
/** order by min() on columns of table "legacy_migration_v1.token_activities" */
|
|
8813
|
-
export type Token_Activities_Min_Order_By = {
|
|
8814
|
-
coin_amount?: InputMaybe<Order_By>;
|
|
8815
|
-
coin_type?: InputMaybe<Order_By>;
|
|
8816
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
8817
|
-
collection_name?: InputMaybe<Order_By>;
|
|
8818
|
-
creator_address?: InputMaybe<Order_By>;
|
|
8819
|
-
event_account_address?: InputMaybe<Order_By>;
|
|
8820
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
8821
|
-
event_index?: InputMaybe<Order_By>;
|
|
8822
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
8823
|
-
from_address?: InputMaybe<Order_By>;
|
|
8824
|
-
name?: InputMaybe<Order_By>;
|
|
8825
|
-
property_version?: InputMaybe<Order_By>;
|
|
8826
|
-
to_address?: InputMaybe<Order_By>;
|
|
8827
|
-
token_amount?: InputMaybe<Order_By>;
|
|
8828
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
8829
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
8830
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
8831
|
-
transfer_type?: InputMaybe<Order_By>;
|
|
8832
|
-
};
|
|
8833
|
-
/** Ordering options when selecting data from "legacy_migration_v1.token_activities". */
|
|
8834
|
-
export type Token_Activities_Order_By = {
|
|
8835
|
-
aptos_names_owner_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;
|
|
8836
|
-
aptos_names_to_aggregate?: InputMaybe<Current_Aptos_Names_Aggregate_Order_By>;
|
|
8837
|
-
coin_amount?: InputMaybe<Order_By>;
|
|
8838
|
-
coin_type?: InputMaybe<Order_By>;
|
|
8839
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
8840
|
-
collection_name?: InputMaybe<Order_By>;
|
|
8841
|
-
creator_address?: InputMaybe<Order_By>;
|
|
8842
|
-
current_token_data?: InputMaybe<Current_Token_Datas_Order_By>;
|
|
8843
|
-
event_account_address?: InputMaybe<Order_By>;
|
|
8844
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
8845
|
-
event_index?: InputMaybe<Order_By>;
|
|
8846
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
8847
|
-
from_address?: InputMaybe<Order_By>;
|
|
8848
|
-
name?: InputMaybe<Order_By>;
|
|
8849
|
-
property_version?: InputMaybe<Order_By>;
|
|
8850
|
-
to_address?: InputMaybe<Order_By>;
|
|
8851
|
-
token_amount?: InputMaybe<Order_By>;
|
|
8852
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
8853
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
8854
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
8855
|
-
transfer_type?: InputMaybe<Order_By>;
|
|
8856
|
-
};
|
|
8857
|
-
/** select columns of table "legacy_migration_v1.token_activities" */
|
|
8858
|
-
export declare enum Token_Activities_Select_Column {
|
|
8859
|
-
/** column name */
|
|
8860
|
-
CoinAmount = "coin_amount",
|
|
8861
|
-
/** column name */
|
|
8862
|
-
CoinType = "coin_type",
|
|
8863
|
-
/** column name */
|
|
8864
|
-
CollectionDataIdHash = "collection_data_id_hash",
|
|
8865
|
-
/** column name */
|
|
8866
|
-
CollectionName = "collection_name",
|
|
8867
|
-
/** column name */
|
|
8868
|
-
CreatorAddress = "creator_address",
|
|
8869
|
-
/** column name */
|
|
8870
|
-
EventAccountAddress = "event_account_address",
|
|
8871
|
-
/** column name */
|
|
8872
|
-
EventCreationNumber = "event_creation_number",
|
|
8873
|
-
/** column name */
|
|
8874
|
-
EventIndex = "event_index",
|
|
8875
|
-
/** column name */
|
|
8876
|
-
EventSequenceNumber = "event_sequence_number",
|
|
8877
|
-
/** column name */
|
|
8878
|
-
FromAddress = "from_address",
|
|
8879
|
-
/** column name */
|
|
8880
|
-
Name = "name",
|
|
8881
|
-
/** column name */
|
|
8882
|
-
PropertyVersion = "property_version",
|
|
8883
|
-
/** column name */
|
|
8884
|
-
ToAddress = "to_address",
|
|
8885
|
-
/** column name */
|
|
8886
|
-
TokenAmount = "token_amount",
|
|
8887
|
-
/** column name */
|
|
8888
|
-
TokenDataIdHash = "token_data_id_hash",
|
|
8889
|
-
/** column name */
|
|
8890
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
8891
|
-
/** column name */
|
|
8892
|
-
TransactionVersion = "transaction_version",
|
|
8893
|
-
/** column name */
|
|
8894
|
-
TransferType = "transfer_type"
|
|
8895
|
-
}
|
|
8896
|
-
/** aggregate stddev on columns */
|
|
8897
|
-
export type Token_Activities_Stddev_Fields = {
|
|
8898
|
-
__typename?: 'token_activities_stddev_fields';
|
|
8899
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
8900
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
8901
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
8902
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
8903
|
-
token_amount?: Maybe<Scalars['Float']['output']>;
|
|
8904
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
8905
|
-
};
|
|
8906
|
-
/** order by stddev() on columns of table "legacy_migration_v1.token_activities" */
|
|
8907
|
-
export type Token_Activities_Stddev_Order_By = {
|
|
8908
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
8909
|
-
event_index?: InputMaybe<Order_By>;
|
|
8910
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
8911
|
-
property_version?: InputMaybe<Order_By>;
|
|
8912
|
-
token_amount?: InputMaybe<Order_By>;
|
|
8913
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
8914
|
-
};
|
|
8915
|
-
/** aggregate stddev_pop on columns */
|
|
8916
|
-
export type Token_Activities_Stddev_Pop_Fields = {
|
|
8917
|
-
__typename?: 'token_activities_stddev_pop_fields';
|
|
8918
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
8919
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
8920
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
8921
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
8922
|
-
token_amount?: Maybe<Scalars['Float']['output']>;
|
|
8923
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
8924
|
-
};
|
|
8925
|
-
/** order by stddev_pop() on columns of table "legacy_migration_v1.token_activities" */
|
|
8926
|
-
export type Token_Activities_Stddev_Pop_Order_By = {
|
|
8927
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
8928
|
-
event_index?: InputMaybe<Order_By>;
|
|
8929
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
8930
|
-
property_version?: InputMaybe<Order_By>;
|
|
8931
|
-
token_amount?: InputMaybe<Order_By>;
|
|
8932
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
8933
|
-
};
|
|
8934
|
-
/** aggregate stddev_samp on columns */
|
|
8935
|
-
export type Token_Activities_Stddev_Samp_Fields = {
|
|
8936
|
-
__typename?: 'token_activities_stddev_samp_fields';
|
|
8937
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
8938
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
8939
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
8940
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
8941
|
-
token_amount?: Maybe<Scalars['Float']['output']>;
|
|
8942
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
8943
|
-
};
|
|
8944
|
-
/** order by stddev_samp() on columns of table "legacy_migration_v1.token_activities" */
|
|
8945
|
-
export type Token_Activities_Stddev_Samp_Order_By = {
|
|
8946
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
8947
|
-
event_index?: InputMaybe<Order_By>;
|
|
8948
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
8949
|
-
property_version?: InputMaybe<Order_By>;
|
|
8950
|
-
token_amount?: InputMaybe<Order_By>;
|
|
8951
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
8952
|
-
};
|
|
8953
|
-
/** Streaming cursor of the table "token_activities" */
|
|
8954
|
-
export type Token_Activities_Stream_Cursor_Input = {
|
|
8955
|
-
/** Stream column input with initial value */
|
|
8956
|
-
initial_value: Token_Activities_Stream_Cursor_Value_Input;
|
|
8957
|
-
/** cursor ordering */
|
|
8958
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
8959
|
-
};
|
|
8960
|
-
/** Initial value of the column from where the streaming should start */
|
|
8961
|
-
export type Token_Activities_Stream_Cursor_Value_Input = {
|
|
8962
|
-
coin_amount?: InputMaybe<Scalars['String']['input']>;
|
|
8963
|
-
coin_type?: InputMaybe<Scalars['String']['input']>;
|
|
8964
|
-
collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
8965
|
-
collection_name?: InputMaybe<Scalars['String']['input']>;
|
|
8966
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
8967
|
-
event_account_address?: InputMaybe<Scalars['String']['input']>;
|
|
8968
|
-
event_creation_number?: InputMaybe<Scalars['Int']['input']>;
|
|
8969
|
-
event_index?: InputMaybe<Scalars['bigint']['input']>;
|
|
8970
|
-
event_sequence_number?: InputMaybe<Scalars['Int']['input']>;
|
|
8971
|
-
from_address?: InputMaybe<Scalars['String']['input']>;
|
|
8972
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
8973
|
-
property_version?: InputMaybe<Scalars['numeric']['input']>;
|
|
8974
|
-
to_address?: InputMaybe<Scalars['String']['input']>;
|
|
8975
|
-
token_amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
8976
|
-
token_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
8977
|
-
transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
8978
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
8979
|
-
transfer_type?: InputMaybe<Scalars['String']['input']>;
|
|
8980
|
-
};
|
|
8981
|
-
/** aggregate sum on columns */
|
|
8982
|
-
export type Token_Activities_Sum_Fields = {
|
|
8983
|
-
__typename?: 'token_activities_sum_fields';
|
|
8984
|
-
event_creation_number?: Maybe<Scalars['Int']['output']>;
|
|
8985
|
-
event_index?: Maybe<Scalars['bigint']['output']>;
|
|
8986
|
-
event_sequence_number?: Maybe<Scalars['Int']['output']>;
|
|
8987
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
8988
|
-
token_amount?: Maybe<Scalars['numeric']['output']>;
|
|
8989
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
8990
|
-
};
|
|
8991
|
-
/** order by sum() on columns of table "legacy_migration_v1.token_activities" */
|
|
8992
|
-
export type Token_Activities_Sum_Order_By = {
|
|
8993
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
8994
|
-
event_index?: InputMaybe<Order_By>;
|
|
8995
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
8996
|
-
property_version?: InputMaybe<Order_By>;
|
|
8997
|
-
token_amount?: InputMaybe<Order_By>;
|
|
8998
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
5775
|
+
_gte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
5776
|
+
_in?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
5777
|
+
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5778
|
+
_lt?: InputMaybe<Scalars['timestamp']['input']>;
|
|
5779
|
+
_lte?: InputMaybe<Scalars['timestamp']['input']>;
|
|
5780
|
+
_neq?: InputMaybe<Scalars['timestamp']['input']>;
|
|
5781
|
+
_nin?: InputMaybe<Array<Scalars['timestamp']['input']>>;
|
|
8999
5782
|
};
|
|
9000
5783
|
/** columns and relationships of "token_activities_v2" */
|
|
9001
5784
|
export type Token_Activities_V2 = {
|
|
@@ -9426,401 +6209,6 @@ export type Token_Activities_V2_Variance_Order_By = {
|
|
|
9426
6209
|
token_amount?: InputMaybe<Order_By>;
|
|
9427
6210
|
transaction_version?: InputMaybe<Order_By>;
|
|
9428
6211
|
};
|
|
9429
|
-
/** aggregate var_pop on columns */
|
|
9430
|
-
export type Token_Activities_Var_Pop_Fields = {
|
|
9431
|
-
__typename?: 'token_activities_var_pop_fields';
|
|
9432
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
9433
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
9434
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
9435
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
9436
|
-
token_amount?: Maybe<Scalars['Float']['output']>;
|
|
9437
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
9438
|
-
};
|
|
9439
|
-
/** order by var_pop() on columns of table "legacy_migration_v1.token_activities" */
|
|
9440
|
-
export type Token_Activities_Var_Pop_Order_By = {
|
|
9441
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
9442
|
-
event_index?: InputMaybe<Order_By>;
|
|
9443
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
9444
|
-
property_version?: InputMaybe<Order_By>;
|
|
9445
|
-
token_amount?: InputMaybe<Order_By>;
|
|
9446
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
9447
|
-
};
|
|
9448
|
-
/** aggregate var_samp on columns */
|
|
9449
|
-
export type Token_Activities_Var_Samp_Fields = {
|
|
9450
|
-
__typename?: 'token_activities_var_samp_fields';
|
|
9451
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
9452
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
9453
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
9454
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
9455
|
-
token_amount?: Maybe<Scalars['Float']['output']>;
|
|
9456
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
9457
|
-
};
|
|
9458
|
-
/** order by var_samp() on columns of table "legacy_migration_v1.token_activities" */
|
|
9459
|
-
export type Token_Activities_Var_Samp_Order_By = {
|
|
9460
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
9461
|
-
event_index?: InputMaybe<Order_By>;
|
|
9462
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
9463
|
-
property_version?: InputMaybe<Order_By>;
|
|
9464
|
-
token_amount?: InputMaybe<Order_By>;
|
|
9465
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
9466
|
-
};
|
|
9467
|
-
/** aggregate variance on columns */
|
|
9468
|
-
export type Token_Activities_Variance_Fields = {
|
|
9469
|
-
__typename?: 'token_activities_variance_fields';
|
|
9470
|
-
event_creation_number?: Maybe<Scalars['Float']['output']>;
|
|
9471
|
-
event_index?: Maybe<Scalars['Float']['output']>;
|
|
9472
|
-
event_sequence_number?: Maybe<Scalars['Float']['output']>;
|
|
9473
|
-
property_version?: Maybe<Scalars['Float']['output']>;
|
|
9474
|
-
token_amount?: Maybe<Scalars['Float']['output']>;
|
|
9475
|
-
transaction_version?: Maybe<Scalars['Float']['output']>;
|
|
9476
|
-
};
|
|
9477
|
-
/** order by variance() on columns of table "legacy_migration_v1.token_activities" */
|
|
9478
|
-
export type Token_Activities_Variance_Order_By = {
|
|
9479
|
-
event_creation_number?: InputMaybe<Order_By>;
|
|
9480
|
-
event_index?: InputMaybe<Order_By>;
|
|
9481
|
-
event_sequence_number?: InputMaybe<Order_By>;
|
|
9482
|
-
property_version?: InputMaybe<Order_By>;
|
|
9483
|
-
token_amount?: InputMaybe<Order_By>;
|
|
9484
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
9485
|
-
};
|
|
9486
|
-
/** columns and relationships of "legacy_migration_v1.token_datas" */
|
|
9487
|
-
export type Token_Datas = {
|
|
9488
|
-
__typename?: 'token_datas';
|
|
9489
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
9490
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
9491
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
9492
|
-
default_properties?: Maybe<Scalars['jsonb']['output']>;
|
|
9493
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
9494
|
-
description_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
9495
|
-
largest_property_version?: Maybe<Scalars['numeric']['output']>;
|
|
9496
|
-
maximum?: Maybe<Scalars['numeric']['output']>;
|
|
9497
|
-
maximum_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
9498
|
-
metadata_uri?: Maybe<Scalars['String']['output']>;
|
|
9499
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
9500
|
-
payee_address?: Maybe<Scalars['String']['output']>;
|
|
9501
|
-
properties_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
9502
|
-
royalty_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
9503
|
-
royalty_points_denominator?: Maybe<Scalars['String']['output']>;
|
|
9504
|
-
royalty_points_numerator?: Maybe<Scalars['String']['output']>;
|
|
9505
|
-
supply?: Maybe<Scalars['numeric']['output']>;
|
|
9506
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
9507
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
9508
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
9509
|
-
uri_mutable?: Maybe<Scalars['Boolean']['output']>;
|
|
9510
|
-
};
|
|
9511
|
-
/** columns and relationships of "legacy_migration_v1.token_datas" */
|
|
9512
|
-
export type Token_DatasDefault_PropertiesArgs = {
|
|
9513
|
-
path?: InputMaybe<Scalars['String']['input']>;
|
|
9514
|
-
};
|
|
9515
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.token_datas". All fields are combined with a logical 'AND'. */
|
|
9516
|
-
export type Token_Datas_Bool_Exp = {
|
|
9517
|
-
_and?: InputMaybe<Array<Token_Datas_Bool_Exp>>;
|
|
9518
|
-
_not?: InputMaybe<Token_Datas_Bool_Exp>;
|
|
9519
|
-
_or?: InputMaybe<Array<Token_Datas_Bool_Exp>>;
|
|
9520
|
-
collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
9521
|
-
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
9522
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
9523
|
-
default_properties?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
9524
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
9525
|
-
description_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
9526
|
-
largest_property_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
9527
|
-
maximum?: InputMaybe<Numeric_Comparison_Exp>;
|
|
9528
|
-
maximum_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
9529
|
-
metadata_uri?: InputMaybe<String_Comparison_Exp>;
|
|
9530
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
9531
|
-
payee_address?: InputMaybe<String_Comparison_Exp>;
|
|
9532
|
-
properties_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
9533
|
-
royalty_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
9534
|
-
royalty_points_denominator?: InputMaybe<String_Comparison_Exp>;
|
|
9535
|
-
royalty_points_numerator?: InputMaybe<String_Comparison_Exp>;
|
|
9536
|
-
supply?: InputMaybe<Numeric_Comparison_Exp>;
|
|
9537
|
-
token_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
9538
|
-
transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
9539
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
9540
|
-
uri_mutable?: InputMaybe<Boolean_Comparison_Exp>;
|
|
9541
|
-
};
|
|
9542
|
-
/** Ordering options when selecting data from "legacy_migration_v1.token_datas". */
|
|
9543
|
-
export type Token_Datas_Order_By = {
|
|
9544
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
9545
|
-
collection_name?: InputMaybe<Order_By>;
|
|
9546
|
-
creator_address?: InputMaybe<Order_By>;
|
|
9547
|
-
default_properties?: InputMaybe<Order_By>;
|
|
9548
|
-
description?: InputMaybe<Order_By>;
|
|
9549
|
-
description_mutable?: InputMaybe<Order_By>;
|
|
9550
|
-
largest_property_version?: InputMaybe<Order_By>;
|
|
9551
|
-
maximum?: InputMaybe<Order_By>;
|
|
9552
|
-
maximum_mutable?: InputMaybe<Order_By>;
|
|
9553
|
-
metadata_uri?: InputMaybe<Order_By>;
|
|
9554
|
-
name?: InputMaybe<Order_By>;
|
|
9555
|
-
payee_address?: InputMaybe<Order_By>;
|
|
9556
|
-
properties_mutable?: InputMaybe<Order_By>;
|
|
9557
|
-
royalty_mutable?: InputMaybe<Order_By>;
|
|
9558
|
-
royalty_points_denominator?: InputMaybe<Order_By>;
|
|
9559
|
-
royalty_points_numerator?: InputMaybe<Order_By>;
|
|
9560
|
-
supply?: InputMaybe<Order_By>;
|
|
9561
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
9562
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
9563
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
9564
|
-
uri_mutable?: InputMaybe<Order_By>;
|
|
9565
|
-
};
|
|
9566
|
-
/** select columns of table "legacy_migration_v1.token_datas" */
|
|
9567
|
-
export declare enum Token_Datas_Select_Column {
|
|
9568
|
-
/** column name */
|
|
9569
|
-
CollectionDataIdHash = "collection_data_id_hash",
|
|
9570
|
-
/** column name */
|
|
9571
|
-
CollectionName = "collection_name",
|
|
9572
|
-
/** column name */
|
|
9573
|
-
CreatorAddress = "creator_address",
|
|
9574
|
-
/** column name */
|
|
9575
|
-
DefaultProperties = "default_properties",
|
|
9576
|
-
/** column name */
|
|
9577
|
-
Description = "description",
|
|
9578
|
-
/** column name */
|
|
9579
|
-
DescriptionMutable = "description_mutable",
|
|
9580
|
-
/** column name */
|
|
9581
|
-
LargestPropertyVersion = "largest_property_version",
|
|
9582
|
-
/** column name */
|
|
9583
|
-
Maximum = "maximum",
|
|
9584
|
-
/** column name */
|
|
9585
|
-
MaximumMutable = "maximum_mutable",
|
|
9586
|
-
/** column name */
|
|
9587
|
-
MetadataUri = "metadata_uri",
|
|
9588
|
-
/** column name */
|
|
9589
|
-
Name = "name",
|
|
9590
|
-
/** column name */
|
|
9591
|
-
PayeeAddress = "payee_address",
|
|
9592
|
-
/** column name */
|
|
9593
|
-
PropertiesMutable = "properties_mutable",
|
|
9594
|
-
/** column name */
|
|
9595
|
-
RoyaltyMutable = "royalty_mutable",
|
|
9596
|
-
/** column name */
|
|
9597
|
-
RoyaltyPointsDenominator = "royalty_points_denominator",
|
|
9598
|
-
/** column name */
|
|
9599
|
-
RoyaltyPointsNumerator = "royalty_points_numerator",
|
|
9600
|
-
/** column name */
|
|
9601
|
-
Supply = "supply",
|
|
9602
|
-
/** column name */
|
|
9603
|
-
TokenDataIdHash = "token_data_id_hash",
|
|
9604
|
-
/** column name */
|
|
9605
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
9606
|
-
/** column name */
|
|
9607
|
-
TransactionVersion = "transaction_version",
|
|
9608
|
-
/** column name */
|
|
9609
|
-
UriMutable = "uri_mutable"
|
|
9610
|
-
}
|
|
9611
|
-
/** Streaming cursor of the table "token_datas" */
|
|
9612
|
-
export type Token_Datas_Stream_Cursor_Input = {
|
|
9613
|
-
/** Stream column input with initial value */
|
|
9614
|
-
initial_value: Token_Datas_Stream_Cursor_Value_Input;
|
|
9615
|
-
/** cursor ordering */
|
|
9616
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
9617
|
-
};
|
|
9618
|
-
/** Initial value of the column from where the streaming should start */
|
|
9619
|
-
export type Token_Datas_Stream_Cursor_Value_Input = {
|
|
9620
|
-
collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
9621
|
-
collection_name?: InputMaybe<Scalars['String']['input']>;
|
|
9622
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
9623
|
-
default_properties?: InputMaybe<Scalars['jsonb']['input']>;
|
|
9624
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
9625
|
-
description_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9626
|
-
largest_property_version?: InputMaybe<Scalars['numeric']['input']>;
|
|
9627
|
-
maximum?: InputMaybe<Scalars['numeric']['input']>;
|
|
9628
|
-
maximum_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9629
|
-
metadata_uri?: InputMaybe<Scalars['String']['input']>;
|
|
9630
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
9631
|
-
payee_address?: InputMaybe<Scalars['String']['input']>;
|
|
9632
|
-
properties_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9633
|
-
royalty_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9634
|
-
royalty_points_denominator?: InputMaybe<Scalars['String']['input']>;
|
|
9635
|
-
royalty_points_numerator?: InputMaybe<Scalars['String']['input']>;
|
|
9636
|
-
supply?: InputMaybe<Scalars['numeric']['input']>;
|
|
9637
|
-
token_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
9638
|
-
transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
9639
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
9640
|
-
uri_mutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9641
|
-
};
|
|
9642
|
-
/** columns and relationships of "legacy_migration_v1.token_ownerships" */
|
|
9643
|
-
export type Token_Ownerships = {
|
|
9644
|
-
__typename?: 'token_ownerships';
|
|
9645
|
-
amount?: Maybe<Scalars['numeric']['output']>;
|
|
9646
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
9647
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
9648
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
9649
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
9650
|
-
owner_address?: Maybe<Scalars['String']['output']>;
|
|
9651
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
9652
|
-
table_handle?: Maybe<Scalars['String']['output']>;
|
|
9653
|
-
table_type?: Maybe<Scalars['String']['output']>;
|
|
9654
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
9655
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
9656
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
9657
|
-
};
|
|
9658
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.token_ownerships". All fields are combined with a logical 'AND'. */
|
|
9659
|
-
export type Token_Ownerships_Bool_Exp = {
|
|
9660
|
-
_and?: InputMaybe<Array<Token_Ownerships_Bool_Exp>>;
|
|
9661
|
-
_not?: InputMaybe<Token_Ownerships_Bool_Exp>;
|
|
9662
|
-
_or?: InputMaybe<Array<Token_Ownerships_Bool_Exp>>;
|
|
9663
|
-
amount?: InputMaybe<Numeric_Comparison_Exp>;
|
|
9664
|
-
collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
9665
|
-
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
9666
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
9667
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
9668
|
-
owner_address?: InputMaybe<String_Comparison_Exp>;
|
|
9669
|
-
property_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
9670
|
-
table_handle?: InputMaybe<String_Comparison_Exp>;
|
|
9671
|
-
table_type?: InputMaybe<String_Comparison_Exp>;
|
|
9672
|
-
token_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
9673
|
-
transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
9674
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
9675
|
-
};
|
|
9676
|
-
/** Ordering options when selecting data from "legacy_migration_v1.token_ownerships". */
|
|
9677
|
-
export type Token_Ownerships_Order_By = {
|
|
9678
|
-
amount?: InputMaybe<Order_By>;
|
|
9679
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
9680
|
-
collection_name?: InputMaybe<Order_By>;
|
|
9681
|
-
creator_address?: InputMaybe<Order_By>;
|
|
9682
|
-
name?: InputMaybe<Order_By>;
|
|
9683
|
-
owner_address?: InputMaybe<Order_By>;
|
|
9684
|
-
property_version?: InputMaybe<Order_By>;
|
|
9685
|
-
table_handle?: InputMaybe<Order_By>;
|
|
9686
|
-
table_type?: InputMaybe<Order_By>;
|
|
9687
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
9688
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
9689
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
9690
|
-
};
|
|
9691
|
-
/** select columns of table "legacy_migration_v1.token_ownerships" */
|
|
9692
|
-
export declare enum Token_Ownerships_Select_Column {
|
|
9693
|
-
/** column name */
|
|
9694
|
-
Amount = "amount",
|
|
9695
|
-
/** column name */
|
|
9696
|
-
CollectionDataIdHash = "collection_data_id_hash",
|
|
9697
|
-
/** column name */
|
|
9698
|
-
CollectionName = "collection_name",
|
|
9699
|
-
/** column name */
|
|
9700
|
-
CreatorAddress = "creator_address",
|
|
9701
|
-
/** column name */
|
|
9702
|
-
Name = "name",
|
|
9703
|
-
/** column name */
|
|
9704
|
-
OwnerAddress = "owner_address",
|
|
9705
|
-
/** column name */
|
|
9706
|
-
PropertyVersion = "property_version",
|
|
9707
|
-
/** column name */
|
|
9708
|
-
TableHandle = "table_handle",
|
|
9709
|
-
/** column name */
|
|
9710
|
-
TableType = "table_type",
|
|
9711
|
-
/** column name */
|
|
9712
|
-
TokenDataIdHash = "token_data_id_hash",
|
|
9713
|
-
/** column name */
|
|
9714
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
9715
|
-
/** column name */
|
|
9716
|
-
TransactionVersion = "transaction_version"
|
|
9717
|
-
}
|
|
9718
|
-
/** Streaming cursor of the table "token_ownerships" */
|
|
9719
|
-
export type Token_Ownerships_Stream_Cursor_Input = {
|
|
9720
|
-
/** Stream column input with initial value */
|
|
9721
|
-
initial_value: Token_Ownerships_Stream_Cursor_Value_Input;
|
|
9722
|
-
/** cursor ordering */
|
|
9723
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
9724
|
-
};
|
|
9725
|
-
/** Initial value of the column from where the streaming should start */
|
|
9726
|
-
export type Token_Ownerships_Stream_Cursor_Value_Input = {
|
|
9727
|
-
amount?: InputMaybe<Scalars['numeric']['input']>;
|
|
9728
|
-
collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
9729
|
-
collection_name?: InputMaybe<Scalars['String']['input']>;
|
|
9730
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
9731
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
9732
|
-
owner_address?: InputMaybe<Scalars['String']['input']>;
|
|
9733
|
-
property_version?: InputMaybe<Scalars['numeric']['input']>;
|
|
9734
|
-
table_handle?: InputMaybe<Scalars['String']['input']>;
|
|
9735
|
-
table_type?: InputMaybe<Scalars['String']['input']>;
|
|
9736
|
-
token_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
9737
|
-
transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
9738
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
9739
|
-
};
|
|
9740
|
-
/** columns and relationships of "legacy_migration_v1.tokens" */
|
|
9741
|
-
export type Tokens = {
|
|
9742
|
-
__typename?: 'tokens';
|
|
9743
|
-
collection_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
9744
|
-
collection_name?: Maybe<Scalars['String']['output']>;
|
|
9745
|
-
creator_address?: Maybe<Scalars['String']['output']>;
|
|
9746
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
9747
|
-
property_version?: Maybe<Scalars['numeric']['output']>;
|
|
9748
|
-
token_data_id_hash?: Maybe<Scalars['String']['output']>;
|
|
9749
|
-
token_properties?: Maybe<Scalars['jsonb']['output']>;
|
|
9750
|
-
transaction_timestamp?: Maybe<Scalars['timestamp']['output']>;
|
|
9751
|
-
transaction_version?: Maybe<Scalars['bigint']['output']>;
|
|
9752
|
-
};
|
|
9753
|
-
/** columns and relationships of "legacy_migration_v1.tokens" */
|
|
9754
|
-
export type TokensToken_PropertiesArgs = {
|
|
9755
|
-
path?: InputMaybe<Scalars['String']['input']>;
|
|
9756
|
-
};
|
|
9757
|
-
/** Boolean expression to filter rows from the table "legacy_migration_v1.tokens". All fields are combined with a logical 'AND'. */
|
|
9758
|
-
export type Tokens_Bool_Exp = {
|
|
9759
|
-
_and?: InputMaybe<Array<Tokens_Bool_Exp>>;
|
|
9760
|
-
_not?: InputMaybe<Tokens_Bool_Exp>;
|
|
9761
|
-
_or?: InputMaybe<Array<Tokens_Bool_Exp>>;
|
|
9762
|
-
collection_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
9763
|
-
collection_name?: InputMaybe<String_Comparison_Exp>;
|
|
9764
|
-
creator_address?: InputMaybe<String_Comparison_Exp>;
|
|
9765
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
9766
|
-
property_version?: InputMaybe<Numeric_Comparison_Exp>;
|
|
9767
|
-
token_data_id_hash?: InputMaybe<String_Comparison_Exp>;
|
|
9768
|
-
token_properties?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
9769
|
-
transaction_timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
9770
|
-
transaction_version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
9771
|
-
};
|
|
9772
|
-
/** Ordering options when selecting data from "legacy_migration_v1.tokens". */
|
|
9773
|
-
export type Tokens_Order_By = {
|
|
9774
|
-
collection_data_id_hash?: InputMaybe<Order_By>;
|
|
9775
|
-
collection_name?: InputMaybe<Order_By>;
|
|
9776
|
-
creator_address?: InputMaybe<Order_By>;
|
|
9777
|
-
name?: InputMaybe<Order_By>;
|
|
9778
|
-
property_version?: InputMaybe<Order_By>;
|
|
9779
|
-
token_data_id_hash?: InputMaybe<Order_By>;
|
|
9780
|
-
token_properties?: InputMaybe<Order_By>;
|
|
9781
|
-
transaction_timestamp?: InputMaybe<Order_By>;
|
|
9782
|
-
transaction_version?: InputMaybe<Order_By>;
|
|
9783
|
-
};
|
|
9784
|
-
/** select columns of table "legacy_migration_v1.tokens" */
|
|
9785
|
-
export declare enum Tokens_Select_Column {
|
|
9786
|
-
/** column name */
|
|
9787
|
-
CollectionDataIdHash = "collection_data_id_hash",
|
|
9788
|
-
/** column name */
|
|
9789
|
-
CollectionName = "collection_name",
|
|
9790
|
-
/** column name */
|
|
9791
|
-
CreatorAddress = "creator_address",
|
|
9792
|
-
/** column name */
|
|
9793
|
-
Name = "name",
|
|
9794
|
-
/** column name */
|
|
9795
|
-
PropertyVersion = "property_version",
|
|
9796
|
-
/** column name */
|
|
9797
|
-
TokenDataIdHash = "token_data_id_hash",
|
|
9798
|
-
/** column name */
|
|
9799
|
-
TokenProperties = "token_properties",
|
|
9800
|
-
/** column name */
|
|
9801
|
-
TransactionTimestamp = "transaction_timestamp",
|
|
9802
|
-
/** column name */
|
|
9803
|
-
TransactionVersion = "transaction_version"
|
|
9804
|
-
}
|
|
9805
|
-
/** Streaming cursor of the table "tokens" */
|
|
9806
|
-
export type Tokens_Stream_Cursor_Input = {
|
|
9807
|
-
/** Stream column input with initial value */
|
|
9808
|
-
initial_value: Tokens_Stream_Cursor_Value_Input;
|
|
9809
|
-
/** cursor ordering */
|
|
9810
|
-
ordering?: InputMaybe<Cursor_Ordering>;
|
|
9811
|
-
};
|
|
9812
|
-
/** Initial value of the column from where the streaming should start */
|
|
9813
|
-
export type Tokens_Stream_Cursor_Value_Input = {
|
|
9814
|
-
collection_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
9815
|
-
collection_name?: InputMaybe<Scalars['String']['input']>;
|
|
9816
|
-
creator_address?: InputMaybe<Scalars['String']['input']>;
|
|
9817
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
9818
|
-
property_version?: InputMaybe<Scalars['numeric']['input']>;
|
|
9819
|
-
token_data_id_hash?: InputMaybe<Scalars['String']['input']>;
|
|
9820
|
-
token_properties?: InputMaybe<Scalars['jsonb']['input']>;
|
|
9821
|
-
transaction_timestamp?: InputMaybe<Scalars['timestamp']['input']>;
|
|
9822
|
-
transaction_version?: InputMaybe<Scalars['bigint']['input']>;
|
|
9823
|
-
};
|
|
9824
6212
|
/** columns and relationships of "user_transactions" */
|
|
9825
6213
|
export type User_Transactions = {
|
|
9826
6214
|
__typename?: 'user_transactions';
|
|
@@ -9836,6 +6224,8 @@ export type User_Transactions = {
|
|
|
9836
6224
|
parent_signature_type: Scalars['String']['output'];
|
|
9837
6225
|
sender: Scalars['String']['output'];
|
|
9838
6226
|
sequence_number?: Maybe<Scalars['bigint']['output']>;
|
|
6227
|
+
/** An object relationship */
|
|
6228
|
+
signature?: Maybe<Signatures>;
|
|
9839
6229
|
timestamp: Scalars['timestamp']['output'];
|
|
9840
6230
|
version: Scalars['bigint']['output'];
|
|
9841
6231
|
};
|
|
@@ -9856,6 +6246,7 @@ export type User_Transactions_Bool_Exp = {
|
|
|
9856
6246
|
parent_signature_type?: InputMaybe<String_Comparison_Exp>;
|
|
9857
6247
|
sender?: InputMaybe<String_Comparison_Exp>;
|
|
9858
6248
|
sequence_number?: InputMaybe<Bigint_Comparison_Exp>;
|
|
6249
|
+
signature?: InputMaybe<Signatures_Bool_Exp>;
|
|
9859
6250
|
timestamp?: InputMaybe<Timestamp_Comparison_Exp>;
|
|
9860
6251
|
version?: InputMaybe<Bigint_Comparison_Exp>;
|
|
9861
6252
|
};
|
|
@@ -9873,6 +6264,7 @@ export type User_Transactions_Order_By = {
|
|
|
9873
6264
|
parent_signature_type?: InputMaybe<Order_By>;
|
|
9874
6265
|
sender?: InputMaybe<Order_By>;
|
|
9875
6266
|
sequence_number?: InputMaybe<Order_By>;
|
|
6267
|
+
signature?: InputMaybe<Signatures_Order_By>;
|
|
9876
6268
|
timestamp?: InputMaybe<Order_By>;
|
|
9877
6269
|
version?: InputMaybe<Order_By>;
|
|
9878
6270
|
};
|