> For the complete documentation index, see [llms.txt](https://unibaseio.gitbook.io/unibase-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://unibaseio.gitbook.io/unibase-docs/get-started/da-quickstart.md).

# Unibase DA Quick Start

Upload and verify data with the Unibase DA SDK in 5 minutes.

### 1. Clone SDK

```bash
git clone https://github.com/unibaseio/unibase-da-sdk.git
cd unibase-da-sdk
```

### 2. Set Environment

```bash
export CHAIN_TYPE=base-sepolia
```

### 3. Upload a File

```bash
go run upload.go --path=./your-file --sk=<your-secret-key>
```

### 4. Supported Networks

| Network      | `CHAIN_TYPE`   | Status     |
| ------------ | -------------- | ---------- |
| Base Sepolia | `base-sepolia` | ✅ Testnet  |
| Base Mainnet | `base`         | 🛣 Roadmap |
| BSC          | `bsc-mainnet`  | 🛣 Roadmap |

### 5. Data Flow

```
Your file → Reed-Solomon encoding → Distributed storage nodes → On-chain verification
```

***

### Next Steps

* [Full Quick Start](/unibase-docs/unibase-da/quick-start.md)
* [Node Operations](/unibase-docs/unibase-da/nodes-bootstrap.md) — Run Storage, Validator, or Stream nodes
* [Docker](/unibase-docs/unibase-da/nodes-bootstrap/docker.md)
