Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
b1e6d0ab
Unverified
Commit
b1e6d0ab
authored
Feb 27, 2023
by
Jordan Frankfurt
Committed by
GitHub
Feb 27, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: schema changed gen types (#6033)
schema changed gen types
parent
a7fcbb4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
types-and-hooks.ts
src/graphql/data/__generated__/types-and-hooks.ts
+16
-0
No files found.
src/graphql/data/__generated__/types-and-hooks.ts
View file @
b1e6d0ab
...
...
@@ -86,6 +86,10 @@ export enum Chain {
UnknownChain
=
'
UNKNOWN_CHAIN
'
}
export
enum
CollectionSortableField
{
Volume
=
'
VOLUME
'
}
export
type
ContractInput
=
{
address
?:
InputMaybe
<
Scalars
[
'
String
'
]
>
;
chain
:
Chain
;
...
...
@@ -371,6 +375,8 @@ export type NftCollectionMarket = {
marketplaces
?:
Maybe
<
Array
<
NftCollectionMarketplace
>>
;
nftContracts
?:
Maybe
<
Array
<
NftContract
>>
;
owners
?:
Maybe
<
Scalars
[
'
Int
'
]
>
;
percentListed
?:
Maybe
<
TimestampedAmount
>
;
percentUniqueOwners
?:
Maybe
<
TimestampedAmount
>
;
sales
?:
Maybe
<
TimestampedAmount
>
;
totalVolume
?:
Maybe
<
TimestampedAmount
>
;
volume
?:
Maybe
<
TimestampedAmount
>
;
...
...
@@ -650,6 +656,7 @@ export type Query = {
token
?:
Maybe
<
Token
>
;
tokenProjects
?:
Maybe
<
Array
<
Maybe
<
TokenProject
>>>
;
tokens
?:
Maybe
<
Array
<
Maybe
<
Token
>>>
;
topCollections
?:
Maybe
<
NftCollectionConnection
>
;
topTokens
?:
Maybe
<
Array
<
Maybe
<
Token
>>>
;
};
...
...
@@ -740,6 +747,15 @@ export type QueryTokensArgs = {
};
export
type
QueryTopCollectionsArgs
=
{
chains
?:
InputMaybe
<
Array
<
Chain
>>
;
cursor
?:
InputMaybe
<
Scalars
[
'
String
'
]
>
;
duration
?:
InputMaybe
<
HistoryDuration
>
;
limit
?:
InputMaybe
<
Scalars
[
'
Int
'
]
>
;
orderBy
?:
InputMaybe
<
CollectionSortableField
>
;
};
export
type
QueryTopTokensArgs
=
{
chain
?:
InputMaybe
<
Chain
>
;
orderBy
?:
InputMaybe
<
TokenSortableField
>
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment