> ## Documentation Index
> Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://developers.fireblocks.com/feedback

```json
{
  "path": "/changelog",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Changelog

<div style={{ display:'flex', flex: 1, width: '100%', top: '64px', left: 0, right: 0, bottom: 0 }}>
  <iframe
    id="changelog-iframe"
    src="https://changelog.fireblocks.com/"
    style={{
  width: '100%',
  height: '100%',
  border: 'none',
  display: 'block',
}}
    title="Fireblocks Changelog"
  />

  <script
    dangerouslySetInnerHTML={{ __html: `
(function() {
var style = document.createElement('style');
style.textContent = '#content { display: flex !important; flex: 1 !important; } #changelog-iframe { aspect-ratio: unset !important; }';
document.head.appendChild(style);

function syncTheme() {
var iframe = document.getElementById('changelog-iframe');
if (!iframe) return;
var isDark = document.documentElement.classList.contains('dark');
iframe.contentWindow?.postMessage(
  { type: 'theme', theme: isDark ? 'dark' : 'light' },
  'https://changelog.fireblocks.com'
);
}

var iframe = document.getElementById('changelog-iframe');
if (iframe) iframe.addEventListener('load', syncTheme);

var observer = new MutationObserver(syncTheme);
observer.observe(document.documentElement, { attributes: true, attributeFilter: ['class'] });
})();
`}}
  />
</div>
