@wildcatfi/wildcat-sdk 3.1.6-beta → 3.1.7-beta

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/constants.js CHANGED
@@ -44,7 +44,7 @@ exports.Deployments = {
44
44
  [SupportedChainId.Sepolia]: {
45
45
  HooksFactory: "0x10A64ABa0159720F8a23E1A552800CA4eb21576C",
46
46
  MarketLens: "0xb3925B31A8AeDCE8CFc885e0D5DAa057A1EA8A72",
47
- MarketLensV2: "0x53D692EE5E6d43e57eAc6184E5A9DEEe1dEd9Ace",
47
+ MarketLensV2: "0xCb7839D03EBC1e628295b2FdE3b73Fc53412e87F",
48
48
  MockArchControllerOwner: "0xa476920af80B587f696734430227869795E2Ea78",
49
49
  MockChainalysis: "0x9d1060f8DEE8CBCf5eC772C51Ec671f70Cc7f8d9",
50
50
  MockERC20Factory: "0x54A3103904977DCb3C2fB782059F5431db90C96e",
@@ -16078,6 +16078,10 @@ export type SubgraphMarketDataFragment = {
16078
16078
  _asset: SubgraphTokenDataFragment;
16079
16079
  hooksConfig?: SubgraphHooksConfigDataForMarketFragment | null;
16080
16080
  hooks?: SubgraphHooksInstanceDataFragment | null;
16081
+ unpaidWithdrawalBatches: Array<{
16082
+ __typename: "WithdrawalBatch";
16083
+ expiry: string;
16084
+ }>;
16081
16085
  deployedEvent: SubgraphMarketDeployedEventFragment;
16082
16086
  };
16083
16087
  export type SubgraphAprConstraintsFragment = {
@@ -16176,6 +16180,10 @@ export type SubgraphMarketDataWithEventsFragment = {
16176
16180
  _asset: SubgraphTokenDataFragment;
16177
16181
  hooksConfig?: SubgraphHooksConfigDataForMarketFragment | null;
16178
16182
  hooks?: SubgraphHooksInstanceDataFragment | null;
16183
+ unpaidWithdrawalBatches: Array<{
16184
+ __typename: "WithdrawalBatch";
16185
+ expiry: string;
16186
+ }>;
16179
16187
  deployedEvent: SubgraphMarketDeployedEventFragment;
16180
16188
  depositRecords: SubgraphDepositDataFragment[];
16181
16189
  borrowRecords: SubgraphBorrowDataFragment[];
@@ -16768,6 +16776,10 @@ export type SubgraphGetLenderAccountWithMarketQuery = {
16768
16776
  _asset: SubgraphTokenDataFragment;
16769
16777
  hooksConfig?: SubgraphHooksConfigDataForMarketFragment | null;
16770
16778
  hooks?: SubgraphHooksInstanceDataFragment | null;
16779
+ unpaidWithdrawalBatches: Array<{
16780
+ __typename: "WithdrawalBatch";
16781
+ expiry: string;
16782
+ }>;
16771
16783
  deployedEvent: SubgraphMarketDeployedEventFragment;
16772
16784
  } | null;
16773
16785
  };
@@ -16857,6 +16869,10 @@ export type SubgraphGetAllMarketsForLenderViewQuery = {
16857
16869
  _asset: SubgraphTokenDataFragment;
16858
16870
  hooksConfig?: SubgraphHooksConfigDataForMarketFragment | null;
16859
16871
  hooks?: SubgraphHooksInstanceDataFragment | null;
16872
+ unpaidWithdrawalBatches: Array<{
16873
+ __typename: "WithdrawalBatch";
16874
+ expiry: string;
16875
+ }>;
16860
16876
  deployedEvent: SubgraphMarketDeployedEventFragment;
16861
16877
  }>;
16862
16878
  controllerAuthorizations: Array<{
@@ -16955,6 +16971,10 @@ export type SubgraphGetAccountsWhereLenderAuthorizedOrActiveQuery = {
16955
16971
  _asset: SubgraphTokenDataFragment;
16956
16972
  hooksConfig?: SubgraphHooksConfigDataForMarketFragment | null;
16957
16973
  hooks?: SubgraphHooksInstanceDataFragment | null;
16974
+ unpaidWithdrawalBatches: Array<{
16975
+ __typename: "WithdrawalBatch";
16976
+ expiry: string;
16977
+ }>;
16958
16978
  deployedEvent: SubgraphMarketDeployedEventFragment;
16959
16979
  };
16960
16980
  controllerAuthorization?: {
@@ -17023,6 +17043,10 @@ export type SubgraphGetAccountsWhereLenderAuthorizedOrActiveQuery = {
17023
17043
  _asset: SubgraphTokenDataFragment;
17024
17044
  hooksConfig?: SubgraphHooksConfigDataForMarketFragment | null;
17025
17045
  hooks?: SubgraphHooksInstanceDataFragment | null;
17046
+ unpaidWithdrawalBatches: Array<{
17047
+ __typename: "WithdrawalBatch";
17048
+ expiry: string;
17049
+ }>;
17026
17050
  deployedEvent: SubgraphMarketDeployedEventFragment;
17027
17051
  }>;
17028
17052
  };