Skip to content

Commit

Permalink
Adding version to pool gql models;
Browse files Browse the repository at this point in the history
  • Loading branch information
Luiz Gustavo Abou Hatem De Liz committed Sep 19, 2023
1 parent 6019d85 commit 18e6639
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions modules/pool/pool.gql
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ type GqlPoolMinimal {
dynamicData: GqlPoolDynamicData!
staking: GqlPoolStaking
type: GqlPoolMinimalType!
version: Int!
}

enum GqlPoolMinimalType {
Expand All @@ -98,6 +99,7 @@ interface GqlPoolBase {
id: ID!
chain: GqlChain!
type: String!
version: Int!
name: String!
symbol: String!
address: Bytes!
Expand Down Expand Up @@ -217,6 +219,7 @@ type GqlPoolWeighted implements GqlPoolBase {
nestingType: GqlPoolNestingType!
staking: GqlPoolStaking
type: String!
version: Int!
}

type GqlPoolGyro implements GqlPoolBase {
Expand All @@ -243,6 +246,7 @@ type GqlPoolGyro implements GqlPoolBase {
nestingType: GqlPoolNestingType!
staking: GqlPoolStaking
type: String!
version: Int!
}

type GqlPoolLiquidityBootstrapping implements GqlPoolBase {
Expand All @@ -265,6 +269,7 @@ type GqlPoolLiquidityBootstrapping implements GqlPoolBase {
nestingType: GqlPoolNestingType!
staking: GqlPoolStaking
type: String!
version: Int!
}

type GqlPoolStable implements GqlPoolBase {
Expand All @@ -287,6 +292,7 @@ type GqlPoolStable implements GqlPoolBase {
amp: BigInt!
staking: GqlPoolStaking
type: String!
version: Int!
}

type GqlPoolMetaStable implements GqlPoolBase {
Expand All @@ -309,6 +315,7 @@ type GqlPoolMetaStable implements GqlPoolBase {
amp: BigInt!
staking: GqlPoolStaking
type: String!
version: Int!
}

type GqlPoolPhantomStable implements GqlPoolBase {
Expand All @@ -332,6 +339,7 @@ type GqlPoolPhantomStable implements GqlPoolBase {
staking: GqlPoolStaking
bptPriceRate: BigDecimal!
type: String!
version: Int!
}

type GqlPoolElement implements GqlPoolBase {
Expand All @@ -357,6 +365,7 @@ type GqlPoolElement implements GqlPoolBase {
baseToken: Bytes!
staking: GqlPoolStaking
type: String!
version: Int!
}

type GqlPoolLinear implements GqlPoolBase {
Expand Down Expand Up @@ -384,6 +393,7 @@ type GqlPoolLinear implements GqlPoolBase {
staking: GqlPoolStaking
bptPriceRate: BigDecimal!
type: String!
version: Int!
}

type GqlPoolLinearNested {
Expand Down

0 comments on commit 18e6639

Please sign in to comment.