sbv2-solana/website/docs-1/architecture/feeds/history.mdx

31 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
sidebar_position: 30
title: History
---
import MarkdownImage from "/src/components/MarkdownImage";
import Link from "@docusaurus/Link";
import { Typography, Box, Grid } from "@mui/material";
import AggregatorHistoryBuffer from "/idl/accounts/AggregatorHistoryBuffer.md";
import AggregatorSetHistoryBuffer from "/idl/instructions/aggregatorSetHistoryBuffer.md";
A history buffer account stores a set number of accepted results for an aggregator, and given Solanas maximum account size of 10MB, the maximum number of samples a single history buffer can support is 350,000 samples. An aggregator can only have a single history buffer associated with it. This feature allows Switchboard task to parse a history buffer for its calculations, such as the TwapTask.
## Functions
A history buffer account is responsible for the following functions:
- [Historical Data](#historical-data): Define the number of historical samples to store.
### 🚀Historical Data
A history buffer has a static account size when it is initialized, equal to: `12 Bytes + (28 Bytes × Num Samples)`. Each time an aggregator value is updated on-chain, the associated history buffer is shifted to the right, and the last value is dropped.
## Account Schema
### 📦AggregatorHistoryBuffer
<AggregatorHistoryBuffer />