Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rebuild graphclient for missing entity #5234

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
128,929 changes: 66,216 additions & 62,713 deletions packages/adapters/subgraph/.graphclient/index.ts

Large diffs are not rendered by default.

104,333 changes: 53,828 additions & 50,505 deletions packages/adapters/subgraph/.graphclient/schema.graphql

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ type arbitrumgoerli_Asset {
id: ID!
key: arbitrumgoerli_Bytes
decimal: BigInt
adoptedDecimal: BigInt
canonicalId: arbitrumgoerli_Bytes
canonicalDomain: BigInt
adoptedAsset: arbitrumgoerli_Bytes
Expand Down Expand Up @@ -194,6 +195,7 @@ enum arbitrumgoerli_AssetBalance_orderBy {
asset__id
asset__key
asset__decimal
asset__adoptedDecimal
asset__canonicalId
asset__canonicalDomain
asset__adoptedAsset
Expand Down Expand Up @@ -258,6 +260,14 @@ input arbitrumgoerli_Asset_filter {
decimal_lte: BigInt
decimal_in: [BigInt!]
decimal_not_in: [BigInt!]
adoptedDecimal: BigInt
adoptedDecimal_not: BigInt
adoptedDecimal_gt: BigInt
adoptedDecimal_lt: BigInt
adoptedDecimal_gte: BigInt
adoptedDecimal_lte: BigInt
adoptedDecimal_in: [BigInt!]
adoptedDecimal_not_in: [BigInt!]
canonicalId: arbitrumgoerli_Bytes
canonicalId_not: arbitrumgoerli_Bytes
canonicalId_gt: arbitrumgoerli_Bytes
Expand Down Expand Up @@ -335,6 +345,7 @@ enum arbitrumgoerli_Asset_orderBy {
id
key
decimal
adoptedDecimal
canonicalId
canonicalDomain
adoptedAsset
Expand Down Expand Up @@ -844,6 +855,7 @@ enum arbitrumgoerli_DestinationTransfer_orderBy {
asset__id
asset__key
asset__decimal
asset__adoptedDecimal
asset__canonicalId
asset__canonicalDomain
asset__adoptedAsset
Expand Down Expand Up @@ -1381,6 +1393,7 @@ enum arbitrumgoerli_OriginTransfer_orderBy {
asset__id
asset__key
asset__decimal
asset__adoptedDecimal
asset__canonicalId
asset__canonicalDomain
asset__adoptedAsset
Expand Down Expand Up @@ -1541,6 +1554,32 @@ type Query {
"""
subgraphError: _SubgraphErrorPolicy_! = deny
): [arbitrumgoerli_RouterDailyTVL!]!
arbitrumgoerli_routerLiquidityEvent(
id: ID!
"""
The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.
"""
block: arbitrumgoerli_Block_height
"""
Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.
"""
subgraphError: _SubgraphErrorPolicy_! = deny
): arbitrumgoerli_RouterLiquidityEvent
arbitrumgoerli_routerLiquidityEvents(
skip: Int = 0
first: Int = 100
orderBy: arbitrumgoerli_RouterLiquidityEvent_orderBy
orderDirection: arbitrumgoerli_OrderDirection
where: arbitrumgoerli_RouterLiquidityEvent_filter
"""
The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.
"""
block: arbitrumgoerli_Block_height
"""
Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.
"""
subgraphError: _SubgraphErrorPolicy_! = deny
): [arbitrumgoerli_RouterLiquidityEvent!]!
arbitrumgoerli_setting(
id: ID!
"""
Expand Down Expand Up @@ -2448,6 +2487,7 @@ enum arbitrumgoerli_RouterDailyTVL_orderBy {
asset__id
asset__key
asset__decimal
asset__adoptedDecimal
asset__canonicalId
asset__canonicalDomain
asset__adoptedAsset
Expand All @@ -2457,6 +2497,175 @@ enum arbitrumgoerli_RouterDailyTVL_orderBy {
balance
}

type arbitrumgoerli_RouterLiquidityEvent {
id: ID!
type: arbitrumgoerli_RouterLiquidityEventType
router: arbitrumgoerli_Router!
asset: arbitrumgoerli_Asset!
amount: BigInt!
balance: BigInt!
caller: arbitrumgoerli_Bytes
blockNumber: BigInt!
timestamp: BigInt!
transactionHash: arbitrumgoerli_Bytes!
nonce: BigInt!
}

enum arbitrumgoerli_RouterLiquidityEventType {
Add
Remove
}

input arbitrumgoerli_RouterLiquidityEvent_filter {
id: ID
id_not: ID
id_gt: ID
id_lt: ID
id_gte: ID
id_lte: ID
id_in: [ID!]
id_not_in: [ID!]
type: arbitrumgoerli_RouterLiquidityEventType
type_not: arbitrumgoerli_RouterLiquidityEventType
type_in: [arbitrumgoerli_RouterLiquidityEventType!]
type_not_in: [arbitrumgoerli_RouterLiquidityEventType!]
router: String
router_not: String
router_gt: String
router_lt: String
router_gte: String
router_lte: String
router_in: [String!]
router_not_in: [String!]
router_contains: String
router_contains_nocase: String
router_not_contains: String
router_not_contains_nocase: String
router_starts_with: String
router_starts_with_nocase: String
router_not_starts_with: String
router_not_starts_with_nocase: String
router_ends_with: String
router_ends_with_nocase: String
router_not_ends_with: String
router_not_ends_with_nocase: String
router_: arbitrumgoerli_Router_filter
asset: String
asset_not: String
asset_gt: String
asset_lt: String
asset_gte: String
asset_lte: String
asset_in: [String!]
asset_not_in: [String!]
asset_contains: String
asset_contains_nocase: String
asset_not_contains: String
asset_not_contains_nocase: String
asset_starts_with: String
asset_starts_with_nocase: String
asset_not_starts_with: String
asset_not_starts_with_nocase: String
asset_ends_with: String
asset_ends_with_nocase: String
asset_not_ends_with: String
asset_not_ends_with_nocase: String
asset_: arbitrumgoerli_Asset_filter
amount: BigInt
amount_not: BigInt
amount_gt: BigInt
amount_lt: BigInt
amount_gte: BigInt
amount_lte: BigInt
amount_in: [BigInt!]
amount_not_in: [BigInt!]
balance: BigInt
balance_not: BigInt
balance_gt: BigInt
balance_lt: BigInt
balance_gte: BigInt
balance_lte: BigInt
balance_in: [BigInt!]
balance_not_in: [BigInt!]
caller: arbitrumgoerli_Bytes
caller_not: arbitrumgoerli_Bytes
caller_gt: arbitrumgoerli_Bytes
caller_lt: arbitrumgoerli_Bytes
caller_gte: arbitrumgoerli_Bytes
caller_lte: arbitrumgoerli_Bytes
caller_in: [arbitrumgoerli_Bytes!]
caller_not_in: [arbitrumgoerli_Bytes!]
caller_contains: arbitrumgoerli_Bytes
caller_not_contains: arbitrumgoerli_Bytes
blockNumber: BigInt
blockNumber_not: BigInt
blockNumber_gt: BigInt
blockNumber_lt: BigInt
blockNumber_gte: BigInt
blockNumber_lte: BigInt
blockNumber_in: [BigInt!]
blockNumber_not_in: [BigInt!]
timestamp: BigInt
timestamp_not: BigInt
timestamp_gt: BigInt
timestamp_lt: BigInt
timestamp_gte: BigInt
timestamp_lte: BigInt
timestamp_in: [BigInt!]
timestamp_not_in: [BigInt!]
transactionHash: arbitrumgoerli_Bytes
transactionHash_not: arbitrumgoerli_Bytes
transactionHash_gt: arbitrumgoerli_Bytes
transactionHash_lt: arbitrumgoerli_Bytes
transactionHash_gte: arbitrumgoerli_Bytes
transactionHash_lte: arbitrumgoerli_Bytes
transactionHash_in: [arbitrumgoerli_Bytes!]
transactionHash_not_in: [arbitrumgoerli_Bytes!]
transactionHash_contains: arbitrumgoerli_Bytes
transactionHash_not_contains: arbitrumgoerli_Bytes
nonce: BigInt
nonce_not: BigInt
nonce_gt: BigInt
nonce_lt: BigInt
nonce_gte: BigInt
nonce_lte: BigInt
nonce_in: [BigInt!]
nonce_not_in: [BigInt!]
"""Filter for the block changed event."""
_change_block: arbitrumgoerli_BlockChangedFilter
and: [arbitrumgoerli_RouterLiquidityEvent_filter]
or: [arbitrumgoerli_RouterLiquidityEvent_filter]
}

enum arbitrumgoerli_RouterLiquidityEvent_orderBy {
id
type
router
router__id
router__isActive
router__owner
router__recipient
router__proposedOwner
router__proposedTimestamp
asset
asset__id
asset__key
asset__decimal
asset__adoptedDecimal
asset__canonicalId
asset__canonicalDomain
asset__adoptedAsset
asset__localAsset
asset__blockNumber
amount
balance
caller
blockNumber
timestamp
transactionHash
nonce
}

input arbitrumgoerli_Router_filter {
id: ID
id_not: ID
Expand Down Expand Up @@ -2898,6 +3107,32 @@ type Subscription {
"""
subgraphError: _SubgraphErrorPolicy_! = deny
): [arbitrumgoerli_RouterDailyTVL!]!
arbitrumgoerli_routerLiquidityEvent(
id: ID!
"""
The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.
"""
block: arbitrumgoerli_Block_height
"""
Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.
"""
subgraphError: _SubgraphErrorPolicy_! = deny
): arbitrumgoerli_RouterLiquidityEvent
arbitrumgoerli_routerLiquidityEvents(
skip: Int = 0
first: Int = 100
orderBy: arbitrumgoerli_RouterLiquidityEvent_orderBy
orderDirection: arbitrumgoerli_OrderDirection
where: arbitrumgoerli_RouterLiquidityEvent_filter
"""
The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.
"""
block: arbitrumgoerli_Block_height
"""
Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.
"""
subgraphError: _SubgraphErrorPolicy_! = deny
): [arbitrumgoerli_RouterLiquidityEvent!]!
arbitrumgoerli_setting(
id: ID!
"""
Expand Down
Loading