You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Timestamped response. Returns the endpoint response data along with the chain-tip of the indexer, which details at which point in the chain\'s history the data was correct as-of.
3230
+
* @export
3231
+
* @interface TimestampedDatums
3232
+
*/
3233
+
exportinterfaceTimestampedDatums{
3234
+
/**
3235
+
* Record of Datum by datum hash
3236
+
* @type {Record<string, Datum | undefined>}
3237
+
* @memberof TimestampedDatum
3238
+
*/
3239
+
data: Record<string,Datum|undefined>;
3240
+
/**
3241
+
*
3242
+
* @type {LastUpdated}
3243
+
* @memberof TimestampedDatum
3244
+
*/
3245
+
last_updated: LastUpdated;
3246
+
}
3216
3247
/**
3217
3248
* Timestamped response. Returns the endpoint response data along with the chain-tip of the indexer, which details at which point in the chain\'s history the data was correct as-of.
0 commit comments