1.0.21 • Published 6 months ago

chia-datalayer-mirror-tools v1.0.21

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

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.

1.0.21

6 months ago

1.0.20

6 months ago

1.0.19

6 months ago

1.0.18

6 months ago

1.0.17

6 months ago

1.0.15

6 months ago

1.0.13

6 months ago

1.0.12

6 months ago

1.0.11

6 months ago

1.0.10

8 months ago

1.0.9

9 months ago

1.0.8

9 months ago

1.0.7

9 months ago

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago