Skip to content

Commit

Permalink
feat: Linea stableswap subgraph (#5199)
Browse files Browse the repository at this point in the history
* feat: add linea-mainnet to stableswap subgraph

* feat: add deploy commands for linea stableswap

* fix: consistent command naming

* chore: add linea stableswap subgraph & rebuild
  • Loading branch information
liu-zhipeng authored Nov 20, 2023
1 parent 0a644ad commit c39ecc1
Show file tree
Hide file tree
Showing 29 changed files with 198,914 additions and 173,326 deletions.
206,187 changes: 103,991 additions & 102,196 deletions packages/adapters/subgraph/.graphclient/index.ts

Large diffs are not rendered by default.

100,386 changes: 50,932 additions & 49,454 deletions packages/adapters/subgraph/.graphclient/schema.graphql

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -12588,6 +12588,19 @@ const schemaAST = {
],
"directives": []
},
{
"kind": "ScalarTypeDefinition",
"description": {
"kind": "StringValue",
"value": "8 bytes signed integer\n",
"block": true
},
"name": {
"kind": "Name",
"value": "Int8"
},
"directives": []
},
{
"kind": "EnumTypeDefinition",
"description": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,12 @@ enum arbitrumone_DestinationTransfer_orderBy {
reconciledTxNonce
}

"""
8 bytes signed integer
"""
scalar arbitrumone_Int8

"""Defines the order direction, either ascending or descending"""
enum arbitrumone_OrderDirection {
asc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export type Scalars = {
arbitrumone_BigDecimal: any;
BigInt: any;
arbitrumone_Bytes: any;
arbitrumone_Int8: any;
};

export type arbitrumone_AggregateRoot = {
Expand Down
Loading

0 comments on commit c39ecc1

Please sign in to comment.