diff --git a/modules/pool/pool.gql b/modules/pool/pool.gql index 6f898b54f..198835541 100644 --- a/modules/pool/pool.gql +++ b/modules/pool/pool.gql @@ -76,6 +76,7 @@ type GqlPoolMinimal { dynamicData: GqlPoolDynamicData! staking: GqlPoolStaking type: GqlPoolMinimalType! + version: Int! } enum GqlPoolMinimalType { @@ -98,6 +99,8 @@ interface GqlPoolBase { #fields that never change after creation id: ID! chain: GqlChain! + type: String! + version: Int! name: String! symbol: String! address: Bytes! @@ -216,6 +219,8 @@ type GqlPoolWeighted implements GqlPoolBase { tokens: [GqlPoolTokenUnion!]! nestingType: GqlPoolNestingType! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolGyro implements GqlPoolBase { @@ -241,6 +246,8 @@ type GqlPoolGyro implements GqlPoolBase { tokens: [GqlPoolTokenUnion!]! nestingType: GqlPoolNestingType! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolLiquidityBootstrapping implements GqlPoolBase { @@ -262,6 +269,8 @@ type GqlPoolLiquidityBootstrapping implements GqlPoolBase { tokens: [GqlPoolTokenUnion!]! nestingType: GqlPoolNestingType! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolStable implements GqlPoolBase { @@ -283,6 +292,8 @@ type GqlPoolStable implements GqlPoolBase { tokens: [GqlPoolToken!]! amp: BigInt! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolMetaStable implements GqlPoolBase { @@ -304,6 +315,8 @@ type GqlPoolMetaStable implements GqlPoolBase { tokens: [GqlPoolToken!]! amp: BigInt! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolPhantomStable implements GqlPoolBase { @@ -326,6 +339,8 @@ type GqlPoolPhantomStable implements GqlPoolBase { amp: BigInt! staking: GqlPoolStaking bptPriceRate: BigDecimal! + type: String! + version: Int! } type GqlPoolElement implements GqlPoolBase { @@ -350,6 +365,8 @@ type GqlPoolElement implements GqlPoolBase { principalToken: Bytes! baseToken: Bytes! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolLinear implements GqlPoolBase { @@ -376,6 +393,8 @@ type GqlPoolLinear implements GqlPoolBase { lowerTarget: BigInt! staking: GqlPoolStaking bptPriceRate: BigDecimal! + type: String! + version: Int! } type GqlPoolLinearNested {