Skip to content

Commit

Permalink
quick fix (#1333)
Browse files Browse the repository at this point in the history
  • Loading branch information
franzns authored Dec 16, 2024
1 parent 4a9fe0c commit 1b1fcfd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions graphql_schema_generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2260,6 +2260,11 @@ export const schema = gql`
"""
isAllowed: Boolean!
"""
If it is an ERC4626 token, this defines whether we allow it to use the buffer for pool operations.
"""
isBufferAllowed: Boolean!
"""
Whether the token is considered an ERC4626 token.
"""
Expand Down
3 changes: 3 additions & 0 deletions schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1575,6 +1575,8 @@ export interface GqlPoolTokenDetail {
index: Scalars['Int'];
/** Whether the token is in the allow list. */
isAllowed: Scalars['Boolean'];
/** If it is an ERC4626 token, this defines whether we allow it to use the buffer for pool operations. */
isBufferAllowed: Scalars['Boolean'];
/** Whether the token is considered an ERC4626 token. */
isErc4626: Scalars['Boolean'];
/** Token logo */
Expand Down Expand Up @@ -4509,6 +4511,7 @@ export type GqlPoolTokenDetailResolvers<
id?: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
index?: Resolver<ResolversTypes['Int'], ParentType, ContextType>;
isAllowed?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;
isBufferAllowed?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;
isErc4626?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;
logoURI?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
name?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
Expand Down

0 comments on commit 1b1fcfd

Please sign in to comment.