Skip to content

Commit

Permalink
Merge branch 'main' into prod
Browse files Browse the repository at this point in the history
  • Loading branch information
preethamr committed Sep 20, 2024
2 parents 143f08d + f4043ad commit abd722f
Show file tree
Hide file tree
Showing 52 changed files with 84 additions and 851,918 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1948,6 +1948,32 @@ const schemaAST = {
],
"directives": []
},
{
"kind": "EnumTypeDefinition",
"name": {
"kind": "Name",
"value": "Aggregation_interval"
},
"values": [
{
"kind": "EnumValueDefinition",
"name": {
"kind": "Name",
"value": "hour"
},
"directives": []
},
{
"kind": "EnumValueDefinition",
"name": {
"kind": "Name",
"value": "day"
},
"directives": []
}
],
"directives": []
},
{
"kind": "ObjectTypeDefinition",
"name": {
Expand Down Expand Up @@ -49776,6 +49802,19 @@ const schemaAST = {
"interfaces": [],
"directives": []
},
{
"kind": "ScalarTypeDefinition",
"description": {
"kind": "StringValue",
"value": "A string representation of microseconds UNIX timestamp (16 digits)\n",
"block": true
},
"name": {
"kind": "Name",
"value": "Timestamp"
},
"directives": []
},
{
"kind": "EnumTypeDefinition",
"name": {
Expand Down Expand Up @@ -49898,6 +49937,27 @@ const schemaAST = {
}
},
"directives": []
},
{
"kind": "FieldDefinition",
"description": {
"kind": "StringValue",
"value": "The hash of the parent block",
"block": true
},
"name": {
"kind": "Name",
"value": "parentHash"
},
"arguments": [],
"type": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Bytes"
}
},
"directives": []
}
],
"interfaces": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,11 @@ enum mode_AggregateRoot_orderBy {
blockNumber
}

enum mode_Aggregation_interval {
hour
day
}

type mode_Asset {
id: ID!
key: mode_Bytes
Expand Down Expand Up @@ -3943,6 +3948,12 @@ type Subscription {
mode__meta(block: mode_Block_height): mode__Meta_
}

"""
A string representation of microseconds UNIX timestamp (16 digits)
"""
scalar Timestamp

enum mode_TransferStatus {
XCalled
Executed
Expand All @@ -3958,6 +3969,8 @@ type mode__Block_ {
number: Int!
"""Integer representation of the timestamp stored in blocks for the chain"""
timestamp: Int
"""The hash of the parent block"""
parentHash: mode_Bytes
}

"""The type for the top-level _meta field"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export type Scalars = {
BigInt: any;
mode_Bytes: any;
mode_Int8: any;
Timestamp: any;
};

export type mode_AggregateRoot = {
Expand Down Expand Up @@ -150,6 +151,10 @@ export type mode_AggregateRoot_orderBy =
| 'root'
| 'blockNumber';

export type mode_Aggregation_interval =
| 'hour'
| 'day';

export type mode_Asset = {
id: Scalars['ID'];
key?: Maybe<Scalars['mode_Bytes']>;
Expand Down Expand Up @@ -3691,6 +3696,8 @@ export type mode__Block_ = {
number: Scalars['Int'];
/** Integer representation of the timestamp stored in blocks for the chain */
timestamp?: Maybe<Scalars['Int']>;
/** The hash of the parent block */
parentHash?: Maybe<Scalars['mode_Bytes']>;
};

/** The type for the top-level _meta field */
Expand Down
Loading

0 comments on commit abd722f

Please sign in to comment.