diff --git a/cmd/graphql.ethereum/graph/schema.resolvers.go b/cmd/graphql.ethereum/graph/schema.resolvers.go index 026ca3b9..08993e92 100644 --- a/cmd/graphql.ethereum/graph/schema.resolvers.go +++ b/cmd/graphql.ethereum/graph/schema.resolvers.go @@ -123,7 +123,7 @@ func (r *amountResolver) ValueUsd(ctx context.Context, obj *model.Amount) (strin // If the pool is the fUSDC address, then we can just skip the // lookup here and report $1 (assuming we maintain the peg.) if obj.Token == r.C.FusdcAddr { - return obj.ValueUnscaled.ScaleStr(5), nil + return obj.ValueUnscaled.ScaleStr(6), nil } // Use the final tick function to get the row. var finalTick struct {