@blockrun/franklin 3.15.102 → 3.15.103

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.
@@ -131,7 +131,7 @@ export function loadSdkSettlements(opts) {
131
131
  function dedupeRows(rows) {
132
132
  const seen = new Map();
133
133
  for (const r of rows) {
134
- const bucket = Math.round(r.ts / 1000);
134
+ const bucket = Math.floor(r.ts / 1000);
135
135
  const microUsd = Math.round(r.costUsd * 1e6);
136
136
  const key = `${bucket}|${r.endpoint}|${r.model ?? ''}|${microUsd}`;
137
137
  // Keep the FIRST row in each bucket (chronologically earliest by ts).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockrun/franklin",
3
- "version": "3.15.102",
3
+ "version": "3.15.103",
4
4
  "description": "Franklin Agent — The AI agent with a wallet. Spends USDC autonomously to get real work done. Pay per action, no subscriptions.",
5
5
  "type": "module",
6
6
  "exports": {