diff --git a/modules/pool/pool.gql b/modules/pool/pool.gql index c168048ae..244d35fb2 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 { @@ -97,6 +98,8 @@ interface GqlPoolBase { #fields that never change after creation id: ID! chain: GqlChain! + type: String! + version: Int! name: String! symbol: String! address: Bytes! @@ -215,6 +218,8 @@ type GqlPoolWeighted implements GqlPoolBase { tokens: [GqlPoolTokenUnion!]! nestingType: GqlPoolNestingType! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolGyro implements GqlPoolBase { @@ -240,6 +245,8 @@ type GqlPoolGyro implements GqlPoolBase { tokens: [GqlPoolTokenUnion!]! nestingType: GqlPoolNestingType! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolLiquidityBootstrapping implements GqlPoolBase { @@ -261,6 +268,8 @@ type GqlPoolLiquidityBootstrapping implements GqlPoolBase { tokens: [GqlPoolTokenUnion!]! nestingType: GqlPoolNestingType! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolStable implements GqlPoolBase { @@ -282,6 +291,8 @@ type GqlPoolStable implements GqlPoolBase { tokens: [GqlPoolToken!]! amp: BigInt! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolMetaStable implements GqlPoolBase { @@ -303,6 +314,8 @@ type GqlPoolMetaStable implements GqlPoolBase { tokens: [GqlPoolToken!]! amp: BigInt! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolPhantomStable implements GqlPoolBase { @@ -325,6 +338,8 @@ type GqlPoolPhantomStable implements GqlPoolBase { amp: BigInt! staking: GqlPoolStaking bptPriceRate: BigDecimal! + type: String! + version: Int! } type GqlPoolElement implements GqlPoolBase { @@ -349,6 +364,8 @@ type GqlPoolElement implements GqlPoolBase { principalToken: Bytes! baseToken: Bytes! staking: GqlPoolStaking + type: String! + version: Int! } type GqlPoolLinear implements GqlPoolBase { @@ -375,6 +392,8 @@ type GqlPoolLinear implements GqlPoolBase { lowerTarget: BigInt! staking: GqlPoolStaking bptPriceRate: BigDecimal! + type: String! + version: Int! } type GqlPoolLinearNested {