Skip to content

Commit

Permalink
Auto generated changes
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoguerios committed Nov 12, 2024
1 parent 23d24c9 commit 65bef04
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ export type Scalars = {
BigInt: string;
Bytes: string;
Int8: any;
Timestamp: any;
};

export enum Aggregation_Interval {
Day = 'day',
Hour = 'hour',
}

export type Bar = {
__typename?: 'Bar';
address: Scalars['Bytes'];
Expand Down Expand Up @@ -459,6 +465,8 @@ export type _Block_ = {
hash?: Maybe<Scalars['Bytes']>;
/** The block number */
number: Scalars['Int'];
/** The hash of the parent block */
parentHash?: Maybe<Scalars['Bytes']>;
/** Integer representation of the timestamp stored in blocks for the chain */
timestamp?: Maybe<Scalars['Int']>;
};
Expand Down

0 comments on commit 65bef04

Please sign in to comment.