# arbundles

> Arweave bundling library

Latest version **0.11.2** (published 2024-09-04) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install arbundles
pnpm add arbundles
yarn add arbundles
bun add arbundles
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.11.2 |
| Published | 2024-09-04 |
| First published | 2021-09-05 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 12 |
| Unpacked size | 4.8 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 132 |
| Author | Josh Benaron |
| Maintainers | joshbenaron, jessetherobot, joshbundlr |

## Links

- npm: https://www.npmjs.com/package/arbundles
- Repository: https://github.com/Bundlr-Network/arbundles
- npm.io page: https://npm.io/package/arbundles

## Dependencies (12)

- [bs58](https://npm.io/package/bs58.md) ^4.0.1
- [keccak](https://npm.io/package/keccak.md) ^3.0.2
- [base64url](https://npm.io/package/base64url.md) ^3.0.1
- [secp256k1](https://npm.io/package/secp256k1.md) ^5.0.0
- [@irys/arweave](https://npm.io/package/@irys/arweave.md) ^0.0.2
- [@noble/ed25519](https://npm.io/package/@noble/ed25519.md) ^1.6.1
- [@ethersproject/hash](https://npm.io/package/@ethersproject/hash.md) ^5.7.0
- [@ethersproject/bytes](https://npm.io/package/@ethersproject/bytes.md) ^5.7.0
- [@ethersproject/wallet](https://npm.io/package/@ethersproject/wallet.md) ^5.7.0
- [@ethersproject/providers](https://npm.io/package/@ethersproject/providers.md) ^5.7.2
- [@ethersproject/signing-key](https://npm.io/package/@ethersproject/signing-key.md) ^5.7.0
- [@ethersproject/transactions](https://npm.io/package/@ethersproject/transactions.md) ^5.7.0

## Recent versions

- 0.11.2 (latest) — 2024-09-04
- 0.9.0-rc6 (next) — 2023-04-18
- 0.9.0-a3 (alpha) — 2023-04-12
- 0.11.1 — 2024-05-29
- 0.11.0 — 2024-01-17
- 0.10.1 — 2023-12-21
- 0.6.23 — 2023-10-04
- 0.10.0 — 2023-10-03
- 0.9.11 — 2023-09-22
- 0.9.10 — 2023-09-21
- 0.9.9 — 2023-08-25
- 0.9.8 — 2023-06-21
- 0.9.7 — 2023-06-16
- 0.9.6 — 2023-05-13
- 0.9.5 — 2023-04-27
- … 75 more at https://npm.io/package/arbundles/versions

## README

# ANS-104 Bundles
# DEPRECATED
This package has been deprecated and is no longer actively supported. We recommend migrating to [Irys - the world’s first programmable datachain](https://migrate-to.irys.xyz).


**If you want to use Bundlr Network head over to [this repo](https://github.com/Bundlr-Network/js-client)**

A low level library for creating, editing, reading and verifying bundles.

See [ANS-104](https://github.com/ArweaveTeam/arweave-standards/blob/master/ans/ANS-104.md) for more details.

## Installing the library

Using npm:

`npm install arbundles`

Using yarn:

`yarn add arbundles`

## Creating bundles

```ts
import { bundleAndSignData, createData } from "arbundles";

const dataItems = [createData("some data"), createData("some other data")];

const signer = new ArweaveSigner(jwk);

const bundle = await bundleAndSignData(dataItems, signer);
```

---
_Source: https://npm.io/package/arbundles · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
