@wildcatfi/wildcat-sdk 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gql/graphql.d.ts +68 -1
- package/dist/gql/graphql.d.ts.map +1 -1
- package/dist/gql/graphql.js +34 -0
- package/dist/gql/graphql.js.map +1 -1
- package/dist/hooks/useAccountsWhereLenderAuthorizedOrActive.d.ts +12 -2
- package/dist/hooks/useAccountsWhereLenderAuthorizedOrActive.d.ts.map +1 -1
- package/dist/hooks/useAccountsWhereLenderAuthorizedOrActive.js +2 -2
- package/dist/hooks/useAccountsWhereLenderAuthorizedOrActive.js.map +1 -1
- package/dist/market.d.ts +2 -1
- package/dist/market.d.ts.map +1 -1
- package/dist/market.js +6 -3
- package/dist/market.js.map +1 -1
- package/package.json +1 -1
package/dist/gql/graphql.d.ts
CHANGED
|
@@ -7026,6 +7026,14 @@ export type SubgraphGetAccountsWhereLenderAuthorizedOrActiveQueryVariables = Exa
|
|
|
7026
7026
|
directionDeposits?: InputMaybe<SubgraphOrderDirection>;
|
|
7027
7027
|
numWithdrawals?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7028
7028
|
skipWithdrawals?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7029
|
+
numBorrows?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7030
|
+
skipBorrows?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7031
|
+
orderBorrows?: InputMaybe<SubgraphBorrow_OrderBy>;
|
|
7032
|
+
directionBorrows?: InputMaybe<SubgraphOrderDirection>;
|
|
7033
|
+
numRepayments?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7034
|
+
skipRepayments?: InputMaybe<Scalars["Int"]["input"]>;
|
|
7035
|
+
orderRepayments?: InputMaybe<SubgraphDebtRepaid_OrderBy>;
|
|
7036
|
+
directionRepayments?: InputMaybe<SubgraphOrderDirection>;
|
|
7029
7037
|
}>;
|
|
7030
7038
|
export type SubgraphGetAccountsWhereLenderAuthorizedOrActiveQuery = {
|
|
7031
7039
|
__typename?: "Query";
|
|
@@ -7040,7 +7048,58 @@ export type SubgraphGetAccountsWhereLenderAuthorizedOrActiveQuery = {
|
|
|
7040
7048
|
lastUpdatedTimestamp: number;
|
|
7041
7049
|
totalInterestEarned: string;
|
|
7042
7050
|
numPendingWithdrawalBatches: number;
|
|
7043
|
-
market:
|
|
7051
|
+
market: {
|
|
7052
|
+
__typename?: "Market";
|
|
7053
|
+
id: string;
|
|
7054
|
+
isRegistered: boolean;
|
|
7055
|
+
isClosed: boolean;
|
|
7056
|
+
borrower: string;
|
|
7057
|
+
sentinel: string;
|
|
7058
|
+
feeRecipient: string;
|
|
7059
|
+
name: string;
|
|
7060
|
+
symbol: string;
|
|
7061
|
+
decimals: number;
|
|
7062
|
+
protocolFeeBips: number;
|
|
7063
|
+
delinquencyGracePeriod: number;
|
|
7064
|
+
delinquencyFeeBips: number;
|
|
7065
|
+
withdrawalBatchDuration: number;
|
|
7066
|
+
maxTotalSupply: string;
|
|
7067
|
+
pendingProtocolFees: string;
|
|
7068
|
+
normalizedUnclaimedWithdrawals: string;
|
|
7069
|
+
scaledTotalSupply: string;
|
|
7070
|
+
scaledPendingWithdrawals: string;
|
|
7071
|
+
pendingWithdrawalExpiry: string;
|
|
7072
|
+
isDelinquent: boolean;
|
|
7073
|
+
timeDelinquent: number;
|
|
7074
|
+
annualInterestBips: number;
|
|
7075
|
+
reserveRatioBips: number;
|
|
7076
|
+
scaleFactor: string;
|
|
7077
|
+
lastInterestAccruedTimestamp: number;
|
|
7078
|
+
originalReserveRatioBips: number;
|
|
7079
|
+
temporaryReserveRatioExpiry: number;
|
|
7080
|
+
temporaryReserveRatioActive: boolean;
|
|
7081
|
+
totalBorrowed: string;
|
|
7082
|
+
totalRepaid: string;
|
|
7083
|
+
totalBaseInterestAccrued: string;
|
|
7084
|
+
totalDelinquencyFeesAccrued: string;
|
|
7085
|
+
totalProtocolFeesAccrued: string;
|
|
7086
|
+
totalDeposited: string;
|
|
7087
|
+
borrowRecords: SubgraphBorrowDataFragment[];
|
|
7088
|
+
repaymentRecords: SubgraphRepaymentDataFragment[];
|
|
7089
|
+
controller: {
|
|
7090
|
+
__typename?: "Controller";
|
|
7091
|
+
id: string;
|
|
7092
|
+
};
|
|
7093
|
+
_asset: {
|
|
7094
|
+
__typename?: "Token";
|
|
7095
|
+
id: string;
|
|
7096
|
+
address: string;
|
|
7097
|
+
name: string;
|
|
7098
|
+
symbol: string;
|
|
7099
|
+
decimals: number;
|
|
7100
|
+
isMock: boolean;
|
|
7101
|
+
};
|
|
7102
|
+
};
|
|
7044
7103
|
controllerAuthorization: {
|
|
7045
7104
|
__typename?: "LenderAuthorization";
|
|
7046
7105
|
authorized: boolean;
|
|
@@ -7577,6 +7636,14 @@ export declare const GetAccountsWhereLenderAuthorizedOrActiveDocument: Apollo.Do
|
|
|
7577
7636
|
* directionDeposits: // value for 'directionDeposits'
|
|
7578
7637
|
* numWithdrawals: // value for 'numWithdrawals'
|
|
7579
7638
|
* skipWithdrawals: // value for 'skipWithdrawals'
|
|
7639
|
+
* numBorrows: // value for 'numBorrows'
|
|
7640
|
+
* skipBorrows: // value for 'skipBorrows'
|
|
7641
|
+
* orderBorrows: // value for 'orderBorrows'
|
|
7642
|
+
* directionBorrows: // value for 'directionBorrows'
|
|
7643
|
+
* numRepayments: // value for 'numRepayments'
|
|
7644
|
+
* skipRepayments: // value for 'skipRepayments'
|
|
7645
|
+
* orderRepayments: // value for 'orderRepayments'
|
|
7646
|
+
* directionRepayments: // value for 'directionRepayments'
|
|
7580
7647
|
* },
|
|
7581
7648
|
* });
|
|
7582
7649
|
*/
|