|
7 | 7 |
|
8 | 8 | Use Arweave browser wallets ([Wander](https://wander.app) or any other compatible wallet) from Node.js applications. Perfect for CLI tools and scripts that need secure wallet interactions without exposing private keys. |
9 | 9 |
|
| 10 | +## 📑 Table of Contents |
| 11 | + |
| 12 | +- [Features](#-features) |
| 13 | +- [Installation](#-installation) |
| 14 | +- [Quick Start](#-quick-start) |
| 15 | +- [API Reference](#-api-reference) |
| 16 | + - [Initialization & Connection](#initialization--connection) |
| 17 | + - [Wallet APIs](#wallet-apis) |
| 18 | +- [Configuration](#️-configuration) |
| 19 | + - [Port Configuration](#port-configuration) |
| 20 | + - [Automatic Port Freeing](#automatic-port-freeing) |
| 21 | + - [Request Timeout Configuration](#request-timeout-configuration) |
| 22 | +- [Usage Examples](#-usage-examples) |
| 23 | + - [CLI Tool](#cli-tool) |
| 24 | + - [AR Transfer](#ar-transfer) |
| 25 | + - [AO Token (WNDR) Transfer](#ao-token-wndr-transfer) |
| 26 | + - [ArNS domain purchase](#arns-domain-purchase) |
| 27 | + - [Batch Data Item](#batch-data-item) |
| 28 | + - [Token, Balance & Tier](#token-balance--tier) |
| 29 | +- [Security](#-security) |
| 30 | +- [Browser Wallet Compatibility](#-browser-wallet-compatibility) |
| 31 | +- [Troubleshooting](#-troubleshooting) |
| 32 | + - [Port Already in Use](#port-already-in-use) |
| 33 | + - [Browser Doesn't Open Automatically](#browser-doesnt-open-automatically) |
| 34 | + - [Request Timeout](#request-timeout) |
| 35 | +- [License](#-license) |
| 36 | + |
10 | 37 | ## ✨ Features |
11 | 38 |
|
12 | 39 | - 🔐 **Full Arweave Wallet API Support** - Complete implementation of the arweaveWallet API |
@@ -718,6 +745,8 @@ async function batchUpload(files: string[]) { |
718 | 745 | console.log(` ${i + 1}. ${item.id}`) |
719 | 746 | }) |
720 | 747 |
|
| 748 | + // upload the signed data items to the network |
| 749 | + |
721 | 750 | await arweaveWallet.close('success') |
722 | 751 | } |
723 | 752 | ``` |
|
0 commit comments