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.
Install the package using npm:
npm install chia-datalayer-mirror-tools
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.
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,
};
Add a mirror to a store:
const storeId = "your-store-id";
const url = "https://your-mirror-url";
MirrorTools.addMirror(storeId, url);
Delete a specific mirror:
MirrorTools.deleteMirror(storeId, url);
Check if a mirror exists for a store:
const exists = await MirrorTools.doesMirrorExist(storeId, url);
Get all owned mirrors for a specific store:
const mirrors = await MirrorTools.getOwnedMirrors(storeId);
Delete all owned mirrors for a specific store:
await MirrorTools.deleteAllOwnedMirrors(storeId);
Add a mirror for the current host:
await MirrorTools.addMirrorForCurrentHost(storeId);
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.