/unisat-api

Unisat Api Client

Primary LanguageTypeScriptMIT LicenseMIT

UniSat API Client πŸš€

δΈ­ζ–‡ζ–‡ζ‘£ NPM version License Downloads Last Commit Contributors

🌟 UniSat API Client is an open-source TypeScript/JavaScript client library based on the UniSat API. It provides a simple and easy-to-use interface to interact with various services of UniSat, including blockchain queries, transactions, inscriptions, BRC-20 tokens, and more.

✨ Features

  • πŸ’Ό Complete encapsulation of all UniSat API functions
  • πŸ“¦ Supports TypeScript with type definitions
  • 🌐 Easy-to-use Promise-based interface
  • βš™οΈ Built-in request rate limiting and error handling
  • πŸ”§ Supports custom configurations (network, base URL, etc.)

πŸ“¦ Installation

Using npm:

npm install unisat-api

Or using yarn:

yarn add unisat-api

πŸš€ Quick Start

import UnisatApiClient from 'unisat-api';
const client = new UnisatApiClient({
  apikey: 'YOUR_API_KEY',
  network: 'mainnet'
});

// πŸ” Get blockchain information
client.blocks.getBlockchainInfo().then(info => {
  console.log(info);
});

// πŸ’° Get address balance
client.address.getAddressBalance('bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh').then(balance => {
  console.log(balance);
});

πŸ› οΈ API Overview

The UniSat API client provides the following main modules:

  • πŸͺ™ runes: Runes-related operations
  • πŸ“ˆ market: Market data queries
  • 🧱 blocks: Blockchain information queries
  • πŸ”„ brc20swap: BRC-20 token swaps
  • 🏦 address: Address-related operations
  • πŸ–‹οΈ inscription: Inscription operations
  • πŸ“œ inscriptions: Inscription queries
  • πŸ’Έ transaction: Transaction-related operations

Each module contains multiple methods for interacting with the corresponding UniSat API endpoints.

πŸ“– Documentation

For detailed explanations of each module and method, please refer to our API Documentation.

βš™οΈ Configuration Options

When creating an instance of UnisatApiClient, you can pass the following configuration options:

  • apikey: Your UniSat API key (required)
  • network: The network to connect to ('mainnet' or 'testnet', default is 'mainnet')
  • baseURL: Custom API base URL (optional)

⚠️ Error Handling

All API methods return a Promise. It is recommended to use a try/catch block or the .catch() method to handle any potential errors.

try {
  const balance = await client.address.getAddressBalance('bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh');
  console.log(balance);
} catch (error) {
  console.error('Error fetching balance:', error);
}

πŸ™Œ Contribution Guidelines

We welcome and appreciate all forms of contributions. If you'd like to contribute to the project, please follow these steps:

  1. 🍴 Fork the repository
  2. 🌿 Create your feature branch (git checkout -b feature/AmazingFeature)
  3. πŸ’» Commit your changes (git commit -m 'Add some AmazingFeature')
  4. πŸš€ Push to the branch (git push origin feature/AmazingFeature)
  5. πŸŽ‰ Open a Pull Request

Before submitting a Pull Request, please ensure your code adheres to our coding standards and passes all tests.

πŸ“„ License

This project is licensed under the MIT License. For more details, please see the LICENSE file.

πŸ”— Related Links

πŸ“¬ Contact Us

If you have any questions or suggestions, please contact us through:

Thank you for using the UniSat API Client! πŸš€