@owney/sdk 0.7.17-beta.3 → 0.7.17

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/README.md CHANGED
@@ -572,14 +572,12 @@ interface AccountAgentApy {
572
572
  weightedApyAfterFee?: number;
573
573
  weightedApyAfterFeeDetails?: AgentApyDetails;
574
574
  apyByChainAndAsset?: ApyByChainAndAsset;
575
- history?: ApyHistoryPoint[];
576
575
  }
577
576
 
578
577
  interface OwneyAccountApy {
579
578
  totalApy: string;
580
579
  agentApy: Record<AgentId, AccountAgentApy>;
581
580
  apyByChainAndAsset: ApyByChainAndAsset;
582
- history?: ApyHistoryPoint[]; // balance-weighted aggregate daily series
583
581
  }
584
582
 
585
583
  type HistoryAction = "Rebalance" | "Deposit" | "Top up" | "Withdraw" | "Earned";