Skip to content

Commit

Permalink
Updated packages:
Browse files Browse the repository at this point in the history
  - @synthetixio/[email protected]
  • Loading branch information
synthetixio-team committed Mar 13, 2024
1 parent 0f7dae2 commit 07ada79
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/queries/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "3.0.22",
"version": "3.0.23-0",
"description": "react-query for pulling synthetix data in react interfaces",
"source": "./src/index.ts",
"main": "./build/index.js",
Expand Down Expand Up @@ -93,5 +93,6 @@
"statements": 0
}
}
}
},
"stableVersion": "3.0.22"
}
10 changes: 10 additions & 0 deletions v2/lib/subgraph/mainnet.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ enum ActiveStaker_orderBy {
id
}

enum Aggregation_interval {
day
hour
}

scalar BigDecimal

scalar BigInt
Expand Down Expand Up @@ -1834,6 +1839,11 @@ type _Block_ {
"""
number: Int!

"""
The hash of the parent block
"""
parentHash: Bytes

"""
Integer representation of the timestamp stored in blocks for the chain
"""
Expand Down
7 changes: 7 additions & 0 deletions v2/lib/subgraph/mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ export enum ActiveStaker_OrderBy {
Id = 'id',
}

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

export type BlockChangedFilter = {
number_gte: Scalars['Int'];
};
Expand Down Expand Up @@ -1433,6 +1438,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
10 changes: 10 additions & 0 deletions v2/lib/subgraph/optimism.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,11 @@ enum ActiveStaker_orderBy {
id
}

enum Aggregation_interval {
day
hour
}

"""
Tracks this event from the Synthetix.sol contract. (Atomic exchanges also trigger standard SynthExchange events.)
"""
Expand Down Expand Up @@ -9768,6 +9773,11 @@ type _Block_ {
"""
number: Int!

"""
The hash of the parent block
"""
parentHash: Bytes

"""
Integer representation of the timestamp stored in blocks for the chain
"""
Expand Down
7 changes: 7 additions & 0 deletions v2/lib/subgraph/optimism.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,11 @@ export enum ActiveStaker_OrderBy {
Id = 'id',
}

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

/** Tracks this event from the Synthetix.sol contract. (Atomic exchanges also trigger standard SynthExchange events.) */
export type AtomicSynthExchange = {
__typename?: 'AtomicSynthExchange';
Expand Down Expand Up @@ -7767,6 +7772,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 07ada79

Please sign in to comment.