From b9888bf19655b77bb07fe4240d30a9bb3328a076 Mon Sep 17 00:00:00 2001 From: Steven Yi Date: Thu, 7 Nov 2024 16:31:02 -0500 Subject: [PATCH] fix: corrected AoVaultData field to be startTimestamp --- src/types/io.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/io.ts b/src/types/io.ts index 32bb78f7..b2912cf3 100644 --- a/src/types/io.ts +++ b/src/types/io.ts @@ -95,7 +95,7 @@ export type AoEpochObservationData = { export type AoVaultData = { balance: number; - locked: number; + startTimestamp: number; endTimestamp: Timestamp; };