Skip to content

Commit

Permalink
Merge pull request #32 from morpho-org/build/blue-api-sdk
Browse files Browse the repository at this point in the history
feat(blue-api-sdk): bump schema
  • Loading branch information
Rubilmax authored Aug 12, 2024
2 parents 5b9230f + 8917acd commit 4abb6a8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/blue-api-sdk/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export type Asset = {
/** Current spot price in ETH. */
spotPriceEth: Maybe<Scalars["Float"]["output"]>;
symbol: Scalars["String"]["output"];
tags: Maybe<Array<Scalars["String"]["output"]>>;
/** ERC-20 token total supply */
totalSupply: Scalars["BigInt"]["output"];
/** MetaMorpho vault */
Expand Down Expand Up @@ -206,6 +207,8 @@ export type Market = {
state: Maybe<MarketState>;
/** Vaults with the market in supply queue */
supplyingVaults: Maybe<Array<Vault>>;
targetBorrowUtilization: Scalars["BigInt"]["output"];
targetWithdrawUtilization: Scalars["BigInt"]["output"];
uniqueKey: Scalars["MarketId"]["output"];
/** Market warnings */
warnings: Maybe<Array<MarketWarning>>;
Expand Down Expand Up @@ -290,6 +293,8 @@ export type MarketFilters = {
collateralAssetAddress_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
/** Filter by collateral asset id */
collateralAssetId_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
/** Filter by collateral asset tags. */
collateralAssetTags_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
countryCode?: InputMaybe<Scalars["String"]["input"]>;
/** Filter by greater than or equal to given fee rate */
fee_gte?: InputMaybe<Scalars["Float"]["input"]>;
Expand All @@ -308,6 +313,8 @@ export type MarketFilters = {
loanAssetAddress_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
/** Filter by loan asset id */
loanAssetId_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
/** Filter by loan asset tags. */
loanAssetTags_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
/** Filter by greater than or equal to given net borrow APY */
netBorrowApy_gte?: InputMaybe<Scalars["Float"]["input"]>;
/** Filter by lower than or equal to given net borrow APY */
Expand Down

0 comments on commit 4abb6a8

Please sign in to comment.