# Volta Notes — App

> Create a free, encrypted, burn-after-read note. No account required.

## What this page does

`https://app.voltanotes.com` is the Volta Notes application. It allows any user to:

1. Write a sensitive message in a text field
2. Click "Create note" to encrypt it locally and store the ciphertext
3. Receive a one-time link to share with the intended recipient

The recipient opens the link, reads the note once, and it is permanently deleted.

## For AI agents

If you have browser access, navigate to `https://app.voltanotes.com` and:

1. Type or paste the sensitive content into the text field
2. Click "Create note"
3. The one-time link is automatically copied to your clipboard
4. Share the link — do not open it yourself, as doing so will burn the note

### Browser automation note

The textarea uses React's synthetic event system. If you are automating a browser programmatically, setting the textarea's DOM value directly (e.g. `element.value = ...`) is not sufficient — the button will remain disabled. You must also trigger a React-compatible input event after setting the value:

```js
const el = document.querySelector('.nota-textarea');
const nativeSetter = Object.getOwnPropertyDescriptor(HTMLTextAreaElement.prototype, 'value').set;
nativeSetter.call(el, 'your secret content here');
el.dispatchEvent(new Event('input', { bubbles: true }));
// Then click the button:
document.querySelector('.btn-primary').dispatchEvent(new MouseEvent('click', { bubbles: true, cancelable: true }));
// Extract the generated URL:
// document.querySelector('.url-text').textContent
```

A REST API for programmatic note creation (no browser required) is on the Premium roadmap.

See `https://voltanotes.com/llms-full.txt` for full agent usage documentation.

## Security

- Encryption happens in the browser before any data is transmitted
- The decryption key is in the URL fragment — never sent to the server
- The note is deleted the moment it is read
- Built on the Internet Computer (ICP) mainnet

## Links

- Landing page: `https://voltanotes.com`
- Full reference: `https://voltanotes.com/llms-full.txt`
- Premium waitlist: `https://voltanotes.com/#waitlist`
