Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chia-datalayer-mirror-tools

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chia-datalayer-mirror-tools

Abstractions to make adding and deleting mirrors easier

  • 1.0.21
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

chia-datalayer-mirror-tools

chia-datalayer-mirror-tools is a package that simplifies the management of mirrors for your Chia datastore. It provides functionalities to get, add, and delete mirrors for a specific store, configure your settings, and more.

Installation

Install the package using npm:

npm install chia-datalayer-mirror-tools

Usage

First, require the module in your project:

const MirrorTools = require("chia-datalayer-mirror-tools");

You can then utilize the various functions provided by the module to manage your Chia mirrors.

Configuration

Configure the module with your specific settings:

const defaultConfig = require("./defaultConfig"); // Your configuration file
MirrorTools.configure(defaultConfig);

Here's the default configuration:

module.exports = {
  full_node_host: "https://localhost:8555",
  datalayer_host: "https://localhost:8562",
  wallet_host: "https://localhost:9256",
  certificate_folder_path: "~/.chia/mainnet/config/ssl",
  default_wallet_id: 1,
  default_fee: 300_000_000,
  default_mirror_coin_amount: 300_000_000,
};

Adding a Mirror

Add a mirror to a store:

const storeId = "your-store-id";
const url = "https://your-mirror-url";
MirrorTools.addMirror(storeId, url);

Deleting a Mirror

Delete a specific mirror:

MirrorTools.deleteMirror(storeId, url);

Checking if a Mirror Exists

Check if a mirror exists for a store:

const exists = await MirrorTools.doesMirrorExist(storeId, url);

Get All Owned Mirrors

Get all owned mirrors for a specific store:

const mirrors = await MirrorTools.getOwnedMirrors(storeId);

Delete All Owned Mirrors

Delete all owned mirrors for a specific store:

await MirrorTools.deleteAllOwnedMirrors(storeId);

Add a Mirror for the Current Host

Add a mirror for the current host:

await MirrorTools.addMirrorForCurrentHost(storeId);

Contributing

If you want to contribute to the package, please fork the repository, create a branch for your feature or bug fix, and open a pull request.

Keywords

FAQs

Package last updated on 09 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc