From a9d8fe60ab433570706fb411dd1f245773688a63 Mon Sep 17 00:00:00 2001 From: tryiou Date: Thu, 16 Nov 2023 13:47:58 +0100 Subject: [PATCH 1/9] refactor "downloadAndExtract" functions --- index.js | 58 ++++++++++++++++++++++++++++++-------------------------- 1 file changed, 31 insertions(+), 27 deletions(-) diff --git a/index.js b/index.js index 43e1fd61..2e3d1931 100644 --- a/index.js +++ b/index.js @@ -95,61 +95,64 @@ const userDataPath = app.getPath('userData'); const configurationFilesDirectory = path.join(userDataPath, 'blockchain-configuration-files'); const zipURL = 'https://github.com/blocknetdx/blockchain-configuration-files/archive/refs/heads/master.zip'; -const downloadAndExtract = async (url, destinationFolder) => { +async function removeDirectory(directory) { + try { + await fs.removeAsync(directory); // Use fs.removeAsync + } catch (error) { + console.error(`Error deleting directory ${directory}:`, error); + } +} + +async function downloadAndExtract(url, destinationFolder) { const axios = require('axios'); const AdmZip = require('adm-zip'); - - async function removeDirectory(directory) { - const fsPromises = require('fs/promises') - try { - await fsPromises.rm(directory, { recursive: true }); - } catch (error) { - console.error(`Error deleting directory ${directory}:`, error); - } - } + // Download the ZIP file - const response = await axios.get(url, { - responseType: 'arraybuffer', - }); + const response = await axios.get(url, { responseType: 'arraybuffer' }); // Save the ZIP file const zipPath = path.join(userDataPath, 'manifest.zip'); - fs.writeFileSync(zipPath, response.data); + await fs.outputFileAsync(zipPath, response.data); // Use fs.outputFileAsync // Check if the destination folder exists, and delete it if it does - if (fs.existsSync(destinationFolder)) { + if (await fs.existsAsync(destinationFolder)) { // Use fs.existsAsync await removeDirectory(destinationFolder); } // Extract the ZIP contents into a temporary folder const tempFolder = path.join(userDataPath, 'temp-extract-folder'); - // Check if the tmp tempFolder exists, and delete it if it does - if (fs.existsSync(tempFolder)) { + + // Check if the tmp tempFolder exists, and delete it if it does + if (await fs.existsAsync(tempFolder)) { // Use fs.existsAsync await removeDirectory(tempFolder); } - fs.ensureDirSync(tempFolder); + + await fs.ensureDirAsync(tempFolder); // Use fs.ensureDirAsync const zip = new AdmZip(zipPath); zip.extractAllTo(tempFolder, true); // Find the "blockchain-configuration-files-master" folder and move its contents to the destination folder const masterFolder = path.join(tempFolder, 'blockchain-configuration-files-master'); const foldersToIgnore = ["autobuild", "manifests", "tools"]; - if (fs.existsSync(masterFolder)) { - const entries = fs.readdirSync(masterFolder); - entries.forEach((entry) => { + + if (await fs.existsAsync(masterFolder)) { // Use fs.existsAsync + const entries = await fs.readdirAsync(masterFolder); + + for (const entry of entries) { // Check if the entry is one of the folders to ignore if (!foldersToIgnore.includes(entry)) { const sourcePath = path.join(masterFolder, entry); const destPath = path.join(destinationFolder, entry); - fs.moveSync(sourcePath, destPath); + await fs.moveAsync(sourcePath, destPath); // Use fs.moveAsync } - }); + } } // Clean up the temporary ZIP file and folder - fs.unlinkSync(zipPath); - fs.removeSync(tempFolder); - } + await fs.unlinkAsync(zipPath); // Use fs.unlinkAsync + await removeDirectory(tempFolder); +} + (async () => { try { console.log('Updating "blockchain-configuration-files"'); @@ -157,7 +160,7 @@ const downloadAndExtract = async (url, destinationFolder) => { await downloadAndExtract(zipURL, configurationFilesDirectory); console.log('"blockchain-configuration-files" updated successfully.'); - + // Proceed with the next code lines here. } catch (error) { console.error('Error updating "blockchain-configuration-files":', error); @@ -165,6 +168,7 @@ const downloadAndExtract = async (url, destinationFolder) => { })(); // mod to get latest manifest from git repo << + const getManifest = () => { let manifest = storage.getItem('manifest'); if(!manifest) { From 01d3f4c7b62235a9ec0587f738aa716c2ec63f5b Mon Sep 17 00:00:00 2001 From: tryiou Date: Thu, 16 Nov 2023 14:00:28 +0100 Subject: [PATCH 2/9] reorder logic "downloadAndExtract" --- index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index 2e3d1931..5c3aae85 100644 --- a/index.js +++ b/index.js @@ -118,15 +118,13 @@ async function downloadAndExtract(url, destinationFolder) { if (await fs.existsAsync(destinationFolder)) { // Use fs.existsAsync await removeDirectory(destinationFolder); } - - // Extract the ZIP contents into a temporary folder - const tempFolder = path.join(userDataPath, 'temp-extract-folder'); - // Check if the tmp tempFolder exists, and delete it if it does if (await fs.existsAsync(tempFolder)) { // Use fs.existsAsync await removeDirectory(tempFolder); } + // Extract the ZIP contents into a temporary folder + const tempFolder = path.join(userDataPath, 'temp-extract-folder'); await fs.ensureDirAsync(tempFolder); // Use fs.ensureDirAsync const zip = new AdmZip(zipPath); zip.extractAllTo(tempFolder, true); From d865266f77470d29e2db98aafaed73b95430ac28 Mon Sep 17 00:00:00 2001 From: tryiou Date: Thu, 16 Nov 2023 14:03:26 +0100 Subject: [PATCH 3/9] reorder logic "downloadAndExtract" --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 5c3aae85..4d0506c4 100644 --- a/index.js +++ b/index.js @@ -118,13 +118,14 @@ async function downloadAndExtract(url, destinationFolder) { if (await fs.existsAsync(destinationFolder)) { // Use fs.existsAsync await removeDirectory(destinationFolder); } + + const tempFolder = path.join(userDataPath, 'temp-extract-folder'); // Check if the tmp tempFolder exists, and delete it if it does if (await fs.existsAsync(tempFolder)) { // Use fs.existsAsync await removeDirectory(tempFolder); } // Extract the ZIP contents into a temporary folder - const tempFolder = path.join(userDataPath, 'temp-extract-folder'); await fs.ensureDirAsync(tempFolder); // Use fs.ensureDirAsync const zip = new AdmZip(zipPath); zip.extractAllTo(tempFolder, true); From ba602d54c35f0ae0c794f230255e64352098f370 Mon Sep 17 00:00:00 2001 From: tryiou Date: Thu, 16 Nov 2023 16:26:47 +0100 Subject: [PATCH 4/9] change path "blockchain-configuration-files" --- index.js | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/index.js b/index.js index 4d0506c4..83a6c213 100644 --- a/index.js +++ b/index.js @@ -92,12 +92,13 @@ ipcMain.on('getPlatform', e => e.returnValue = process.platform); // mod to get latest manifest from git repo >> const userDataPath = app.getPath('userData'); -const configurationFilesDirectory = path.join(userDataPath, 'blockchain-configuration-files'); +const configurationFilesDirectory = path.join(userDataPath, 'Local Storage', 'blockchain-configuration-files'); const zipURL = 'https://github.com/blocknetdx/blockchain-configuration-files/archive/refs/heads/master.zip'; async function removeDirectory(directory) { try { - await fs.removeAsync(directory); // Use fs.removeAsync + await fs.removeAsync(directory); + console.log(`Directory ${directory} removed successfully.`); } catch (error) { console.error(`Error deleting directory ${directory}:`, error); } @@ -107,34 +108,43 @@ async function downloadAndExtract(url, destinationFolder) { const axios = require('axios'); const AdmZip = require('adm-zip'); + console.log(`Downloading from ${url}`); + // Download the ZIP file const response = await axios.get(url, { responseType: 'arraybuffer' }); + console.log('ZIP file downloaded successfully.'); // Save the ZIP file - const zipPath = path.join(userDataPath, 'manifest.zip'); - await fs.outputFileAsync(zipPath, response.data); // Use fs.outputFileAsync + const zipPath = path.join(userDataPath, 'Local Storage', 'manifest.zip'); + await fs.outputFileAsync(zipPath, response.data); + console.log(`ZIP file saved to ${zipPath}`); // Check if the destination folder exists, and delete it if it does - if (await fs.existsAsync(destinationFolder)) { // Use fs.existsAsync + if (await fs.existsAsync(destinationFolder)) { await removeDirectory(destinationFolder); + console.log(`Destination folder ${destinationFolder} exists and removed.`); } - const tempFolder = path.join(userDataPath, 'temp-extract-folder'); - // Check if the tmp tempFolder exists, and delete it if it does - if (await fs.existsAsync(tempFolder)) { // Use fs.existsAsync + // Check if the temporary folder exists, and delete it if it does + const tempFolder = path.join(userDataPath, 'Local Storage', 'temp-extract-folder'); + if (await fs.existsAsync(tempFolder)) { await removeDirectory(tempFolder); + console.log(`Temporary folder ${tempFolder} exists and removed.`); } // Extract the ZIP contents into a temporary folder - await fs.ensureDirAsync(tempFolder); // Use fs.ensureDirAsync + await fs.ensureDirAsync(tempFolder); + console.log(`Ensured existence of temporary folder ${tempFolder}.`); + const zip = new AdmZip(zipPath); zip.extractAllTo(tempFolder, true); + console.log(`ZIP contents extracted to ${tempFolder}.`); // Find the "blockchain-configuration-files-master" folder and move its contents to the destination folder const masterFolder = path.join(tempFolder, 'blockchain-configuration-files-master'); const foldersToIgnore = ["autobuild", "manifests", "tools"]; - if (await fs.existsAsync(masterFolder)) { // Use fs.existsAsync + if (await fs.existsAsync(masterFolder)) { const entries = await fs.readdirAsync(masterFolder); for (const entry of entries) { @@ -142,14 +152,18 @@ async function downloadAndExtract(url, destinationFolder) { if (!foldersToIgnore.includes(entry)) { const sourcePath = path.join(masterFolder, entry); const destPath = path.join(destinationFolder, entry); - await fs.moveAsync(sourcePath, destPath); // Use fs.moveAsync + await fs.moveAsync(sourcePath, destPath); + console.log(`Moved ${entry} to ${destinationFolder}.`); } } } // Clean up the temporary ZIP file and folder - await fs.unlinkAsync(zipPath); // Use fs.unlinkAsync + await fs.unlinkAsync(zipPath); + console.log(`Temporary ZIP file ${zipPath} removed.`); + await removeDirectory(tempFolder); + console.log(`Temporary folder ${tempFolder} removed.`); } (async () => { From ab955980a10609d8a80824ed26185040eab58e4b Mon Sep 17 00:00:00 2001 From: tryiou Date: Thu, 16 Nov 2023 16:36:17 +0100 Subject: [PATCH 5/9] downgrade electron version to 12.x --- package-lock.json | 607 +++++++++++++++++++++++----------------------- package.json | 2 +- 2 files changed, 306 insertions(+), 303 deletions(-) diff --git a/package-lock.json b/package-lock.json index f9afdae2..20e43128 100644 --- a/package-lock.json +++ b/package-lock.json @@ -848,9 +848,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.2.tgz", - "integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", + "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==", "dev": true, "engines": { "node": ">=6.9.0" @@ -1197,9 +1197,9 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", - "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", @@ -1428,9 +1428,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", - "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.3.tgz", + "integrity": "sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -1440,9 +1440,9 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz", - "integrity": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1455,14 +1455,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz", - "integrity": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.15" + "@babel/plugin-transform-optional-chaining": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -1799,9 +1799,9 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1928,9 +1928,9 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1960,9 +1960,9 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1975,9 +1975,9 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz", - "integrity": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.3.tgz", + "integrity": "sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -1990,18 +1990,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz", - "integrity": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.3.tgz", + "integrity": "sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==", "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-replace-supers": "^7.22.20", "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" }, @@ -2037,13 +2037,13 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" + "@babel/template": "^7.22.15" }, "engines": { "node": ">=6.9.0" @@ -2067,9 +2067,9 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz", - "integrity": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2082,12 +2082,12 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2098,9 +2098,9 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2113,12 +2113,12 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2129,9 +2129,9 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz", - "integrity": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz", + "integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2144,13 +2144,13 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2161,9 +2161,9 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2176,9 +2176,9 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2191,12 +2191,12 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz", - "integrity": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2207,12 +2207,12 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz", - "integrity": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-simple-access": "^7.22.5" }, @@ -2224,13 +2224,13 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz", - "integrity": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", + "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", "dev": true, "dependencies": { "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.0", + "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.20" }, @@ -2242,12 +2242,12 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2274,9 +2274,9 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2289,13 +2289,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" + "@babel/helper-replace-supers": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -2305,9 +2305,9 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz", - "integrity": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.3.tgz", + "integrity": "sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", @@ -2322,9 +2322,9 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz", - "integrity": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2337,9 +2337,9 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2352,9 +2352,9 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz", - "integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", @@ -2368,9 +2368,9 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2412,9 +2412,9 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2427,9 +2427,9 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5", @@ -2443,9 +2443,9 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2458,9 +2458,9 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2473,9 +2473,9 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2488,9 +2488,9 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz", - "integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.22.5" @@ -2503,12 +2503,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { @@ -2665,19 +2665,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", - "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.3.tgz", + "integrity": "sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==", "dev": true, "dependencies": { "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", + "@babel/generator": "^7.23.3", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.0", - "@babel/types": "^7.23.0", + "@babel/parser": "^7.23.3", + "@babel/types": "^7.23.3", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -2686,12 +2686,12 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", - "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.3.tgz", + "integrity": "sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==", "dev": true, "dependencies": { - "@babel/types": "^7.23.0", + "@babel/types": "^7.23.3", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -2727,9 +2727,9 @@ } }, "node_modules/@babel/types": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", - "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.3.tgz", + "integrity": "sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==", "dev": true, "dependencies": { "@babel/helper-string-parser": "^7.22.5", @@ -2817,9 +2817,9 @@ } }, "node_modules/@electron/asar": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.7.tgz", - "integrity": "sha512-8FaSCAIiZGYFWyjeevPQt+0e9xCK9YmJ2Rjg5SXgdsXon6cRnU0Yxnbe6CvJbQn26baifur2Y2G5EBayRIsjyg==", + "version": "3.2.8", + "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.8.tgz", + "integrity": "sha512-cmskk5M06ewHMZAplSiF4AlME3IrnnZhKnWbtwKVLRkdJkKyUVjMLhDIiPIx/+6zQWVlKX/LtmK9xDme7540Sg==", "dev": true, "dependencies": { "commander": "^5.0.0", @@ -3850,9 +3850,9 @@ } }, "node_modules/@jsdoc/salty": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.5.tgz", - "integrity": "sha512-TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.6.tgz", + "integrity": "sha512-aA+awb5yoml8TQ3CzI5Ue7sM3VMRC4l1zJJW4fgZ8OCL1wshJZhNzaf0PL85DSnOUw6QuFgeHGD/eq/xwwAF2g==", "dev": true, "dependencies": { "lodash": "^4.17.21" @@ -5221,9 +5221,9 @@ } }, "node_modules/@types/body-parser": { - "version": "1.19.4", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.4.tgz", - "integrity": "sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==", + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dev": true, "dependencies": { "@types/connect": "*", @@ -5231,9 +5231,9 @@ } }, "node_modules/@types/bonjour": { - "version": "3.5.12", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.12.tgz", - "integrity": "sha512-ky0kWSqXVxSqgqJvPIkgFkcn4C8MnRog308Ou8xBBIVo39OmUFy+jqNe0nPwLCDFxUpmT9EvT91YzOJgkDRcFg==", + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -5252,18 +5252,18 @@ } }, "node_modules/@types/connect": { - "version": "3.4.37", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.37.tgz", - "integrity": "sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==", + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.2.tgz", - "integrity": "sha512-gX2j9x+NzSh4zOhnRPSdPPmTepS4DfxES0AvIFv3jGv5QyeAJf6u6dY5/BAoAJU9Qq1uTvwOku8SSC2GnCRl6Q==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.3.tgz", + "integrity": "sha512-6mfQ6iNvhSKCZJoY6sIG3m0pKkdUcweVNOLuBBKvoWGzl2yRxOJcYOTRyLKt3nxXvBLJWa6QkW//tgbIwJehmA==", "dev": true, "dependencies": { "@types/express-serve-static-core": "*", @@ -5277,27 +5277,27 @@ "dev": true }, "node_modules/@types/cors": { - "version": "2.8.15", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.15.tgz", - "integrity": "sha512-n91JxbNLD8eQIuXDIChAN1tCKNWCEgpceU9b7ZMbFA+P+Q4yIeh80jizFLEvolRPc1ES0VdwFlGv+kJTSirogw==", + "version": "2.8.16", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.16.tgz", + "integrity": "sha512-Trx5or1Nyg1Fq138PCuWqoApzvoSLWzZ25ORBiHMbbUT42g578lH1GT4TwYDbiUOLFuDsCkfLneT2105fsFWGg==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/debug": { - "version": "4.1.10", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.10.tgz", - "integrity": "sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==", + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", "dev": true, "dependencies": { "@types/ms": "*" } }, "node_modules/@types/eslint": { - "version": "8.44.6", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.6.tgz", - "integrity": "sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw==", + "version": "8.44.7", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", + "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", "dev": true, "dependencies": { "@types/estree": "*", @@ -5305,9 +5305,9 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.6", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.6.tgz", - "integrity": "sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "dev": true, "dependencies": { "@types/eslint": "*", @@ -5321,9 +5321,9 @@ "dev": true }, "node_modules/@types/express": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.20.tgz", - "integrity": "sha512-rOaqlkgEvOW495xErXMsmyX3WKBInbhG5eqojXYi3cGUaLoRDlXa5d52fkfWZT963AZ3v2eZ4MbKE6WpDAGVsw==", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "dev": true, "dependencies": { "@types/body-parser": "*", @@ -5333,9 +5333,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.39", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.39.tgz", - "integrity": "sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==", + "version": "4.17.41", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", + "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", "dev": true, "dependencies": { "@types/node": "*", @@ -5354,54 +5354,54 @@ } }, "node_modules/@types/http-cache-semantics": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz", - "integrity": "sha512-V46MYLFp08Wf2mmaBhvgjStM3tPa+2GAdy/iqoX+noX1//zje2x4XmrIU0cAwyClATsTmahbtoQ2EwP7I5WSiA==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", "dev": true }, "node_modules/@types/http-errors": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.3.tgz", - "integrity": "sha512-pP0P/9BnCj1OVvQR2lF41EkDG/lWWnDyA203b/4Fmi2eTyORnBtcDoKDwjWQthELrBvWkMOrvSOnZ8OVlW6tXA==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", "dev": true }, "node_modules/@types/http-proxy": { - "version": "1.17.13", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.13.tgz", - "integrity": "sha512-GkhdWcMNiR5QSQRYnJ+/oXzu0+7JJEPC8vkWXK351BkhjraZF+1W13CUYARUvX9+NqIU2n6YHA4iwywsc/M6Sw==", + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/jasmine": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-5.1.1.tgz", - "integrity": "sha512-qL4GoZHHJl1JQ0vK31OtXMfkfGxYJnysmYz9kk0E8j5W96ThKykBF90uD3PcVmQUAzulbsaus2eFiBhCH5itfw==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-5.1.2.tgz", + "integrity": "sha512-GJzYZWAr7aZuVsQwo77ErgdnqiXiz1lwsXXKgsJEwMlAxWQqjpiTGh0JOpLGXSlIFvIAFbgZTHs0u+jBzh/GFg==", "dev": true }, "node_modules/@types/jasminewd2": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/@types/jasminewd2/-/jasminewd2-2.0.12.tgz", - "integrity": "sha512-C4rXKMnGqLqTw4mgfiT0fL91g5oFAUhreR8jeeYk4xYcgh1/CImqgn5pWcErnpJJS43XFUfHGit0sSPQ39G1Pg==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/jasminewd2/-/jasminewd2-2.0.13.tgz", + "integrity": "sha512-aJ3wj8tXMpBrzQ5ghIaqMisD8C3FIrcO6sDKHqFbuqAsI7yOxj0fA7MrRCPLZHIVUjERIwsMmGn/vB0UQ9u0Hg==", "dev": true, "dependencies": { "@types/jasmine": "*" } }, "node_modules/@types/jquery": { - "version": "3.5.25", - "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.25.tgz", - "integrity": "sha512-gykx2c+OZf5nx2tv/5fDQqmvGgTiXshELy5jf9IgXPtVfSBl57IUYByN4osbwMXwJijWGOEYQABzGaFZE79A0Q==", + "version": "3.5.27", + "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.27.tgz", + "integrity": "sha512-TR28Y8ezIGgfyA02UOh9x+Fy16/1qWYAnvtRd2gTBJuccX/vmddyti0MezLkTv7f+OLofVc2T961VPyKv1tXJQ==", "dev": true, "dependencies": { "@types/sizzle": "*" } }, "node_modules/@types/json-schema": { - "version": "7.0.14", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.14.tgz", - "integrity": "sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==", + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true }, "node_modules/@types/keyv": { @@ -5414,9 +5414,9 @@ } }, "node_modules/@types/linkify-it": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.4.tgz", - "integrity": "sha512-hPpIeeHb/2UuCw06kSNAOVWgehBLXEo0/fUs0mw3W2qhqX89PI2yvok83MnuctYGCPrabGIoi0fFso4DQ+sNUQ==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.5.tgz", + "integrity": "sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==", "dev": true }, "node_modules/@types/markdown-it": { @@ -5430,63 +5430,63 @@ } }, "node_modules/@types/mdurl": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.4.tgz", - "integrity": "sha512-ARVxjAEX5TARFRzpDRVC6cEk0hUIXCCwaMhz8y7S1/PxU6zZS1UMjyobz7q4w/D/R552r4++EhwmXK1N2rAy0A==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.5.tgz", + "integrity": "sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==", "dev": true }, "node_modules/@types/mime": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.4.tgz", - "integrity": "sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw==", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true }, "node_modules/@types/minimist": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.4.tgz", - "integrity": "sha512-Kfe/D3hxHTusnPNRbycJE1N77WHDsdS4AjUYIzlDzhDrS47NrwuL3YW4VITxwR7KCVpzwgy4Rbj829KSSQmwXQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", "dev": true }, "node_modules/@types/ms": { - "version": "0.7.33", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.33.tgz", - "integrity": "sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ==", + "version": "0.7.34", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", + "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", "dev": true }, "node_modules/@types/node": { - "version": "20.8.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.10.tgz", - "integrity": "sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==", + "version": "20.9.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz", + "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/node-forge": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.8.tgz", - "integrity": "sha512-vGXshY9vim9CJjrpcS5raqSjEfKlJcWy2HNdgUasR66fAnVEYarrf1ULV4nfvpC1nZq/moA9qyqBcu83x+Jlrg==", + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.9.tgz", + "integrity": "sha512-meK88cx/sTalPSLSoCzkiUB4VPIFHmxtXm5FaaqRDqBX2i/Sy8bJ4odsan0b20RBjPh06dAQ+OTTdnyQyhJZyQ==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/normalize-package-data": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.3.tgz", - "integrity": "sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", "dev": true }, "node_modules/@types/parse-json": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.1.tgz", - "integrity": "sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "dev": true }, "node_modules/@types/plist": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.4.tgz", - "integrity": "sha512-pTa9xUFQFM9WJGSWHajYNljD+DbVylE1q9IweK1LBhUYJdJ28YNU8j3KZ4Q1Qw+cSl4+QLLLOVmqNjhhvVO8fA==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.5.tgz", + "integrity": "sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==", "dev": true, "optional": true, "dependencies": { @@ -5501,21 +5501,21 @@ "dev": true }, "node_modules/@types/qs": { - "version": "6.9.9", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.9.tgz", - "integrity": "sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg==", + "version": "6.9.10", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.10.tgz", + "integrity": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==", "dev": true }, "node_modules/@types/range-parser": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.6.tgz", - "integrity": "sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA==", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "dev": true }, "node_modules/@types/responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/4YQT5Kp6HxUDb4yhRkm0bJ7TbjvTddqX7PZ5hz6qV3pxSo72f/6YPRo+Mu2DU307tm9IioO69l7uAwn5XNcFA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", "dev": true, "dependencies": { "@types/node": "*" @@ -5528,15 +5528,15 @@ "dev": true }, "node_modules/@types/selenium-webdriver": { - "version": "3.0.25", - "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.25.tgz", - "integrity": "sha512-gkb8rx0kjHuaVUzIfKa1tVVjnEmjYLufDmoOHKPsaoRraTcNjV9W9ruFWi3Xv821c7M5gZVmrGOT8BJYsY/acQ==", + "version": "3.0.26", + "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.26.tgz", + "integrity": "sha512-dyIGFKXfUFiwkMfNGn1+F6b80ZjR3uSYv1j6xVJSDlft5waZ2cwkHW4e7zNzvq7hiEackcgvBpmnXZrI1GltPg==", "dev": true }, "node_modules/@types/send": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.3.tgz", - "integrity": "sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==", + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dev": true, "dependencies": { "@types/mime": "^1", @@ -5544,18 +5544,18 @@ } }, "node_modules/@types/serve-index": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.3.tgz", - "integrity": "sha512-4KG+yMEuvDPRrYq5fyVm/I2uqAJSAwZK9VSa+Zf+zUq9/oxSSvy3kkIqyL+jjStv6UCVi8/Aho0NHtB1Fwosrg==", + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "dev": true, "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { - "version": "1.15.4", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.4.tgz", - "integrity": "sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==", + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", "dev": true, "dependencies": { "@types/http-errors": "*", @@ -5564,45 +5564,45 @@ } }, "node_modules/@types/sizzle": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.5.tgz", - "integrity": "sha512-tAe4Q+OLFOA/AMD+0lq8ovp8t3ysxAOeaScnfNdZpUxaGl51ZMDEITxkvFl1STudQ58mz6gzVGl9VhMKhwRnZQ==", + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.6.tgz", + "integrity": "sha512-m04Om5Gz6kbjUwAQ7XJJQ30OdEFsSmAVsvn4NYwcTRyMVpKKa1aPuESw1n2CxS5fYkOQv3nHgDKeNa8e76fUkw==", "dev": true }, "node_modules/@types/sockjs": { - "version": "0.3.35", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.35.tgz", - "integrity": "sha512-tIF57KB+ZvOBpAQwSaACfEu7htponHXaFzP7RfKYgsOS0NoYnn+9+jzp7bbq4fWerizI3dTB4NfAZoyeQKWJLw==", + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/triple-beam": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.4.tgz", - "integrity": "sha512-HlJjF3wxV4R2VQkFpKe0YqJLilYNgtRtsqqZtby7RkVsSs+i+vbyzjtUwpFEdUCKcrGzCiEJE7F/0mKjh0sunA==" + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", + "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==" }, "node_modules/@types/verror": { - "version": "1.10.8", - "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.8.tgz", - "integrity": "sha512-YhUhnxRYs/NiVUbIs3F/EzviDP/NZCEAE2Mx5DUqLdldUmphOhFCVh7Kc+7zlYEExM0P8dzfbJi0yRlNb2Bw5g==", + "version": "1.10.9", + "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.9.tgz", + "integrity": "sha512-MLx9Z+9lGzwEuW16ubGeNkpBDE84RpB/NyGgg6z2BTpWzKkGU451cAY3UkUzZEp72RHF585oJ3V8JVNqIplcAQ==", "dev": true, "optional": true }, "node_modules/@types/ws": { - "version": "8.5.8", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.8.tgz", - "integrity": "sha512-flUksGIQCnJd6sZ1l5dqCEG/ksaoAg/eUwiLAGTJQcfgvZJKF++Ta4bJA6A5aPSJmsr+xlseHn4KLgVlNnvPTg==", + "version": "8.5.9", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.9.tgz", + "integrity": "sha512-jbdrY0a8lxfdTp/+r7Z4CkycbOFN8WX+IOchLJr3juT/xzbJ8URyTVSJ/hvNdadTgM1mnedb47n+Y31GsFnQlg==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/yauzl": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.2.tgz", - "integrity": "sha512-Km7XAtUIduROw7QPgvcft0lIupeG8a8rdKL8RiSyKvlE7dYY31fEn41HVuQsRFDuROA8tA4K2UVL+WdfFmErBA==", + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", + "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", "dev": true, "optional": true, "dependencies": { @@ -6360,9 +6360,9 @@ "dev": true }, "node_modules/axios": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.0.tgz", - "integrity": "sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", "dependencies": { "follow-redirects": "^1.15.0", "form-data": "^4.0.0", @@ -7097,9 +7097,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001561", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001561.tgz", - "integrity": "sha512-NTt0DNoKe958Q0BE0j0c1V9jbUzhBxHIEJy7asmGrpE0yG63KTV7PLHPnK2E1O9RsQrQ081I3NLuXGS6zht3cw==", + "version": "1.0.30001562", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001562.tgz", + "integrity": "sha512-kfte3Hym//51EdX4239i+Rmp20EsLIYGdPkERegTgU19hQWCRhsRFGKHTliUlsry53tv17K7n077Kqa0WJU4ng==", "dev": true, "funding": [ { @@ -8641,9 +8641,9 @@ } }, "node_modules/electron": { - "version": "26.4.3", - "resolved": "https://registry.npmjs.org/electron/-/electron-26.4.3.tgz", - "integrity": "sha512-2U+hYgGQck+/b8+B48JMTcE6UWYDC4BBrLNigmjkpOsPUdVuVJXafXHUN6QKxDxZhbwoc5pbk/xpTFOBP1UCOA==", + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-26.6.0.tgz", + "integrity": "sha512-jqJSM9/+3nghA9vbTMdB0AW5dbMEnRJ9w6oBFNgiwN5V001DYbzZQMsr8xAbI/NXM3eh34qZYf8EIvPrnvT+Bw==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -8958,9 +8958,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.576", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.576.tgz", - "integrity": "sha512-yXsZyXJfAqzWk1WKryr0Wl0MN2D47xodPvEEwlVePBnhU5E7raevLQR+E6b9JAD3GfL/7MbAL9ZtWQQPcLx7wA==", + "version": "1.4.585", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.585.tgz", + "integrity": "sha512-B4yBlX0azdA3rVMxpYwLQfDpdwOgcnLCkpvSOd68iFmeedo+WYjaBJS3/W58LVD8CB2nf+o7C4K9xz1l09RkWg==", "dev": true }, "node_modules/electron-updater": { @@ -9027,9 +9027,9 @@ } }, "node_modules/electron/node_modules/@types/node": { - "version": "18.18.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.8.tgz", - "integrity": "sha512-OLGBaaK5V3VRBS1bAkMVP2/W9B+H8meUfl866OrMNQqt7wDgdpWPp5o6gmIc9pB+lIQHSq4ZL8ypeH1vPxcPaQ==", + "version": "18.18.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.9.tgz", + "integrity": "sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -9083,9 +9083,9 @@ } }, "node_modules/engine.io": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.3.tgz", - "integrity": "sha512-IML/R4eG/pUS5w7OfcDE0jKrljWS9nwnEfsxWCIJF5eO6AHo6+Hlv+lQbdlAYsiJPHzUthLm1RUjnBzWOs45cw==", + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.4.tgz", + "integrity": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==", "dev": true, "dependencies": { "@types/cookie": "^0.4.1", @@ -10102,9 +10102,9 @@ "dev": true }, "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -10302,9 +10302,9 @@ } }, "node_modules/flat-cache": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", - "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "dependencies": { "flatted": "^3.2.9", @@ -10312,7 +10312,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.0.0" + "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flatted": { @@ -11453,9 +11453,9 @@ ] }, "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", "dev": true, "engines": { "node": ">= 4" @@ -12164,9 +12164,9 @@ "dev": true }, "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, "engines": { "node": ">=8" @@ -16053,10 +16053,13 @@ } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", - "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz", + "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==", "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, "engines": { "node": "14 || >=16.14" } @@ -16329,9 +16332,9 @@ "dev": true }, "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", "dev": true, "funding": [ { diff --git a/package.json b/package.json index 6f96349e..d246ec92 100755 --- a/package.json +++ b/package.json @@ -115,7 +115,7 @@ }, "main": "index.js", "build": { - "electronVersion": "13.6.9", + "electronVersion": "12.2.3", "appId": "co.blocknet.blockdx", "productName": "BLOCK DX", "artifactName": "${name}-${version}-${os}.${ext}", From f4d91396fa198cdbb4af518f6f4b2993ca46d598 Mon Sep 17 00:00:00 2001 From: tryiou Date: Thu, 16 Nov 2023 18:52:34 +0100 Subject: [PATCH 6/9] refactor downloadAndExtract as non async --- index.js | 179 ++++++++++++++++++++++++++----------------------------- 1 file changed, 84 insertions(+), 95 deletions(-) diff --git a/index.js b/index.js index 83a6c213..b5850776 100644 --- a/index.js +++ b/index.js @@ -60,127 +60,113 @@ const { app, BrowserWindow: ElectronBrowserWindow, Menu, ipcMain } = electron; autoUpdater.autoDownload = false; autoUpdater.autoInstallOnAppQuit = true; -// Properly close the application -app.on('window-all-closed', () => { - app.quit(); -}); - -const { platform } = process; - -const { name, version } = fs.readJSONSync(path.join(__dirname, 'package.json')); -ipcMain.on('getAppName', e => { - e.returnValue = name; -}); -ipcMain.on('getAppVersion', e => { - e.returnValue = version; -}); - -let appWindow, serverLocation, sn, keyPair, storage, user, password, port, info, pricingSource, pricingUnit, apiKeys, - pricingFrequency, enablePricing, sendPricingMultipliers, clearPricingInterval, setPricingInterval, - sendMarketPricingEnabled, metaPath, availableUpdate, tradeHistory, myOrders, showWallet, tosWindow, releaseNotesWindow, - latestBlocknetDir, latestConfName, refreshBalances; -let updateError = false; - -// Handle explicit quit -ipcMain.on('quitResetFirstRun', () => { - if (storage) - storage.setItem('isFirstRun', true); - app.quit(); -}); - -ipcMain.on('getPlatform', e => e.returnValue = process.platform); - // mod to get latest manifest from git repo >> const userDataPath = app.getPath('userData'); const configurationFilesDirectory = path.join(userDataPath, 'Local Storage', 'blockchain-configuration-files'); const zipURL = 'https://github.com/blocknetdx/blockchain-configuration-files/archive/refs/heads/master.zip'; -async function removeDirectory(directory) { +function removeDirectory(directory) { try { - await fs.removeAsync(directory); + fs.removeSync(directory); console.log(`Directory ${directory} removed successfully.`); } catch (error) { console.error(`Error deleting directory ${directory}:`, error); } } -async function downloadAndExtract(url, destinationFolder) { +function downloadAndExtract(url, destinationFolder) { const axios = require('axios'); const AdmZip = require('adm-zip'); + console.error('Update "blockchain-configuration-files"'); + console.log(`Downloading from ${url}`); - // Download the ZIP file - const response = await axios.get(url, { responseType: 'arraybuffer' }); - console.log('ZIP file downloaded successfully.'); + axios.get(url, { responseType: 'arraybuffer' }) + .then((response) => { + console.log('ZIP file downloaded successfully.'); - // Save the ZIP file - const zipPath = path.join(userDataPath, 'Local Storage', 'manifest.zip'); - await fs.outputFileAsync(zipPath, response.data); - console.log(`ZIP file saved to ${zipPath}`); + const zipPath = path.join(userDataPath, 'Local Storage', 'manifest.zip'); + fs.outputFileSync(zipPath, response.data); + console.log(`ZIP file saved to ${zipPath}`); - // Check if the destination folder exists, and delete it if it does - if (await fs.existsAsync(destinationFolder)) { - await removeDirectory(destinationFolder); - console.log(`Destination folder ${destinationFolder} exists and removed.`); - } + if (fs.existsSync(destinationFolder)) { + removeDirectory(destinationFolder); + console.log(`Destination folder ${destinationFolder} exists and removed.`); + } - // Check if the temporary folder exists, and delete it if it does - const tempFolder = path.join(userDataPath, 'Local Storage', 'temp-extract-folder'); - if (await fs.existsAsync(tempFolder)) { - await removeDirectory(tempFolder); - console.log(`Temporary folder ${tempFolder} exists and removed.`); - } + const tempFolder = path.join(userDataPath, 'Local Storage', 'temp-extract-folder'); + if (fs.existsSync(tempFolder)) { + removeDirectory(tempFolder); + console.log(`Temporary folder ${tempFolder} exists and removed.`); + } + + fs.ensureDirSync(tempFolder); + console.log(`Ensured existence of temporary folder ${tempFolder}.`); + + const zip = new AdmZip(zipPath); + zip.extractAllTo(tempFolder, true); + console.log(`ZIP contents extracted to ${tempFolder}.`); - // Extract the ZIP contents into a temporary folder - await fs.ensureDirAsync(tempFolder); - console.log(`Ensured existence of temporary folder ${tempFolder}.`); - - const zip = new AdmZip(zipPath); - zip.extractAllTo(tempFolder, true); - console.log(`ZIP contents extracted to ${tempFolder}.`); - - // Find the "blockchain-configuration-files-master" folder and move its contents to the destination folder - const masterFolder = path.join(tempFolder, 'blockchain-configuration-files-master'); - const foldersToIgnore = ["autobuild", "manifests", "tools"]; - - if (await fs.existsAsync(masterFolder)) { - const entries = await fs.readdirAsync(masterFolder); - - for (const entry of entries) { - // Check if the entry is one of the folders to ignore - if (!foldersToIgnore.includes(entry)) { - const sourcePath = path.join(masterFolder, entry); - const destPath = path.join(destinationFolder, entry); - await fs.moveAsync(sourcePath, destPath); - console.log(`Moved ${entry} to ${destinationFolder}.`); + const masterFolder = path.join(tempFolder, 'blockchain-configuration-files-master'); + const foldersToIgnore = ["autobuild", "manifests", "tools"]; + + if (fs.existsSync(masterFolder)) { + const entries = fs.readdirSync(masterFolder); + + for (const entry of entries) { + if (!foldersToIgnore.includes(entry)) { + const sourcePath = path.join(masterFolder, entry); + const destPath = path.join(destinationFolder, entry); + fs.moveSync(sourcePath, destPath); + console.log(`Moved ${entry} to ${destinationFolder}.`); + } + } } - } - } - // Clean up the temporary ZIP file and folder - await fs.unlinkAsync(zipPath); - console.log(`Temporary ZIP file ${zipPath} removed.`); - - await removeDirectory(tempFolder); - console.log(`Temporary folder ${tempFolder} removed.`); + fs.unlinkSync(zipPath); + console.log(`Temporary ZIP file ${zipPath} removed.`); + + removeDirectory(tempFolder); + console.log(`Temporary folder ${tempFolder} removed.`); + + console.error('Updated "blockchain-configuration-files" successfully'); + }) + .catch((error) => { + console.error('Error updating "blockchain-configuration-files":', error); + }); } +downloadAndExtract(zipURL, configurationFilesDirectory) -(async () => { - try { - console.log('Updating "blockchain-configuration-files"'); +// Properly close the application +app.on('window-all-closed', () => { + app.quit(); +}); - await downloadAndExtract(zipURL, configurationFilesDirectory); +const { platform } = process; - console.log('"blockchain-configuration-files" updated successfully.'); +const { name, version } = fs.readJSONSync(path.join(__dirname, 'package.json')); +ipcMain.on('getAppName', e => { + e.returnValue = name; +}); +ipcMain.on('getAppVersion', e => { + e.returnValue = version; +}); - // Proceed with the next code lines here. - } catch (error) { - console.error('Error updating "blockchain-configuration-files":', error); - } -})(); -// mod to get latest manifest from git repo << +let appWindow, serverLocation, sn, keyPair, storage, user, password, port, info, pricingSource, pricingUnit, apiKeys, + pricingFrequency, enablePricing, sendPricingMultipliers, clearPricingInterval, setPricingInterval, + sendMarketPricingEnabled, metaPath, availableUpdate, tradeHistory, myOrders, showWallet, tosWindow, releaseNotesWindow, + latestBlocknetDir, latestConfName, refreshBalances; +let updateError = false; +// Handle explicit quit +ipcMain.on('quitResetFirstRun', () => { + if (storage) + storage.setItem('isFirstRun', true); + app.quit(); +}); + +ipcMain.on('getPlatform', e => e.returnValue = process.platform); const getManifest = () => { let manifest = storage.getItem('manifest'); @@ -2105,9 +2091,12 @@ ipcMain.on('openExternal', (e, url) => { } // Flag used to disable the conf updater, default to false - const disableUpdater = storage.getItem('confUpdaterDisabled'); - if (_.isNull(disableUpdater) || _.isUndefined(disableUpdater)) - storage.setItem('confUpdaterDisabled', false); + // const disableUpdater = storage.getItem('confUpdaterDisabled'); + // if (_.isNull(disableUpdater) || _.isUndefined(disableUpdater)) + // storage.setItem('confUpdaterDisabled', false); + + // disable old updater + storage.setItem('confUpdaterDisabled', true); if(!storage.getItem('tos')) { await onReady; From 97079fe9e5b902f6ccbd28de4cbec25013d1e804 Mon Sep 17 00:00:00 2001 From: tryiou Date: Fri, 17 Nov 2023 11:53:57 +0100 Subject: [PATCH 7/9] disable "get latest manifest from git repo" feat --- index.js | 81 ++------------------------------------------------------ 1 file changed, 2 insertions(+), 79 deletions(-) diff --git a/index.js b/index.js index b5850776..05cff3e7 100644 --- a/index.js +++ b/index.js @@ -12,7 +12,6 @@ const ConfController = require('./src-back/conf-controller'); const _ = require('lodash'); //const math = require('mathjs'); const { create, all } = require('mathjs'); - const MarkdownIt = require('markdown-it'); const { Localize } = require('./src-back/localize'); const { blocknetDir4, blocknetDir3, BLOCKNET_CONF_NAME4, BLOCKNET_CONF_NAME3, ipcMainListeners, pricingSources } = require('./src-back/constants'); @@ -60,84 +59,6 @@ const { app, BrowserWindow: ElectronBrowserWindow, Menu, ipcMain } = electron; autoUpdater.autoDownload = false; autoUpdater.autoInstallOnAppQuit = true; -// mod to get latest manifest from git repo >> -const userDataPath = app.getPath('userData'); -const configurationFilesDirectory = path.join(userDataPath, 'Local Storage', 'blockchain-configuration-files'); -const zipURL = 'https://github.com/blocknetdx/blockchain-configuration-files/archive/refs/heads/master.zip'; - -function removeDirectory(directory) { - try { - fs.removeSync(directory); - console.log(`Directory ${directory} removed successfully.`); - } catch (error) { - console.error(`Error deleting directory ${directory}:`, error); - } -} - -function downloadAndExtract(url, destinationFolder) { - const axios = require('axios'); - const AdmZip = require('adm-zip'); - - console.error('Update "blockchain-configuration-files"'); - - console.log(`Downloading from ${url}`); - - axios.get(url, { responseType: 'arraybuffer' }) - .then((response) => { - console.log('ZIP file downloaded successfully.'); - - const zipPath = path.join(userDataPath, 'Local Storage', 'manifest.zip'); - fs.outputFileSync(zipPath, response.data); - console.log(`ZIP file saved to ${zipPath}`); - - if (fs.existsSync(destinationFolder)) { - removeDirectory(destinationFolder); - console.log(`Destination folder ${destinationFolder} exists and removed.`); - } - - const tempFolder = path.join(userDataPath, 'Local Storage', 'temp-extract-folder'); - if (fs.existsSync(tempFolder)) { - removeDirectory(tempFolder); - console.log(`Temporary folder ${tempFolder} exists and removed.`); - } - - fs.ensureDirSync(tempFolder); - console.log(`Ensured existence of temporary folder ${tempFolder}.`); - - const zip = new AdmZip(zipPath); - zip.extractAllTo(tempFolder, true); - console.log(`ZIP contents extracted to ${tempFolder}.`); - - const masterFolder = path.join(tempFolder, 'blockchain-configuration-files-master'); - const foldersToIgnore = ["autobuild", "manifests", "tools"]; - - if (fs.existsSync(masterFolder)) { - const entries = fs.readdirSync(masterFolder); - - for (const entry of entries) { - if (!foldersToIgnore.includes(entry)) { - const sourcePath = path.join(masterFolder, entry); - const destPath = path.join(destinationFolder, entry); - fs.moveSync(sourcePath, destPath); - console.log(`Moved ${entry} to ${destinationFolder}.`); - } - } - } - - fs.unlinkSync(zipPath); - console.log(`Temporary ZIP file ${zipPath} removed.`); - - removeDirectory(tempFolder); - console.log(`Temporary folder ${tempFolder} removed.`); - - console.error('Updated "blockchain-configuration-files" successfully'); - }) - .catch((error) => { - console.error('Error updating "blockchain-configuration-files":', error); - }); -} -downloadAndExtract(zipURL, configurationFilesDirectory) - // Properly close the application app.on('window-all-closed', () => { app.quit(); @@ -168,6 +89,8 @@ ipcMain.on('quitResetFirstRun', () => { ipcMain.on('getPlatform', e => e.returnValue = process.platform); +const configurationFilesDirectory = path.join(__dirname, 'blockchain-configuration-files'); + const getManifest = () => { let manifest = storage.getItem('manifest'); if(!manifest) { From 6d5f42e4601c5e150992f76235cd7996a48066e0 Mon Sep 17 00:00:00 2001 From: tryiou Date: Fri, 17 Nov 2023 11:55:03 +0100 Subject: [PATCH 8/9] updating static "blockchain-configuration-files" --- .../manifest-latest.json | 4514 +++++++++-------- .../wallet-confs/ColossusXT--v1.2.3.conf | 10 + .../{iop--v6.2.3.conf => Electra--2.1.1.conf} | 8 +- .../wallet-confs/GravityCoin--4.0.7.8.conf | 10 + .../wallet-confs/Metrix--v4.0.3.conf | 12 + .../wallet-confs/abet--v3.4.1.0.conf | 2 + .../wallet-confs/abosom--v1.0.0.conf | 2 + .../wallet-confs/aeriumx--v2.2.conf | 10 + ...{lux--v5.3.3.conf => aprcoin--v3.1.0.conf} | 6 +- ...e--v6.0.2.conf => argoneum--v1.4.0.0.conf} | 6 +- .../wallet-confs/atbcoin--v1.1.0.conf | 3 + .../australiacash--v0.17.4.1.conf | 10 + .../wallet-confs/badcoin--v0.16.3-2.conf | 9 +- .../wallet-confs/bcz--v6.0.3.2.conf | 10 + .../wallet-confs/bitcloud--2.1.0.1.1.conf | 5 +- .../wallet-confs/bitcoin--v0.15.1.conf | 20 +- .../wallet-confs/bitcoin--v0.16.0.conf | 5 +- .../wallet-confs/bitcoin--v0.17.0.conf | 5 +- .../wallet-confs/bitcoin--v0.18.0.conf | 15 + .../wallet-confs/bitcoin--v0.19.0.conf | 15 + .../wallet-confs/bitcoin--v0.20.0.conf | 15 + .../wallet-confs/bitcoin--v0.21.0.conf | 15 + .../wallet-confs/bitcoincash--v0.21.11.conf | 2 + .../wallet-confs/bitcoindiamond--v1.3.0.conf | 5 +- .../wallet-confs/bitcoingold--v0.17.2.conf | 3 +- .../wallet-confs/bitcoinzero--5.0.7.8.conf | 10 + .../wallet-confs/bitcore--0.90.8.8.1.conf | 3 +- .../wallet-confs/bitgreen--v1.4.0.8.conf | 5 +- .../wallet-confs/bitmoney--2.2.0.2.conf | 3 + .../wallet-confs/bitsend--0.14.2.0.1.conf | 3 + .../wallet-confs/blast--v2.2.0.conf | 10 + .../wallet-confs/blocknet--v4.2.0.conf | 10 + .../wallet-confs/blocknet--v4.3.0.conf | 10 + .../wallet-confs/blocktest--v4.3.3.conf | 14 + .../wallet-confs/carebitcoin--v5.0.0.conf | 10 + ...dhealthnetwork--wallets-source-daemon.conf | 3 + .../wallet-confs/chaincoin--v0.18.conf | 13 + .../wallet-confs/civitas--v1.2.2.conf | 19 +- .../wallet-confs/crave--v2.5.2.conf | 10 + ...ash--v0.12.2.3.conf => dash--v19.2.0.conf} | 19 +- .../wallet-confs/denarius--v3.3.9.3.conf | 11 +- .../desire--Desire-v.0.12.2.2.conf | 19 +- .../wallet-confs/devault--v1.1.7.conf | 2 + .../wallet-confs/diamond--v3.0.1.3.conf | 10 + ...e--v6.16.2.conf => digibyte--v7.17.2.conf} | 24 +- .../wallet-confs/digiwage--v1.2.1.conf | 10 + ...{pivx--v3.1.0.2.conf => divi--v1.1.2.conf} | 17 +- ...ecash--3.0.0.conf => dogecash--5.4.4.conf} | 5 + .../dogecoin--v1.10.0-dogeparty.conf | 7 - ...n--v1.10.0.conf => dogecoin--v1.14.5.conf} | 4 + .../wallet-confs/dynamic--v2.4.3.0.conf | 10 + .../wallet-confs/einsteinium--v0.13.5.0.conf | 10 + .../wallet-confs/emercoin--v0.7.10emc.conf | 5 +- .../wallet-confs/eternity--v0.12.1.7.conf | 19 +- .../experiencepoints--v3.4.0.3.conf | 2 + .../wallet-confs/faircoin--v2.0.1.conf | 10 + .../wallet-confs/fantasygold--2.19.1.conf | 10 + .../wallet-confs/flo--v0.15.2.0.conf | 10 + .../fujicoin--fujicoin-v0.18.0.conf | 13 + .../wallet-confs/galactrum--v1.4.0.conf | 3 + .../wallet-confs/galilel--v3.4.0.conf | 10 + .../wallet-confs/gamblecoin--1.1.4.conf | 3 + .../wallet-confs/geekcash--v1.3.0.1.conf | 3 + .../wallet-confs/gincoin--v1.3.0.0.conf | 10 + .../wallet-confs/gobyte--v0.12.2.4.conf | 9 - .../wallet-confs/gobyte--v0.16.2.1.conf | 12 + .../wallet-confs/goldcoin--v0.14.7.conf | 11 + .../wallet-confs/hash--v1.5.1.conf | 10 + .../wallet-confs/hatch--v0.14.0.3.conf | 3 + .../wallet-confs/helium--v0.16.0.conf | 3 + .../wallet-confs/htmlcoin--v2.5.0.conf | 10 + .../wallet-confs/innova--v4.3.8.8.conf | 10 + .../wallet-confs/iop--v6.1.0.conf | 7 - .../wallet-confs/ixcoin--v0.14.1.conf | 18 +- .../wallet-confs/jiyo--v.2.1.conf | 5 +- .../wallet-confs/klks--v2.8.0.conf | 10 + .../wallet-confs/kreds--v1.0.0.6.conf | 10 + .../wallet-confs/kyd--v3.2.1.conf | 10 + .../wallet-confs/kzcash--v0.1.9.1.conf | 3 + .../wallet-confs/lbrycrd--v0.17.3.1.conf | 13 + .../wallet-confs/litecoin--v0.15.1.conf | 18 +- .../wallet-confs/litecoin--v0.16.0.conf | 3 +- .../wallet-confs/litecoin--v0.17.1.conf | 5 +- .../wallet-confs/litecoin--v0.18.1.conf | 3 +- .../wallet-confs/litecoin--v0.21.2.conf | 18 + .../wallet-confs/lynx--v0.16.3.9.conf | 10 + .../wallet-confs/machinecoin--v0.16.3.conf | 13 + .../wallet-confs/mktcoin--0.15.0.3.conf | 10 + .../wallet-confs/mnpcoin--v1.2.5.conf | 3 + .../monacoin--monacoin-0.17.1.conf | 3 +- .../wallet-confs/monetaryunit--v2.0.2.conf | 7 - .../wallet-confs/monetaryunit--v2.3.0.conf | 12 + .../wallet-confs/monoeci--v0.12.2.3.conf | 17 +- .../wallet-confs/myriadcoin--v0.16.4.1.conf | 13 + .../namecoin--nc0.13.99-name-tab-beta1.conf | 18 +- .../wallet-confs/nativecoin--1.2.conf | 10 + .../wallet-confs/nix--v3.0.7.conf | 13 + .../wallet-confs/nodium--3.0.6.conf | 17 +- .../wallet-confs/noir--v2.1.0.9.conf | 10 + .../wallet-confs/northern--3.3.1.conf | 10 + .../wallet-confs/nyerium--v1.0.3.conf | 3 + .../wallet-confs/nyx--v2.0.0.0.conf | 17 +- .../wallet-confs/odin--v1.6.6.conf | 10 + .../wallet-confs/ohmc--2.4.0.0.conf | 10 + .../wallet-confs/opcoinx--v2.0.0.conf | 3 + .../pacglobal--v0.15-da839021c.conf | 6 +- .../wallet-confs/particl--v0.19.2.5.conf | 10 + .../wallet-confs/phore--v1.3.0.conf | 7 - ...hore--v1.3.3.1.conf => phore--v1.7.1.conf} | 3 + .../wallet-confs/pivx--v5.5.0.conf | 6 +- .../wallet-confs/placeh--2.0.30.5.conf | 5 +- .../wallet-confs/polis--v1.3.1.conf | 9 - .../wallet-confs/pura--v1.3.7.conf | 10 + .../wallet-confs/qbiccoin--v1.1.conf | 10 + .../qtum--mainnet-ignition-v0.19.1.conf | 13 + .../rapids--v2.0.0.0-b784ecbf4d.conf | 10 + .../wallet-confs/rapture--v1.1.2.2.conf | 3 + ...en--v0.15.99.0.conf => raven--v4.1.0.conf} | 17 +- .../wallet-confs/reecore--v1.4.2.2.conf | 2 + .../wallet-confs/scribe--v0.2.conf | 5 +- .../wallet-confs/securecloud--v2.5.1.1.conf | 10 + .../wallet-confs/send--1.2.0.5.conf | 10 + .../wallet-confs/sequence--v1.3.3.0.conf | 10 + .../wallet-confs/shekel--1.5.0.conf | 10 + .../wallet-confs/sibcoin--v0.17.0.0.conf | 10 + .../wallet-confs/sparks--v0.12.4.3.conf | 10 + .../wallet-confs/stakecubecoin--v3.0.1.conf | 10 + .../wallet-confs/straks--1.14.7.5.conf | 10 + ...ash--v2.1.1.conf => swiftcash--3.0.5.conf} | 4 +- .../wallet-confs/syscoin--3.0.5.0.conf | 7 - .../wallet-confs/syscoin--v4.0.3.conf | 15 - .../wallet-confs/syscoin--v4.4.2.conf | 18 + .../wallet-confs/systest--v4.3.0.conf | 20 + .../wallet-confs/terracoin--v0.12.2.4.conf | 10 + .../wallet-confs/tribe--1.0.2.conf | 10 + .../wallet-confs/ufocoin--v0.18.0.conf | 7 +- ...0.10.1.1.conf => unobtanium--v0.11.0.conf} | 18 +- .../wallet-confs/vertcoin--0.14.0.conf | 13 + .../wallet-confs/viacoin--v0.16.3.conf | 3 +- .../wallet-confs/vitae--v4.4.0.3.conf | 10 + .../wallet-confs/vivo--v0.12.1.17.conf | 10 + .../wallet-confs/vsync--v3.8.7.6.conf | 10 + .../wallet-confs/wagerr--v3.1.0.conf | 10 + .../wallet-confs/xaya--v1.4.1.conf | 10 + .../wallet-confs/xcurrency--v3.0.05.conf | 17 +- .../wallet-confs/zcoin--v0.14.0.1.conf | 10 + ...onodes--v1.4.3.conf => zenzo--v2.1.0.conf} | 5 +- .../wallet-confs/zsub1x--1.4.0.conf | 3 + .../xbridge-confs/ColossusXT--v1.2.3.conf | 21 + .../xbridge-confs/Electra--2.1.1.conf | 21 + .../xbridge-confs/GravityCoin--4.0.7.8.conf | 21 + .../xbridge-confs/Metrix--v4.0.3.conf | 26 + .../xbridge-confs/abet--v3.4.1.0.conf | 8 +- .../xbridge-confs/abosom--v1.0.0.conf | 8 +- .../{lux--v5.3.3.conf => aeriumx--v2.2.conf} | 16 +- ...{iop--v6.2.3.conf => aprcoin--v3.1.0.conf} | 14 +- .../xbridge-confs/argoneum--v1.4.0.0.conf | 21 + .../xbridge-confs/atbcoin--v1.1.0.conf | 4 +- .../australiacash--v0.17.4.1.conf | 21 + .../xbridge-confs/badcoin--v0.16.3-2.conf | 10 +- .../xbridge-confs/bcz--v6.0.3.2.conf | 21 + .../xbridge-confs/bitcloud--2.1.0.1.1.conf | 4 +- .../xbridge-confs/bitcoin--v0.15.1.conf | 42 +- .../xbridge-confs/bitcoin--v0.16.0.conf | 21 + .../xbridge-confs/bitcoin--v0.17.0.conf | 21 + .../xbridge-confs/bitcoin--v0.18.0.conf | 21 + .../xbridge-confs/bitcoin--v0.19.0.conf | 21 + .../xbridge-confs/bitcoin--v0.20.0.conf | 6 +- .../xbridge-confs/bitcoin--v0.21.0.conf | 21 + .../xbridge-confs/bitcoincash--v0.21.11.conf | 9 +- .../xbridge-confs/bitcoindiamond--v1.3.0.conf | 8 +- .../xbridge-confs/bitcoingold--v0.17.2.conf | 8 +- .../xbridge-confs/bitcoinzero--5.0.7.8.conf | 21 + .../xbridge-confs/bitcore--0.90.8.8.1.conf | 21 + .../xbridge-confs/bitgreen--v1.4.0.8.conf | 2 +- .../xbridge-confs/bitmoney--2.2.0.2.conf | 4 +- .../xbridge-confs/bitsend--0.14.2.0.1.conf | 4 +- .../xbridge-confs/blast--v2.2.0.conf | 21 + .../xbridge-confs/blocknet--v4.2.0.conf | 21 + .../xbridge-confs/blocknet--v4.3.0.conf | 21 + .../xbridge-confs/blocktest--v4.3.3.conf | 21 + .../xbridge-confs/carebitcoin--v5.0.0.conf | 21 + ...dhealthnetwork--wallets-source-daemon.conf | 4 +- .../xbridge-confs/chaincoin--v0.18.conf | 21 + .../xbridge-confs/civitas--v1.2.2.conf | 42 +- .../xbridge-confs/crave--v2.5.2.conf | 21 + ...ash--v0.12.2.3.conf => dash--v19.2.0.conf} | 42 +- ...-v3.3.9.3.conf => denarius--v3.3.9.9.conf} | 10 +- .../desire--Desire-v.0.12.2.2.conf | 42 +- .../xbridge-confs/devault--v1.1.7.conf | 7 +- .../xbridge-confs/diamond--v3.0.1.3.conf | 21 + ...e--v6.16.2.conf => digibyte--v7.17.2.conf} | 42 +- .../xbridge-confs/digiwage--v1.2.1.conf | 21 + .../xbridge-confs/divi--v1.1.2.conf | 21 + ...ecash--3.0.0.conf => dogecash--5.4.4.conf} | 8 +- ...n--v1.10.0.conf => dogecoin--v1.14.5.conf} | 6 +- ...n--3.0.5.0.conf => dynamic--v2.4.3.0.conf} | 42 +- .../xbridge-confs/einsteinium--v0.13.5.0.conf | 21 + .../xbridge-confs/emercoin--v0.7.10emc.conf | 4 +- .../xbridge-confs/eternity--v0.12.1.7.conf | 42 +- .../experiencepoints--v3.4.0.3.conf | 4 +- .../xbridge-confs/faircoin--v2.0.1.conf | 21 + .../xbridge-confs/fantasygold--2.19.1.conf | 21 + .../xbridge-confs/flo--v0.15.2.0.conf | 21 + .../fujicoin--fujicoin-v0.18.0.conf | 21 + ...is--v1.3.1.conf => galactrum--v1.4.0.conf} | 42 +- .../xbridge-confs/galilel--v3.4.0.conf | 21 + .../xbridge-confs/gamblecoin--1.1.4.conf | 4 +- .../xbridge-confs/geekcash--v1.3.0.1.conf | 4 +- .../xbridge-confs/gincoin--v1.3.0.0.conf | 21 + ...-v0.12.2.4.conf => gobyte--v0.16.2.1.conf} | 42 +- ...sh--v2.1.1.conf => goldcoin--v0.14.7.conf} | 27 +- .../xbridge-confs/hash--v1.5.1.conf | 21 + .../xbridge-confs/hatch--v0.14.0.3.conf | 2 +- .../xbridge-confs/helium--v0.16.0.conf | 4 +- .../xbridge-confs/htmlcoin--v2.5.0.conf | 21 + .../xbridge-confs/innova--v4.3.8.8.conf | 21 + .../xbridge-confs/ixcoin--v0.14.1.conf | 42 +- .../xbridge-confs/jiyo--v.2.1.conf | 2 +- .../xbridge-confs/klks--v2.8.0.conf | 21 + ...{iop--v6.1.0.conf => kreds--v1.0.0.6.conf} | 42 +- .../xbridge-confs/kyd--v3.2.1.conf | 21 + .../xbridge-confs/kzcash--v0.1.9.1.conf | 4 +- .../xbridge-confs/lbrycrd--v0.17.3.1.conf | 21 + .../xbridge-confs/litecoin--v0.15.1.conf | 42 +- .../xbridge-confs/litecoin--v0.16.0.conf | 21 + .../xbridge-confs/litecoin--v0.17.1.conf | 21 + .../xbridge-confs/litecoin--v0.18.1.conf | 6 +- ....0-dogeparty.conf => lynx--v0.16.3.9.conf} | 42 +- .../xbridge-confs/machinecoin--v0.16.3.conf | 21 + .../xbridge-confs/mktcoin--0.15.0.3.conf | 21 + .../xbridge-confs/mnpcoin--v1.2.5.conf | 4 +- .../monacoin--monacoin-0.17.1.conf | 21 + ...-v2.0.2.conf => monetaryunit--v2.3.0.conf} | 4 +- .../xbridge-confs/monoeci--v0.12.2.3.conf | 42 +- .../xbridge-confs/myriadcoin--v0.16.4.1.conf | 21 + .../namecoin--nc0.13.99-name-tab-beta1.conf | 42 +- .../xbridge-confs/nativecoin--1.2.conf | 21 + .../xbridge-confs/nix--v3.0.7.conf | 21 + .../xbridge-confs/nodium--3.0.6.conf | 42 +- .../xbridge-confs/noir--v2.1.0.9.conf | 21 + .../xbridge-confs/northern--3.3.1.conf | 21 + .../xbridge-confs/nyerium--v1.0.3.conf | 4 +- .../xbridge-confs/nyx--v2.0.0.0.conf | 42 +- .../xbridge-confs/odin--v1.6.6.conf | 21 + .../xbridge-confs/ohmc--2.4.0.0.conf | 21 + .../xbridge-confs/opcoinx--v2.0.0.conf | 4 +- .../pacglobal--v0.15-da839021c.conf | 8 +- .../xbridge-confs/particl--v0.19.2.5.conf | 21 + ...hore--v1.3.3.1.conf => phore--v1.7.1.conf} | 2 +- .../xbridge-confs/pivx--v5.5.0.conf | 4 +- .../xbridge-confs/placeh--2.0.30.5.conf | 2 +- .../xbridge-confs/pura--v1.3.7.conf | 21 + .../xbridge-confs/qbiccoin--v1.1.conf | 21 + .../qtum--mainnet-ignition-v0.19.1.conf | 21 + .../rapids--v2.0.0.0-b784ecbf4d.conf | 21 + .../xbridge-confs/rapture--v1.1.2.2.conf | 4 +- ...en--v0.15.99.0.conf => raven--v4.1.0.conf} | 42 +- .../xbridge-confs/reecore--v1.4.2.2.conf | 8 +- .../xbridge-confs/scribe--v0.2.conf | 2 +- .../xbridge-confs/securecloud--v2.5.1.1.conf | 21 + .../xbridge-confs/send--1.2.0.5.conf | 21 + .../xbridge-confs/sequence--v1.3.3.0.conf | 21 + ...{phore--v1.3.0.conf => shekel--1.5.0.conf} | 42 +- .../xbridge-confs/sibcoin--v0.17.0.0.conf | 21 + .../xbridge-confs/sparks--v0.12.4.3.conf | 21 + .../xbridge-confs/stakecubecoin--v3.0.1.conf | 21 + .../xbridge-confs/straks--1.14.7.5.conf | 21 + .../xbridge-confs/swiftcash--3.0.5.conf | 21 + ...coin--v4.0.3.conf => syscoin--v4.4.2.conf} | 4 +- .../xbridge-confs/systest--v4.3.0.conf | 21 + .../xbridge-confs/terracoin--v0.12.2.4.conf | 21 + .../xbridge-confs/tribe--1.0.2.conf | 21 + .../xbridge-confs/ufocoin--v0.18.0.conf | 21 + ...0.10.1.1.conf => unobtanium--v0.11.0.conf} | 42 +- .../xbridge-confs/vertcoin--0.14.0.conf | 21 + .../xbridge-confs/viacoin--v0.16.3.conf | 21 + .../xbridge-confs/vitae--v4.4.0.3.conf | 21 + .../xbridge-confs/vivo--v0.12.1.17.conf | 21 + .../xbridge-confs/vsync--v3.8.7.6.conf | 21 + .../xbridge-confs/wagerr--v3.1.0.conf | 21 + .../{verge--v6.0.2.conf => xaya--v1.4.1.conf} | 23 +- .../xbridge-confs/xcurrency--v3.0.05.conf | 42 +- .../xbridge-confs/zcoin--v0.14.0.1.conf | 21 + ...onodes--v1.4.3.conf => zenzo--v2.1.0.conf} | 18 +- .../xbridge-confs/zsub1x--1.4.0.conf | 4 +- 286 files changed, 5557 insertions(+), 3051 deletions(-) create mode 100644 blockchain-configuration-files/wallet-confs/ColossusXT--v1.2.3.conf rename blockchain-configuration-files/wallet-confs/{iop--v6.2.3.conf => Electra--2.1.1.conf} (73%) create mode 100644 blockchain-configuration-files/wallet-confs/GravityCoin--4.0.7.8.conf create mode 100644 blockchain-configuration-files/wallet-confs/Metrix--v4.0.3.conf create mode 100644 blockchain-configuration-files/wallet-confs/aeriumx--v2.2.conf rename blockchain-configuration-files/wallet-confs/{lux--v5.3.3.conf => aprcoin--v3.1.0.conf} (73%) rename blockchain-configuration-files/wallet-confs/{verge--v6.0.2.conf => argoneum--v1.4.0.0.conf} (73%) create mode 100644 blockchain-configuration-files/wallet-confs/australiacash--v0.17.4.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/bcz--v6.0.3.2.conf create mode 100644 blockchain-configuration-files/wallet-confs/bitcoin--v0.18.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/bitcoin--v0.19.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/bitcoin--v0.20.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/bitcoin--v0.21.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/bitcoinzero--5.0.7.8.conf create mode 100644 blockchain-configuration-files/wallet-confs/blast--v2.2.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/blocknet--v4.2.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/blocknet--v4.3.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/blocktest--v4.3.3.conf create mode 100644 blockchain-configuration-files/wallet-confs/carebitcoin--v5.0.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/chaincoin--v0.18.conf create mode 100644 blockchain-configuration-files/wallet-confs/crave--v2.5.2.conf rename blockchain-configuration-files/wallet-confs/{dash--v0.12.2.3.conf => dash--v19.2.0.conf} (71%) mode change 100755 => 100644 create mode 100644 blockchain-configuration-files/wallet-confs/diamond--v3.0.1.3.conf rename blockchain-configuration-files/wallet-confs/{digibyte--v6.16.2.conf => digibyte--v7.17.2.conf} (93%) mode change 100755 => 100644 create mode 100644 blockchain-configuration-files/wallet-confs/digiwage--v1.2.1.conf rename blockchain-configuration-files/wallet-confs/{pivx--v3.1.0.2.conf => divi--v1.1.2.conf} (73%) mode change 100755 => 100644 rename blockchain-configuration-files/wallet-confs/{dogecash--3.0.0.conf => dogecash--5.4.4.conf} (84%) delete mode 100755 blockchain-configuration-files/wallet-confs/dogecoin--v1.10.0-dogeparty.conf rename blockchain-configuration-files/wallet-confs/{dogecoin--v1.10.0.conf => dogecoin--v1.14.5.conf} (95%) create mode 100644 blockchain-configuration-files/wallet-confs/dynamic--v2.4.3.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/einsteinium--v0.13.5.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/faircoin--v2.0.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/fantasygold--2.19.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/flo--v0.15.2.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/fujicoin--fujicoin-v0.18.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/galilel--v3.4.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/gincoin--v1.3.0.0.conf delete mode 100755 blockchain-configuration-files/wallet-confs/gobyte--v0.12.2.4.conf create mode 100644 blockchain-configuration-files/wallet-confs/gobyte--v0.16.2.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/goldcoin--v0.14.7.conf create mode 100644 blockchain-configuration-files/wallet-confs/hash--v1.5.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/htmlcoin--v2.5.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/innova--v4.3.8.8.conf delete mode 100755 blockchain-configuration-files/wallet-confs/iop--v6.1.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/klks--v2.8.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/kreds--v1.0.0.6.conf create mode 100644 blockchain-configuration-files/wallet-confs/kyd--v3.2.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/lbrycrd--v0.17.3.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/litecoin--v0.21.2.conf create mode 100644 blockchain-configuration-files/wallet-confs/lynx--v0.16.3.9.conf create mode 100644 blockchain-configuration-files/wallet-confs/machinecoin--v0.16.3.conf create mode 100644 blockchain-configuration-files/wallet-confs/mktcoin--0.15.0.3.conf delete mode 100644 blockchain-configuration-files/wallet-confs/monetaryunit--v2.0.2.conf create mode 100644 blockchain-configuration-files/wallet-confs/monetaryunit--v2.3.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/myriadcoin--v0.16.4.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/nativecoin--1.2.conf create mode 100644 blockchain-configuration-files/wallet-confs/nix--v3.0.7.conf create mode 100644 blockchain-configuration-files/wallet-confs/noir--v2.1.0.9.conf create mode 100644 blockchain-configuration-files/wallet-confs/northern--3.3.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/odin--v1.6.6.conf create mode 100644 blockchain-configuration-files/wallet-confs/ohmc--2.4.0.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/particl--v0.19.2.5.conf delete mode 100755 blockchain-configuration-files/wallet-confs/phore--v1.3.0.conf rename blockchain-configuration-files/wallet-confs/{phore--v1.3.3.1.conf => phore--v1.7.1.conf} (87%) delete mode 100644 blockchain-configuration-files/wallet-confs/polis--v1.3.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/pura--v1.3.7.conf create mode 100644 blockchain-configuration-files/wallet-confs/qbiccoin--v1.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/qtum--mainnet-ignition-v0.19.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/rapids--v2.0.0.0-b784ecbf4d.conf rename blockchain-configuration-files/wallet-confs/{raven--v0.15.99.0.conf => raven--v4.1.0.conf} (73%) create mode 100644 blockchain-configuration-files/wallet-confs/securecloud--v2.5.1.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/send--1.2.0.5.conf create mode 100644 blockchain-configuration-files/wallet-confs/sequence--v1.3.3.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/shekel--1.5.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/sibcoin--v0.17.0.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/sparks--v0.12.4.3.conf create mode 100644 blockchain-configuration-files/wallet-confs/stakecubecoin--v3.0.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/straks--1.14.7.5.conf rename blockchain-configuration-files/wallet-confs/{cryptodezirecash--v2.1.1.conf => swiftcash--3.0.5.conf} (70%) delete mode 100755 blockchain-configuration-files/wallet-confs/syscoin--3.0.5.0.conf delete mode 100644 blockchain-configuration-files/wallet-confs/syscoin--v4.0.3.conf create mode 100644 blockchain-configuration-files/wallet-confs/syscoin--v4.4.2.conf create mode 100644 blockchain-configuration-files/wallet-confs/systest--v4.3.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/terracoin--v0.12.2.4.conf create mode 100644 blockchain-configuration-files/wallet-confs/tribe--1.0.2.conf rename blockchain-configuration-files/wallet-confs/{unobtanium--v0.10.1.1.conf => unobtanium--v0.11.0.conf} (92%) create mode 100644 blockchain-configuration-files/wallet-confs/vertcoin--0.14.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/vitae--v4.4.0.3.conf create mode 100644 blockchain-configuration-files/wallet-confs/vivo--v0.12.1.17.conf create mode 100644 blockchain-configuration-files/wallet-confs/vsync--v3.8.7.6.conf create mode 100644 blockchain-configuration-files/wallet-confs/wagerr--v3.1.0.conf create mode 100644 blockchain-configuration-files/wallet-confs/xaya--v1.4.1.conf create mode 100644 blockchain-configuration-files/wallet-confs/zcoin--v0.14.0.1.conf rename blockchain-configuration-files/wallet-confs/{cryptonodes--v1.4.3.conf => zenzo--v2.1.0.conf} (64%) mode change 100644 => 100755 create mode 100644 blockchain-configuration-files/xbridge-confs/ColossusXT--v1.2.3.conf create mode 100644 blockchain-configuration-files/xbridge-confs/Electra--2.1.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/GravityCoin--4.0.7.8.conf create mode 100644 blockchain-configuration-files/xbridge-confs/Metrix--v4.0.3.conf rename blockchain-configuration-files/xbridge-confs/{lux--v5.3.3.conf => aeriumx--v2.2.conf} (59%) rename blockchain-configuration-files/xbridge-confs/{iop--v6.2.3.conf => aprcoin--v3.1.0.conf} (66%) create mode 100644 blockchain-configuration-files/xbridge-confs/argoneum--v1.4.0.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/australiacash--v0.17.4.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/bcz--v6.0.3.2.conf create mode 100644 blockchain-configuration-files/xbridge-confs/bitcoin--v0.16.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/bitcoin--v0.17.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/bitcoin--v0.18.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/bitcoin--v0.19.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/bitcoin--v0.21.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/bitcoinzero--5.0.7.8.conf create mode 100644 blockchain-configuration-files/xbridge-confs/bitcore--0.90.8.8.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/blast--v2.2.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/blocknet--v4.2.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/blocknet--v4.3.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/blocktest--v4.3.3.conf create mode 100644 blockchain-configuration-files/xbridge-confs/carebitcoin--v5.0.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/chaincoin--v0.18.conf create mode 100644 blockchain-configuration-files/xbridge-confs/crave--v2.5.2.conf rename blockchain-configuration-files/xbridge-confs/{dash--v0.12.2.3.conf => dash--v19.2.0.conf} (93%) mode change 100755 => 100644 rename blockchain-configuration-files/xbridge-confs/{denarius--v3.3.9.3.conf => denarius--v3.3.9.9.conf} (82%) create mode 100644 blockchain-configuration-files/xbridge-confs/diamond--v3.0.1.3.conf rename blockchain-configuration-files/xbridge-confs/{digibyte--v6.16.2.conf => digibyte--v7.17.2.conf} (88%) mode change 100755 => 100644 create mode 100644 blockchain-configuration-files/xbridge-confs/digiwage--v1.2.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/divi--v1.1.2.conf rename blockchain-configuration-files/xbridge-confs/{dogecash--3.0.0.conf => dogecash--5.4.4.conf} (74%) rename blockchain-configuration-files/xbridge-confs/{dogecoin--v1.10.0.conf => dogecoin--v1.14.5.conf} (83%) rename blockchain-configuration-files/xbridge-confs/{syscoin--3.0.5.0.conf => dynamic--v2.4.3.0.conf} (61%) mode change 100755 => 100644 create mode 100644 blockchain-configuration-files/xbridge-confs/einsteinium--v0.13.5.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/faircoin--v2.0.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/fantasygold--2.19.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/flo--v0.15.2.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/fujicoin--fujicoin-v0.18.0.conf rename blockchain-configuration-files/xbridge-confs/{polis--v1.3.1.conf => galactrum--v1.4.0.conf} (64%) create mode 100644 blockchain-configuration-files/xbridge-confs/galilel--v3.4.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/gincoin--v1.3.0.0.conf rename blockchain-configuration-files/xbridge-confs/{gobyte--v0.12.2.4.conf => gobyte--v0.16.2.1.conf} (88%) mode change 100755 => 100644 rename blockchain-configuration-files/xbridge-confs/{cryptodezirecash--v2.1.1.conf => goldcoin--v0.14.7.conf} (62%) create mode 100644 blockchain-configuration-files/xbridge-confs/hash--v1.5.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/htmlcoin--v2.5.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/innova--v4.3.8.8.conf create mode 100644 blockchain-configuration-files/xbridge-confs/klks--v2.8.0.conf rename blockchain-configuration-files/xbridge-confs/{iop--v6.1.0.conf => kreds--v1.0.0.6.conf} (62%) mode change 100755 => 100644 create mode 100644 blockchain-configuration-files/xbridge-confs/kyd--v3.2.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/lbrycrd--v0.17.3.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/litecoin--v0.16.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/litecoin--v0.17.1.conf rename blockchain-configuration-files/xbridge-confs/{dogecoin--v1.10.0-dogeparty.conf => lynx--v0.16.3.9.conf} (53%) mode change 100755 => 100644 create mode 100644 blockchain-configuration-files/xbridge-confs/machinecoin--v0.16.3.conf create mode 100644 blockchain-configuration-files/xbridge-confs/mktcoin--0.15.0.3.conf create mode 100644 blockchain-configuration-files/xbridge-confs/monacoin--monacoin-0.17.1.conf rename blockchain-configuration-files/xbridge-confs/{monetaryunit--v2.0.2.conf => monetaryunit--v2.3.0.conf} (91%) create mode 100644 blockchain-configuration-files/xbridge-confs/myriadcoin--v0.16.4.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/nativecoin--1.2.conf create mode 100644 blockchain-configuration-files/xbridge-confs/nix--v3.0.7.conf create mode 100644 blockchain-configuration-files/xbridge-confs/noir--v2.1.0.9.conf create mode 100644 blockchain-configuration-files/xbridge-confs/northern--3.3.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/odin--v1.6.6.conf create mode 100644 blockchain-configuration-files/xbridge-confs/ohmc--2.4.0.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/particl--v0.19.2.5.conf rename blockchain-configuration-files/xbridge-confs/{phore--v1.3.3.1.conf => phore--v1.7.1.conf} (94%) create mode 100644 blockchain-configuration-files/xbridge-confs/pura--v1.3.7.conf create mode 100644 blockchain-configuration-files/xbridge-confs/qbiccoin--v1.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/qtum--mainnet-ignition-v0.19.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/rapids--v2.0.0.0-b784ecbf4d.conf rename blockchain-configuration-files/xbridge-confs/{raven--v0.15.99.0.conf => raven--v4.1.0.conf} (80%) create mode 100644 blockchain-configuration-files/xbridge-confs/securecloud--v2.5.1.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/send--1.2.0.5.conf create mode 100644 blockchain-configuration-files/xbridge-confs/sequence--v1.3.3.0.conf rename blockchain-configuration-files/xbridge-confs/{phore--v1.3.0.conf => shekel--1.5.0.conf} (74%) mode change 100755 => 100644 create mode 100644 blockchain-configuration-files/xbridge-confs/sibcoin--v0.17.0.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/sparks--v0.12.4.3.conf create mode 100644 blockchain-configuration-files/xbridge-confs/stakecubecoin--v3.0.1.conf create mode 100644 blockchain-configuration-files/xbridge-confs/straks--1.14.7.5.conf create mode 100644 blockchain-configuration-files/xbridge-confs/swiftcash--3.0.5.conf rename blockchain-configuration-files/xbridge-confs/{syscoin--v4.0.3.conf => syscoin--v4.4.2.conf} (95%) create mode 100644 blockchain-configuration-files/xbridge-confs/systest--v4.3.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/terracoin--v0.12.2.4.conf create mode 100644 blockchain-configuration-files/xbridge-confs/tribe--1.0.2.conf create mode 100644 blockchain-configuration-files/xbridge-confs/ufocoin--v0.18.0.conf rename blockchain-configuration-files/xbridge-confs/{unobtanium--v0.10.1.1.conf => unobtanium--v0.11.0.conf} (85%) create mode 100644 blockchain-configuration-files/xbridge-confs/vertcoin--0.14.0.conf create mode 100644 blockchain-configuration-files/xbridge-confs/viacoin--v0.16.3.conf create mode 100644 blockchain-configuration-files/xbridge-confs/vitae--v4.4.0.3.conf create mode 100644 blockchain-configuration-files/xbridge-confs/vivo--v0.12.1.17.conf create mode 100644 blockchain-configuration-files/xbridge-confs/vsync--v3.8.7.6.conf create mode 100644 blockchain-configuration-files/xbridge-confs/wagerr--v3.1.0.conf rename blockchain-configuration-files/xbridge-confs/{verge--v6.0.2.conf => xaya--v1.4.1.conf} (56%) create mode 100644 blockchain-configuration-files/xbridge-confs/zcoin--v0.14.0.1.conf rename blockchain-configuration-files/xbridge-confs/{cryptonodes--v1.4.3.conf => zenzo--v2.1.0.conf} (68%) diff --git a/blockchain-configuration-files/manifest-latest.json b/blockchain-configuration-files/manifest-latest.json index dac21ef1..a13c6a12 100755 --- a/blockchain-configuration-files/manifest-latest.json +++ b/blockchain-configuration-files/manifest-latest.json @@ -1,2196 +1,2318 @@ -[ - { - "blockchain": "Abosom", - "ticker": "ABS", - "ver_id": "abosom--v1.0.0", - "ver_name": "Abosom", - "conf_name": "abosom.conf", - "dir_name_linux": "abosomcore", - "dir_name_mac": "AbosomCore", - "dir_name_win": "AbosomCore", - "repo_url": "https://github.com/ZenyattaAbosom/Abosom", - "versions": [ - "v1.0.0" - ], - "xbridge_conf": "abosom--v1.0.0.conf", - "wallet_conf": "abosom--v1.0.0.conf" - }, - { - "blockchain": "AeriumX", - "ticker": "AEX", - "ver_id": "aeriumx--v2.0", - "ver_name": "AeriumX", - "conf_name": "aeriumx.conf", - "dir_name_linux": "aeriumx", - "dir_name_mac": "AeriumX", - "dir_name_win": "AeriumX", - "repo_url": "https://github.com/aeriumcoin/AeriumX", - "versions": [ - "v2.2" - ], - "xbridge_conf": "aeriumx--v2.0.conf", - "wallet_conf": "aeriumx--v2.0.conf" - }, - { - "blockchain": "Altbet", - "ticker": "ABET", - "ver_id": "abet--v3.4.1.0", - "ver_name": "Altbet", - "conf_name": "abet.conf", - "dir_name_linux": "abet", - "dir_name_mac": "Abet", - "dir_name_win": "Abet", - "repo_url": "https://github.com/altbet/abet", - "versions": [ - "v3.4.1.0", - "v3.4.1.0+" - ], - "xbridge_conf": "abet--v3.4.1.0.conf", - "wallet_conf": "abet--v3.4.1.0.conf" - }, - { - "blockchain": "APR Coin", - "ticker": "APR", - "ver_id": "aprcoin--v1.0", - "ver_name": "APR Coin", - "conf_name": "aprcoin.conf", - "dir_name_linux": "aprcoin", - "dir_name_mac": "AprCoin", - "dir_name_win": "AprCoin", - "repo_url": "https://github.com/APRCoin/zenith-repository", - "versions": [ - "V3.1.0" - ], - "xbridge_conf": "aprcoin--v1.0.conf", - "wallet_conf": "aprcoin--v1.0.conf" - }, - { - "blockchain": "Argoneum", - "ticker": "AGM", - "ver_id": "argoneum--v1.2.3.4", - "ver_name": "Argoneum", - "conf_name": "argoneum.conf", - "dir_name_linux": "argoneum", - "dir_name_mac": "Argoneum", - "dir_name_win": "Argoneum", - "repo_url": "https://github.com/Argoneum/argoneum", - "versions": [ - "v1.4.0.0", - "v1.4.1.0" - ], - "xbridge_conf": "argoneum--v1.2.3.4.conf", - "wallet_conf": "argoneum--v1.2.3.4.conf" - }, - { - "blockchain": "ATBCoin", - "ticker": "ATB", - "ver_id": "atbcoin--v1.1.0", - "ver_name": "ATBCoin", - "conf_name": "atbcoin.conf", - "dir_name_linux": "ATBCoinWallet", - "dir_name_mac": "ATBCoinWallet", - "dir_name_win": "ATBCoinWallet", - "repo_url": "https://github.com/segwit/atbcoin", - "versions": [ - "v1.1.0" - ], - "xbridge_conf": "atbcoin--v1.1.0.conf", - "wallet_conf": "atbcoin--v1.1.0.conf" - }, - { - "blockchain": "AustraliaCash", - "ticker": "AUS", - "ver_id": "australiacash--v0.17.4.0", - "ver_name": "AustraliaCash", - "conf_name": "australiacash.conf", - "dir_name_linux": "australiacash", - "dir_name_mac": "Australiacash", - "dir_name_win": "Australiacash", - "repo_url": "https://github.com/AustraliaCash/AustraliaCash-Core", - "versions": [ - "v0.17.4.1" - ], - "xbridge_conf": "australiacash--v0.17.4.0.conf", - "wallet_conf": "australiacash--v0.17.4.0.conf" - }, - { - "blockchain": "Badcoin", - "ticker": "BAD", - "ver_id": "badcoin--v0.16.3-2", - "ver_name": "Badcoin", - "conf_name": "badcoin.conf", - "dir_name_linux": "badcoin", - "dir_name_mac": "Badcoin", - "dir_name_win": "Badcoin", - "repo_url": "https://github.com/badcoin-net/Badcoin", - "versions": [ - "v0.16.3-2" - ], - "xbridge_conf": "badcoin--v0.16.3-2.conf", - "wallet_conf": "badcoin--v0.16.3-2.conf" - }, - { - "blockchain": "Bitcloud", - "ticker": "BTDX", - "ver_id": "bitcloud--2.1.0.1.1", - "ver_name": "Bitcloud", - "conf_name": "bitcloud.conf", - "dir_name_linux": "bitcloud", - "dir_name_mac": "Bitcloud", - "dir_name_win": "Bitcloud", - "repo_url": "https://github.com/LIMXTEC/Bitcloud", - "versions": [ - "2.1.0.1.1" - ], - "xbridge_conf": "bitcloud--2.1.0.1.1.conf", - "wallet_conf": "bitcloud--2.1.0.1.1.conf" - }, - { - "blockchain": "Bitcoin", - "ticker": "BTC", - "ver_id": "bitcoin--v0.15.1", - "ver_name": "Bitcoin v0.15.x", - "conf_name": "bitcoin.conf", - "dir_name_linux": "bitcoin", - "dir_name_mac": "Bitcoin", - "dir_name_win": "Bitcoin", - "repo_url": "https://github.com/bitcoin/bitcoin", - "versions": [ - "v0.15.1", - "v0.15.2" - ], - "xbridge_conf": "bitcoin--v0.15.1.conf", - "wallet_conf": "bitcoin--v0.15.1.conf" - }, - { - "blockchain": "Bitcoin", - "ticker": "BTC", - "ver_id": "bitcoin--v0.16.0", - "ver_name": "Bitcoin v0.16.x", - "conf_name": "bitcoin.conf", - "dir_name_linux": "bitcoin", - "dir_name_mac": "Bitcoin", - "dir_name_win": "Bitcoin", - "repo_url": "https://github.com/bitcoin/bitcoin", - "versions": [ - "v0.16.0", - "v0.16.1", - "v0.16.2", - "v0.16.3" - ], - "xbridge_conf": "bitcoin--v0.15.1.conf", - "wallet_conf": "bitcoin--v0.16.0.conf" - }, - { - "blockchain": "Bitcoin", - "ticker": "BTC", - "ver_id": "bitcoin--v0.17.0", - "ver_name": "Bitcoin v0.17.x", - "conf_name": "bitcoin.conf", - "dir_name_linux": "bitcoin", - "dir_name_mac": "Bitcoin", - "dir_name_win": "Bitcoin", - "repo_url": "https://github.com/bitcoin/bitcoin", - "versions": [ - "v0.17.0", - "v0.17.0.1", - "v0.17.1" - ], - "xbridge_conf": "bitcoin--v0.15.1.conf", - "wallet_conf": "bitcoin--v0.17.0.conf" - }, - { - "blockchain": "Bitcoin", - "ticker": "BTC", - "ver_id": "bitcoin--v0.18.0", - "ver_name": "Bitcoin v0.18.x", - "conf_name": "bitcoin.conf", - "dir_name_linux": "bitcoin", - "dir_name_mac": "Bitcoin", - "dir_name_win": "Bitcoin", - "repo_url": "https://github.com/bitcoin/bitcoin", - "versions": [ - "v0.18.0", - "v0.18.1" - ], - "xbridge_conf": "bitcoin--v0.15.1.conf", - "wallet_conf": "bitcoin--v0.16.0.conf" - }, - { - "blockchain": "Bitcoin", - "ticker": "BTC", - "ver_id": "bitcoin--v0.19.0", - "ver_name": "Bitcoin v0.19.x", - "conf_name": "bitcoin.conf", - "dir_name_linux": "bitcoin", - "dir_name_mac": "Bitcoin", - "dir_name_win": "Bitcoin", - "repo_url": "https://github.com/bitcoin/bitcoin", - "versions": [ - "v0.19.0", - "v0.19.0.1", - "v0.19.1" - ], - "xbridge_conf": "bitcoin--v0.15.1.conf", - "wallet_conf": "bitcoin--v0.16.0.conf" - }, - { - "blockchain": "Bitcoin", - "ticker": "BTC", - "ver_id": "bitcoin--v0.20.0", - "ver_name": "Bitcoin v0.20.x", - "conf_name": "bitcoin.conf", - "dir_name_linux": "bitcoin", - "dir_name_mac": "Bitcoin", - "dir_name_win": "Bitcoin", - "repo_url": "https://github.com/bitcoin/bitcoin", - "versions": [ - "v0.20.0" - ], - "xbridge_conf": "bitcoin--v0.20.0.conf", - "wallet_conf": "bitcoin--v0.16.0.conf" - }, - { - "blockchain": "Bitcoin Cash", - "ticker": "BCH", - "ver_id": "bitcoincash--v0.21.11", - "ver_name": "Bitcoin Cash", - "conf_name": "bitcoin.conf", - "dir_name_linux": "bitcoincash", - "dir_name_mac": "BitcoinCash", - "dir_name_win": "BitcoinCash", - "repo_url": "https://github.com/Bitcoin-ABC/bitcoin-abc", - "versions": [ - "v0.21.11" - ], - "xbridge_conf": "bitcoincash--v0.21.11.conf", - "wallet_conf": "bitcoincash--v0.21.11.conf" - }, - { - "blockchain": "Bitcoin CZ", - "ticker": "BCZ", - "ver_id": "bcz--6.0.0.8", - "ver_name": "Bitcoin CZ", - "conf_name": "bcz.conf", - "dir_name_linux": "bcz", - "dir_name_mac": "BCZ", - "dir_name_win": "BCZ", - "repo_url": "https://github.com/SpecialCoins/bitcoincz", - "versions": [ - "6.0.3.2" - ], - "xbridge_conf": "bcz--6.0.0.8.conf", - "wallet_conf": "bcz--6.0.0.8.conf" - }, - { - "blockchain": "Bitcoin Diamond", - "ticker": "BCD", - "ver_id": "bitcoindiamond--v1.3.0", - "ver_name": "Bitcoin Diamond", - "conf_name": "bitcoin.conf", - "dir_name_linux": "bitcoindiamond", - "dir_name_mac": "BitcoinDiamond", - "dir_name_win": "BitcoinDiamond", - "repo_url": "https://github.com/eveybcd/BitcoinDiamond", - "versions": [ - "v1.3.0" - ], - "xbridge_conf": "bitcoindiamond--v1.3.0.conf", - "wallet_conf": "bitcoindiamond--v1.3.0.conf" - }, - { - "blockchain": "Bitcoin Gold", - "ticker": "BTG", - "ver_id": "bitcoingold--v0.17.2", - "ver_name": "Bitcoin Gold", - "conf_name": "bitcoingold.conf", - "dir_name_linux": "bitcoingold", - "dir_name_mac": "BitcoinGold", - "dir_name_win": "BitcoinGold", - "repo_url": "https://github.com/BTCGPU/BTCGPU", - "versions": [ - "v0.17.2" - ], - "xbridge_conf": "bitcoingold--v0.17.2.conf", - "wallet_conf": "bitcoingold--v0.17.2.conf" - }, - { - "blockchain": "BitGreen", - "ticker": "BITG", - "ver_id": "bitgreen--v1.4.0.8", - "ver_name": "BitGreen", - "conf_name": "bitgreen.conf", - "dir_name_linux": "bitgreen", - "dir_name_mac": "BitGreen", - "dir_name_win": "BitGreen", - "repo_url": "https://github.com/bitgreen/bitgreen", - "versions": [ - "v1.4.0.8", - "v1.4.0.9", - "v1.5.0.1", - "v1.5.0.2" - ], - "xbridge_conf": "bitgreen--v1.4.0.8.conf", - "wallet_conf": "bitgreen--v1.4.0.8.conf" - }, - { - "blockchain": "BitCore", - "ticker": "BTX", - "ver_id": "bitcore--0.90.8.8.1", - "ver_name": "BitCore 0.90.x", - "conf_name": "bitcore.conf", - "dir_name_linux": "bitcore", - "dir_name_mac": "BitCore", - "dir_name_win": "BitCore", - "repo_url": "https://github.com/LIMXTEC/BitCore", - "versions": [ - "0.90.8.8.1", - "0.90.8.9", - "0.90.8.10", - "0.90.8.11", - "0.90.9.0", - "0.90.9.1" - ], - "xbridge_conf": "bitcore--0.15.2.0.0.conf", - "wallet_conf": "bitcore--0.90.8.8.1.conf" - }, - { - "blockchain": "BitcoinZero", - "ticker": "BZX", - "ver_id": "bitcoinzero--5.0.1.0", - "ver_name": "BitcoinZero", - "conf_name": "bitcoinzero.conf", - "dir_name_linux": "bitcoinzero", - "dir_name_mac": "bitcoinzero", - "dir_name_win": "bitcoinzero", - "repo_url": "https://github.com/SpecialCoins/BitcoinZero", - "versions": [ - "5.0.7.8" - ], - "xbridge_conf": "bitcoinzero--5.0.0.5.conf", - "wallet_conf": "bitcoinzero--5.0.0.5.conf" - }, - { - "blockchain": "BitMoney", - "ticker": "BIT", - "ver_id": "BitMoney--2.2.0.2", - "ver_name": "BitMoney", - "conf_name": "BitMoney.conf", - "dir_name_linux": "BitMoney", - "dir_name_mac": "BitMoney", - "dir_name_win": "BitMoney", - "repo_url": "https://github.com/CryptVenture/BitMoneyV22", - "versions": [ - "2.2.0.2" - ], - "xbridge_conf": "bitmoney--2.2.0.2.conf", - "wallet_conf": "bitmoney--2.2.0.2.conf" - }, - { - "blockchain": "BitSend", - "ticker": "BSD", - "ver_id": "bitsend--0.14.2.0.1", - "ver_name": "BitSend", - "conf_name": "bitsend.conf", - "dir_name_linux": "bitsend", - "dir_name_mac": "bitsend", - "dir_name_win": "bitsend", - "repo_url": "https://github.com/LIMXTEC/BitSend", - "versions": [ - "0.14.2.0.1" - ], - "xbridge_conf": "bitsend--0.14.2.0.1.conf", - "wallet_conf": "bitsend--0.14.2.0.1.conf" - }, - { - "blockchain": "BLAST", - "ticker": "BLAST", - "ver_id": "blast--v1.2.0.2", - "ver_name": "BLAST", - "conf_name": "blast.conf", - "dir_name_linux": "blast", - "dir_name_mac": "BLAST", - "dir_name_win": "BLAST", - "repo_url": "https://github.com/blastdev/blast-core-v2", - "versions": [ - "v2.2.0" - ], - "xbridge_conf": "blast--v1.2.0.2.conf", - "wallet_conf": "blast--v1.2.0.2.conf" - }, - { - "blockchain": "Blocknet", - "ticker": "BLOCK", - "ver_id": "blocknet--v4.0.1", - "ver_name": "Blocknet v4", - "conf_name": "blocknet.conf", - "dir_name_linux": "blocknet", - "dir_name_mac": "Blocknet", - "dir_name_win": "Blocknet", - "repo_url": "https://github.com/blocknetdx/blocknet", - "versions": [ - "v4.3.0" - ], - "xbridge_conf": "blocknet--v4.0.1.conf", - "wallet_conf": "blocknet--v4.0.1.conf" - }, - { - "blockchain": "Carebit", - "ticker": "CARE", - "ver_id": "carebitcoin--v3.0.0.0", - "ver_name": "Carebit", - "conf_name": "carebitcoin.conf", - "dir_name_linux": "carebitcoin", - "dir_name_mac": "CarebitCoin", - "dir_name_win": "CarebitCoin", - "repo_url": "https://github.com/carebitcoin/carebitcoin", - "versions": [ - "v5.0.0" - ], - "xbridge_conf": "carebitcoin--v3.0.0.0.conf", - "wallet_conf": "carebitcoin--v3.0.0.0.conf" - }, - { - "blockchain": "CbdHealthNetwork", - "ticker": "CHN", - "ver_id": "cbdhealthnetwork--wallets-source-daemon", - "ver_name": "CbdHealthNetwork", - "conf_name": "cbdhealthnetwork.conf", - "dir_name_linux": "cbdhealthnetwork", - "dir_name_mac": "CbdHealthNetwork", - "dir_name_win": "CbdHealthNetwork", - "repo_url": "https://github.com/CHN-portal/CHN-Portal", - "versions": [ - "wallets-source-daemon" - ], - "xbridge_conf": "cbdhealthnetwork--wallets-source-daemon.conf", - "wallet_conf": "cbdhealthnetwork--wallets-source-daemon.conf" - }, - { - "blockchain": "Chaincoin", - "ticker": "CHC", - "ver_id": "chaincoin--v0.18.1", - "ver_name": "Chaincoin", - "conf_name": "chaincoin.conf", - "dir_name_linux": "chaincoincore", - "dir_name_mac": "Chaincoin", - "dir_name_win": "Chaincoin", - "repo_url": "https://github.com/chaincoin/chaincoin", - "versions": [ - "v0.18" - ], - "xbridge_conf": "chaincoin--v0.18.1.conf", - "wallet_conf": "chaincoin--v0.18.1.conf" - }, - { - "blockchain": "Civitas", - "ticker": "CIV", - "ver_id": "civitas--v1.2.2", - "ver_name": "Civitas", - "conf_name": "civitas.conf", - "dir_name_linux": "civitas", - "dir_name_mac": "Civitas", - "dir_name_win": "Civitas", - "repo_url": "https://github.com/eastcoastcrypto/Civitas", - "versions": [ - "v1.2.2" - ], - "xbridge_conf": "civitas--v1.2.2.conf", - "wallet_conf": "civitas--v1.2.2.conf" - }, - { - "blockchain": "ColossusXT", - "ticker": "COLX", - "ver_id": "ColossusXT--v1.2.1", - "ver_name": "ColossusXT", - "conf_name": "ColossusXT.conf", - "dir_name_linux": "ColossusXT", - "dir_name_mac": "ColossusXT", - "dir_name_win": "ColossusXT", - "repo_url": "https://github.com/ColossusCoinXT/ColossusCoinXT", - "versions": [ - "v1.2.3", - "v1.2.4" - ], - "xbridge_conf": "colossusxt--v1.2.1.conf", - "wallet_conf": "colossusxt--v1.2.1.conf" - }, - { - "blockchain": "Crave", - "ticker": "CRAVE", - "ver_id": "crave--v2.5.0.3", - "ver_name": "Crave", - "conf_name": "crave.conf", - "dir_name_linux": "craveng", - "dir_name_mac": "CraveNG", - "dir_name_win": "CraveNG", - "repo_url": "https://github.com/Crave-Community-Project/Crave-Project", - "versions": [ - "v2.5.2" - ], - "xbridge_conf": "crave--v2.5.0.3.conf", - "wallet_conf": "crave--v2.5.0.3.conf" - }, - { - "blockchain": "Crypto Dezire Cash", - "ticker": "CDZC", - "ver_id": "cryptodezirecash--v2.1.1", - "ver_name": "Crypto Dezire Cash", - "conf_name": "cryptodezirecash.conf", - "dir_name_linux": "cryptodezirecash", - "dir_name_mac": "CryptoDezireCash", - "dir_name_win": "CryptoDezireCash", - "repo_url": "https://github.com/cryptodezire/CryptoDezireCash", - "versions": [ - "v2.1.2" - ], - "xbridge_conf": "cryptodezirecash--v2.1.1.conf", - "wallet_conf": "cryptodezirecash--v2.1.1.conf" - }, - { - "blockchain": "Cryptonodes", - "ticker": "CNMC", - "ver_id": "cryptonodes--v1.4.3", - "ver_name": "Cryptonodes", - "conf_name": "cryptonodes.conf", - "dir_name_linux": "cryptonodes", - "dir_name_mac": "Cryptonodes", - "dir_name_win": "Cryptonodes", - "repo_url": "https://github.com/cryptonodes-core/cryptonodes-core", - "versions": [ - "v1.4.4.1" - ], - "xbridge_conf": "cryptonodes--v1.4.3.conf", - "wallet_conf": "cryptonodes--v1.4.3.conf" - }, - { - "blockchain": "Dash", - "ticker": "DASH", - "ver_id": "dash--v0.12.2.3", - "ver_name": "Dash", - "conf_name": "dash.conf", - "dir_name_linux": "dashcore", - "dir_name_mac": "DashCore", - "dir_name_win": "DashCore", - "repo_url": "https://github.com/dashpay/dash", - "versions": [ - "v0.14.0.2", - "v0.14.0.3", - "v0.14.0.4", - "v0.14.0.5", - "v0.15.0.0" - ], - "xbridge_conf": "dash--v0.12.2.3.conf", - "wallet_conf": "dash--v0.12.2.3.conf" - }, - { - "blockchain": "Denarius", - "ticker": "D", - "ver_id": "denarius--v3.3.9.3", - "ver_name": "Denarius", - "conf_name": "denarius.conf", - "dir_name_linux": "denarius", - "dir_name_mac": "Denarius", - "dir_name_win": "Denarius", - "repo_url": "https://github.com/carsenk/denarius", - "versions": [ - "v3.3.9.3", - "v3.3.9.4", - "v3.3.9.5", - "v3.3.9.6", - "v3.3.9.7" - ], - "xbridge_conf": "denarius--v3.3.9.3.conf", - "wallet_conf": "denarius--v3.3.9.3.conf" - }, - { - "blockchain": "Desire", - "ticker": "DSR", - "ver_id": "desire--Desire-v.0.12.2.2.1", - "ver_name": "Desire", - "conf_name": "desire.conf", - "dir_name_linux": "desirecore", - "dir_name_mac": "DesireCore", - "dir_name_win": "DesireCore", - "repo_url": "https://github.com/lazyboozer/Desire", - "versions": [ - "Desire-v.0.12.2.2" - ], - "xbridge_conf": "desire--desire-v.0.12.2.2.1.conf", - "wallet_conf": "desire--desire-v.0.12.2.2.1.conf" - }, - { - "blockchain": "DeVault", - "ticker": "DVT", - "ver_id": "devault--v1.1.7", - "ver_name": "DeVault", - "conf_name": "devault.conf", - "dir_name_linux": "devault", - "dir_name_mac": "DeVault", - "dir_name_win": "DeVault", - "repo_url": "https://github.com/devaultcrypto/devault", - "versions": [ - "v1.1.7" - ], - "xbridge_conf": "devault--v1.1.7.conf", - "wallet_conf": "devault--v1.1.7.conf" - }, - { - "blockchain": "Diamond", - "ticker": "DMD", - "ver_id": "diamond--v3.0.1.1", - "ver_name": "Diamond", - "conf_name": "diamond.conf", - "dir_name_linux": "DMDV3", - "dir_name_mac": "DMDV3", - "dir_name_win": "DMDV3", - "repo_url": "https://github.com/DMDcoin/Diamond", - "versions": [ - "3.0.1.3" - ], - "xbridge_conf": "diamond--v3.0.1.1.conf", - "wallet_conf": "diamond--v3.0.1.1.conf" - }, - { - "blockchain": "DigiByte", - "ticker": "DGB", - "ver_id": "digibyte--v6.16.2", - "ver_name": "DigiByte", - "conf_name": "digibyte.conf", - "dir_name_linux": "digibyte", - "dir_name_mac": "DigiByte", - "dir_name_win": "DigiByte", - "repo_url": "https://github.com/digibyte/digibyte", - "versions": [ - "v7.17.2" - ], - "xbridge_conf": "digibyte--v6.16.2.conf", - "wallet_conf": "digibyte--v6.16.2.conf" - }, - { - "blockchain": "Digiwage", - "ticker": "WAGE", - "ver_id": "digiwage--v1.1.0", - "ver_name": "Digiwage", - "conf_name": "digiwage.conf", - "dir_name_linux": "digiwage", - "dir_name_mac": "Digiwage", - "dir_name_win": "Digiwage", - "repo_url": "https://github.com/digiwage/digiwage", - "versions": [ - "1.2.1" - ], - "xbridge_conf": "digiwage--v1.1.0.conf", - "wallet_conf": "digiwage--v1.1.0.conf" - }, - { - "blockchain": "Divi", - "ticker": "DIVI", - "ver_id": "divi--v1.0.4-core", - "ver_name": "Divi", - "conf_name": "divi.conf", - "dir_name_linux": "divi", - "dir_name_mac": "DIVI", - "dir_name_win": "DIVI", - "repo_url": "https://github.com/DiviProject/Divi", - "versions": [ - "v1.1.2", - "DESK-1.6.6" - ], - "xbridge_conf": "divi--v1.0.4-core.conf", - "wallet_conf": "divi--v1.0.4-core.conf" - }, - { - "blockchain": "DogeCash", - "ticker": "DOGEC", - "ver_id": "dogecash--3.0.0", - "ver_name": "DogeCash", - "conf_name": "dogecash.conf", - "dir_name_linux": "dogecash", - "dir_name_mac": "dogecash", - "dir_name_win": "DogeCashCore", - "repo_url": "https://github.com/dogecash/dogecash", - "versions": [ - "5.2.1.0" - ], - "xbridge_conf": "dogecash--3.0.0.conf", - "wallet_conf": "dogecash--3.0.0.conf" - }, - { - "blockchain": "Dogecoin", - "ticker": "DOGE", - "ver_id": "dogecoin--v1.10.0", - "ver_name": "Dogecoin", - "conf_name": "dogecoin.conf", - "dir_name_linux": "dogecoin", - "dir_name_mac": "Dogecoin", - "dir_name_win": "Dogecoin", - "repo_url": "https://github.com/dogecoin/dogecoin", - "versions": [ - "v1.14.2" - ], - "xbridge_conf": "dogecoin--v1.10.0.conf", - "wallet_conf": "dogecoin--v1.10.0.conf" - }, - { - "blockchain": "Dynamic", - "ticker": "DYN", - "ver_id": "dynamic--v2.3.5.0", - "ver_name": "Dynamic", - "conf_name": "dynamic.conf", - "dir_name_linux": "dynamic", - "dir_name_mac": "Dynamic", - "dir_name_win": "Dynamic", - "repo_url": "https://github.com/duality-solutions/Dynamic", - "versions": [ - "v2.4.3.0", - "v2.4.4.0", - "v2.4.4.1" - ], - "xbridge_conf": "dynamic--v2.3.5.0.conf", - "wallet_conf": "dynamic--v2.3.5.0.conf" - }, - { - "blockchain": "Einsteinium", - "ticker": "EMC2", - "ver_id": "einsteinium--v0.13.48.0", - "ver_name": "Einsteinium", - "conf_name": "einsteinium.conf", - "dir_name_linux": "einsteinium", - "dir_name_mac": "Einsteinium", - "dir_name_win": "Einsteinium", - "repo_url": "https://github.com/emc2foundation/einsteinium", - "versions": [ - "v0.13.5.0" - ], - "xbridge_conf": "einsteinium--v0.13.48.0.conf", - "wallet_conf": "einsteinium--v0.13.48.0.conf" - }, - { - "blockchain": "Electra", - "ticker": "ECA", - "ver_id": "Electra--2.0.2.1", - "ver_name": "Electra", - "conf_name": "Electra.conf", - "dir_name_linux": "electra", - "dir_name_mac": "Electra", - "dir_name_win": "Electra", - "repo_url": "https://github.com/Electra-project/electra-core", - "versions": [ - "2.1.1", - "2.1.2" - ], - "xbridge_conf": "electra--2.0.2.1.conf", - "wallet_conf": "electra--2.0.2.1.conf" - }, - { - "blockchain": "Emercoin", - "ticker": "EMC", - "ver_id": "emercoin--v0.7.10emc", - "ver_name": "Emercoin", - "conf_name": "emercoin.conf", - "dir_name_linux": "emercoin", - "dir_name_mac": "Emercoin", - "dir_name_win": "Emercoin", - "repo_url": "https://github.com/emercoin/emercoin", - "versions": [ - "v0.7.10emc" - ], - "xbridge_conf": "emercoin--v0.7.10emc.conf", - "wallet_conf": "emercoin--v0.7.10emc.conf" - }, - { - "blockchain": "Eternity", - "ticker": "ENT", - "ver_id": "eternity--v0.12.1.7", - "ver_name": "Eternity", - "conf_name": "eternity.conf", - "dir_name_linux": "eternitycore", - "dir_name_mac": "EternityCore", - "dir_name_win": "EternityCore", - "repo_url": "https://github.com/eternity-group/eternity", - "versions": [ - "v0.12.1.7" - ], - "xbridge_conf": "eternity--v0.12.1.7.conf", - "wallet_conf": "eternity--v0.12.1.7.conf" - }, - { - "blockchain": "eXperience Points", - "ticker": "XP", - "ver_id": "experiencepoints--v3.4.0.3", - "ver_name": "eXperience Points", - "conf_name": "eXperiencePoints.conf", - "dir_name_linux": "eXperiencePoints", - "dir_name_mac": "eXperiencePoints", - "dir_name_win": "eXperiencePoints", - "repo_url": "https://github.com/experience-points-development/eXperience-Points", - "versions": [ - "v3.4.0.3" - ], - "xbridge_conf": "experiencepoints--v3.4.0.3.conf", - "wallet_conf": "experiencepoints--v3.4.0.3.conf" - }, - { - "blockchain": "Faircoin", - "ticker": "FAIR", - "ver_id": "faircoin--v2.0.0", - "ver_name": "Faircoin", - "conf_name": "faircoin.conf", - "dir_name_linux": "faircoin2", - "dir_name_mac": "faircoin2", - "dir_name_win": "faircoin2", - "repo_url": "https://github.com/faircoin/faircoin", - "versions": [ - "v2.0.1" - ], - "xbridge_conf": "faircoin--v2.0.0.conf", - "wallet_conf": "faircoin--v2.0.0.conf" - }, - { - "blockchain": "FantasyGold", - "ticker": "FGC", - "ver_id": "fantasygold--2.0.0", - "ver_name": "FantasyGold", - "conf_name": "fantasygold.conf", - "dir_name_linux": "fantasygold", - "dir_name_mac": "FantasyGold", - "dir_name_win": "FantasyGold", - "repo_url": "https://github.com/FantasyGold/FantasyGold-Core", - "versions": [ - "2.19.1" - ], - "xbridge_conf": "fantasygold--2.0.0.conf", - "wallet_conf": "fantasygold--2.0.0.conf" - }, - { - "blockchain": "Flo", - "ticker": "FLO", - "ver_id": "flo--v0.15.0.3", - "ver_name": "Flo", - "conf_name": "flo.conf", - "dir_name_linux": "flo", - "dir_name_mac": "FLO", - "dir_name_win": "FLO", - "repo_url": "https://github.com/floblockchain/flo", - "versions": [ - "v0.15.2.0", - "v0.15.2.1" - ], - "xbridge_conf": "flo--v0.15.0.3.conf", - "wallet_conf": "flo--v0.15.2.1.conf" - }, - { - "blockchain": "FujiCoin", - "ticker": "FJC", - "ver_id": "fujicoin--fujicoin-v0.16.1", - "ver_name": "FujiCoin", - "conf_name": "fujicoin.conf", - "dir_name_linux": "fujicoin", - "dir_name_mac": "Fujicoin", - "dir_name_win": "Fujicoin", - "repo_url": "https://github.com/fujicoin/fujicoin", - "versions": [ - "fujicoin-v0.18.0" - ], - "xbridge_conf": "fujicoin--fujicoin-v0.16.1.conf", - "wallet_conf": "fujicoin--fujicoin-v0.16.1.conf" - }, - { - "blockchain": "Galactrum", - "ticker": "ORE", - "ver_id": "galactrum--v1.1.6", - "ver_name": "Galactrum", - "conf_name": "galactrum.conf", - "dir_name_linux": "galactrum", - "dir_name_mac": "Galactrum", - "dir_name_win": "Galactrum", - "repo_url": "https://github.com/galactrum/galactrum", - "versions": [ - "v1.4.0" - ], - "xbridge_conf": "galactrum--v1.1.6.conf", - "wallet_conf": "galactrum--v1.4.0.conf" - }, - { - "blockchain": "Galilel", - "ticker": "GALI", - "ver_id": "galilel--v3.2.0", - "ver_name": "Galilel", - "conf_name": "galilel.conf", - "dir_name_linux": "galilel", - "dir_name_mac": "Galilel", - "dir_name_win": "Galilel", - "repo_url": "https://github.com/Galilel-Project/galilel", - "versions": [ - "v3.4.0" - ], - "xbridge_conf": "galilel--v3.2.0.conf", - "wallet_conf": "galilel--v3.2.0.conf" - }, - { - "blockchain": "GambleCoin", - "ticker": "GMCN", - "ver_id": "gamblecoin--1.1.4", - "ver_name": "GambleCoin", - "conf_name": "gamblecoin.conf", - "dir_name_linux": "gamblecoin", - "dir_name_mac": "GambleCoin", - "dir_name_win": "GambleCoin", - "repo_url": "https://github.com/GambleCoin-Project/GambleCoin", - "versions": [ - "1.1.4" - ], - "xbridge_conf": "gamblecoin--1.1.4.conf", - "wallet_conf": "gamblecoin--1.1.4.conf" - }, - { - "blockchain": "GeekCash", - "ticker": "GEEK", - "ver_id": "geekcash--v1.3.0.1", - "ver_name": "GeekCash", - "conf_name": "geekcash.conf", - "dir_name_linux": "geekcash", - "dir_name_mac": "GeekCash", - "dir_name_win": "GeekCash", - "repo_url": "https://github.com/GeekCash/geek", - "versions": [ - "v1.3.0.1" - ], - "xbridge_conf": "geekcash--v1.3.0.1.conf", - "wallet_conf": "geekcash--v1.3.0.1.conf" - }, - { - "blockchain": "GINcoin", - "ticker": "GIN", - "ver_id": "gincoin--1.1.0.0", - "ver_name": "GINcoin", - "conf_name": "gincoin.conf", - "dir_name_linux": "gincoincore", - "dir_name_mac": "GincoinCore", - "dir_name_win": "GincoinCore", - "repo_url": "https://github.com/GIN-coin/gincoin-core", - "versions": [ - "v1.3.0.0" - ], - "xbridge_conf": "gincoin--1.1.0.0.conf", - "wallet_conf": "gincoin--1.1.0.0.conf" - }, - { - "blockchain": "GoByte", - "ticker": "GBX", - "ver_id": "gobyte--v0.12.2.4", - "ver_name": "GoByte", - "conf_name": "gobyte.conf", - "dir_name_linux": "gobytecore", - "dir_name_mac": "GoByteCore", - "dir_name_win": "GoByteCore", - "repo_url": "https://github.com/gobytecoin/gobyte", - "versions": [ - "v0.12.2.4" - ], - "xbridge_conf": "gobyte--v0.12.2.4.conf", - "wallet_conf": "gobyte--v0.12.2.4.conf" - }, - { - "blockchain": "GravityCoin", - "ticker": "GXX", - "ver_id": "GravityCoin--4.0.5.0.1", - "ver_name": "GravityCoin", - "conf_name": "GravityCoin.conf", - "dir_name_linux": "GravityCoin", - "dir_name_mac": "GravityCoin", - "dir_name_win": "GravityCoin", - "repo_url": "https://github.com/SpecialCoins/GravityCoin", - "versions": [ - "4.0.7.8" - ], - "xbridge_conf": "gravitycoin--4.0.5.0.1.conf", - "wallet_conf": "gravitycoin--4.0.5.0.1.conf" - }, - { - "blockchain": "HASH", - "ticker": "HASH", - "ver_id": "hash--v1.4.0", - "ver_name": "HASH", - "conf_name": "hash.conf", - "dir_name_linux": "hash", - "dir_name_mac": "Hash", - "dir_name_win": "Hash", - "repo_url": "https://github.com/hashplatform/hash", - "versions": [ - "v1.5.1" - ], - "xbridge_conf": "hash--v1.4.0.conf", - "wallet_conf": "hash--v1.4.0.conf" - }, - { - "blockchain": "Hatch", - "ticker": "HATCH", - "ver_id": "hatch--v0.14.0.3", - "ver_name": "Hatch", - "conf_name": "hatch.conf", - "dir_name_linux": "hatchcore", - "dir_name_mac": "HatchCore", - "dir_name_win": "HatchCore", - "repo_url": "https://github.com/hatchpay/hatch", - "versions": [ - "v0.14.0.3" - ], - "xbridge_conf": "hatch--v0.14.0.3.conf", - "wallet_conf": "hatch--v0.14.0.3.conf" - }, - { - "blockchain": "Helium", - "ticker": "HLM", - "ver_id": "helium--v0.16.0", - "ver_name": "Helium", - "conf_name": "helium.conf", - "dir_name_linux": "helium", - "dir_name_mac": "Helium", - "dir_name_win": "Helium", - "repo_url": "https://github.com/heliumchain/helium", - "versions": [ - "v0.16.0" - ], - "xbridge_conf": "helium--v0.16.0.conf", - "wallet_conf": "helium--v0.16.0.conf" - }, - { - "blockchain": "HTMLCoin", - "ticker": "HTML", - "ver_id": "htmlcoin--v2.0.3.0", - "ver_name": "HTMLCoin", - "conf_name": "htmlcoin.conf", - "dir_name_linux": "htmlcoin", - "dir_name_mac": "HTMLCOIN", - "dir_name_win": "HTMLCOIN", - "repo_url": "https://github.com/HTMLCOIN/HTMLCOIN", - "versions": [ - "v2.5.0" - ], - "xbridge_conf": "htmlcoin--v2.0.3.0.conf", - "wallet_conf": "htmlcoin--v2.0.3.0.conf" - }, - { - "blockchain": "Innova", - "ticker": "INN", - "ver_id": "innova--v4.3.8.6", - "ver_name": "Innova", - "conf_name": "innova.conf", - "dir_name_linux": "innova", - "dir_name_mac": "Innova", - "dir_name_win": "Innova", - "repo_url": "https://github.com/innova-foundation/innova", - "versions": [ - "v4.3.8.8" - ], - "xbridge_conf": "innova--v4.3.8.6.conf", - "wallet_conf": "innova--v4.3.8.6.conf" - }, - { - "blockchain": "Internet of People", - "ticker": "IOP", - "ver_id": "iop--v6.1.0", - "ver_name": "Internet of People", - "conf_name": "iop.conf", - "dir_name_linux": "iop", - "dir_name_mac": "IoP", - "dir_name_win": "IoP", - "repo_url": "https://github.com/Internet-of-People/iop-core", - "versions": [ - "v6.3.0" - ], - "xbridge_conf": "iop--v6.2.3.conf", - "wallet_conf": "iop--v6.2.3.conf" - }, - { - "blockchain": "Ixcoin", - "ticker": "IXC", - "ver_id": "ixcoin--v0.14.1", - "ver_name": "Ixcoin", - "conf_name": "ixcoin.conf", - "dir_name_linux": "ixcoin", - "dir_name_mac": "iXcoin", - "dir_name_win": "iXcoin", - "repo_url": "https://github.com/IXCore/IXCoin", - "versions": [ - "v0.14.1" - ], - "xbridge_conf": "ixcoin--v0.14.1.conf", - "wallet_conf": "ixcoin--v0.14.1.conf" - }, - { - "blockchain": "Jiyo", - "ticker": "JIYOX", - "ver_id": "jiyo--v.2.1", - "ver_name": "Jiyo", - "conf_name": "jiyo.conf", - "dir_name_linux": "jiyo", - "dir_name_mac": "Jiyo", - "dir_name_win": "Jiyo", - "repo_url": "https://github.com/jiyocoin/jiyox", - "versions": [ - "v.2.1" - ], - "xbridge_conf": "jiyo--v.2.1.conf", - "wallet_conf": "jiyo--v.2.1.conf" - }, - { - "blockchain": "Kalkulus", - "ticker": "KLKS", - "ver_id": "klks--v2.6.0", - "ver_name": "Kalkulus", - "conf_name": "klks.conf", - "dir_name_linux": "klks", - "dir_name_mac": "klks", - "dir_name_win": "klks", - "repo_url": "https://github.com/kalkulusteam/klks", - "versions": [ - "v2.8.0" - ], - "xbridge_conf": "klks--v2.6.0.conf", - "wallet_conf": "klks--v2.6.0.conf" - }, - { - "blockchain": "Know Your Developer", - "ticker": "KYDC", - "ver_id": "kyd--v3.2.0.3", - "ver_name": "Know Your Developer", - "conf_name": "kyd.conf", - "dir_name_linux": "kydcore", - "dir_name_mac": "KYDcore", - "dir_name_win": "KYDcore", - "repo_url": "https://github.com/kydcoin/KYD3", - "versions": [ - "3.2.1", - "3.3.1" - ], - "xbridge_conf": "kyd--3.3.1.conf", - "wallet_conf": "kyd--v3.2.0.3.conf" - }, - { - "blockchain": "Kreds", - "ticker": "KREDS", - "ver_id": "kreds--v1.0.0.5.1", - "ver_name": "Kreds", - "conf_name": "kreds.conf", - "dir_name_linux": "kreds", - "dir_name_mac": "kreds", - "dir_name_win": "kreds", - "repo_url": "https://github.com/KredsBlockchain/kreds-core", - "versions": [ - "v1.0.0.6" - ], - "xbridge_conf": "kreds--v1.0.0.5.1.conf", - "wallet_conf": "kreds--v1.0.0.5.1.conf" - }, - { - "blockchain": "KZCash", - "ticker": "KZC", - "ver_id": "kzcash--v0.1.9.1", - "ver_name": "KZCash", - "conf_name": "kzcash.conf", - "dir_name_linux": "kzcash", - "dir_name_mac": "KZCash", - "dir_name_win": "KZCash", - "repo_url": "https://github.com/kzcashteam/kzcash", - "versions": [ - "v0.1.9.1" - ], - "xbridge_conf": "kzcash--v0.1.9.1.conf", - "wallet_conf": "kzcash--v0.1.9.1.conf" - }, - { - "blockchain": "LBRY Credits", - "ticker": "LBC", - "ver_id": "lbrycrd--v0.17.2.0", - "ver_name": "LBRY Credits", - "conf_name": "lbrycrd.conf", - "dir_name_linux": "lbrycrd", - "dir_name_mac": "lbrycrd", - "dir_name_win": "lbrycrd", - "repo_url": "https://github.com/lbryio/lbrycrd", - "versions": [ - "v0.17.3.1", - "v0.17.3.2", - "v0.17.4.5" - ], - "xbridge_conf": "lbrycrd--v0.12.2.1.conf", - "wallet_conf": "lbrycrd--v0.17.2.0.conf" - }, - { - "blockchain": "Litecoin", - "ticker": "LTC", - "ver_id": "litecoin--v0.15.1", - "ver_name": "Litecoin v0.15.x", - "conf_name": "litecoin.conf", - "dir_name_linux": "litecoin", - "dir_name_mac": "Litecoin", - "dir_name_win": "Litecoin", - "repo_url": "https://github.com/litecoin-project/litecoin", - "versions": [ - "v0.15.1" - ], - "xbridge_conf": "litecoin--v0.15.1.conf", - "wallet_conf": "litecoin--v0.15.1.conf" - }, - { - "blockchain": "Litecoin", - "ticker": "LTC", - "ver_id": "litecoin--v0.16.0", - "ver_name": "Litecoin v0.16.x", - "conf_name": "litecoin.conf", - "dir_name_linux": "litecoin", - "dir_name_mac": "Litecoin", - "dir_name_win": "Litecoin", - "repo_url": "https://github.com/litecoin-project/litecoin", - "versions": [ - "v0.16.0", - "v0.16.2", - "v0.16.3" - ], - "xbridge_conf": "litecoin--v0.15.1.conf", - "wallet_conf": "litecoin--v0.16.0.conf" - }, - { - "blockchain": "Litecoin", - "ticker": "LTC", - "ver_id": "litecoin--v0.17.1", - "ver_name": "Litecoin v0.17.x", - "conf_name": "litecoin.conf", - "dir_name_linux": "litecoin", - "dir_name_mac": "Litecoin", - "dir_name_win": "Litecoin", - "repo_url": "https://github.com/litecoin-project/litecoin", - "versions": [ - "v0.17.1" - ], - "xbridge_conf": "litecoin--v0.15.1.conf", - "wallet_conf": "litecoin--v0.16.0.conf" - }, - { - "blockchain": "Litecoin", - "ticker": "LTC", - "ver_id": "litecoin--v0.18.1", - "ver_name": "Litecoin v0.18.x", - "conf_name": "litecoin.conf", - "dir_name_linux": "litecoin", - "dir_name_mac": "Litecoin", - "dir_name_win": "Litecoin", - "repo_url": "https://github.com/litecoin-project/litecoin", - "versions": [ - "v0.18.1" - ], - "xbridge_conf": "litecoin--v0.18.1.conf", - "wallet_conf": "litecoin--v0.18.1.conf" - }, - { - "blockchain": "Luxcore", - "ticker": "LUX", - "ver_id": "lux--v5.3.3", - "ver_name": "Luxcore", - "conf_name": "lux.conf", - "dir_name_linux": "lux", - "dir_name_mac": "LUX", - "dir_name_win": "LUX", - "repo_url": "https://github.com/LUX-Core/lux", - "versions": [ - "v5.3.3" - ], - "xbridge_conf": "lux--v5.3.3.conf", - "wallet_conf": "lux--v5.3.3.conf" - }, - { - "blockchain": "Lynx", - "ticker": "LYNX", - "ver_id": "lynx--v0.15.1.0", - "ver_name": "Lynx", - "conf_name": "lynx.conf", - "dir_name_linux": "lynx", - "dir_name_mac": "Lynx", - "dir_name_win": "Lynx", - "repo_url": "https://github.com/getlynx/Lynx", - "versions": [ - "v0.16.3.9" - ], - "xbridge_conf": "lynx--v0.15.1.0.conf", - "wallet_conf": "lynx--v0.15.1.0.conf" - }, - { - "blockchain": "Machinecoin", - "ticker": "MAC", - "ver_id": "machinecoin--v0.16.1.4", - "ver_name": "Machinecoin", - "conf_name": "machinecoin.conf", - "dir_name_linux": "machinecoin", - "dir_name_mac": "Machinecoin", - "dir_name_win": "Machinecoin", - "repo_url": "https://github.com/machinecoin-project/machinecoin-core", - "versions": [ - "v0.16.3", - "v0.17.1" - ], - "xbridge_conf": "machinecoin--v0.16.1.4.conf", - "wallet_conf": "machinecoin--v0.16.1.4.conf" - }, - { - "blockchain": "MNPCoin", - "ticker": "MNP", - "ver_id": "mnpcoin--v1.2.5", - "ver_name": "MNPCoin", - "conf_name": "mnpcoin.conf", - "dir_name_linux": "mnpcoin", - "dir_name_mac": "MNPCOIN", - "dir_name_win": "MNPCOIN", - "repo_url": "https://github.com/MasterNodesPro/MNPCoin", - "versions": [ - "v1.2.5" - ], - "xbridge_conf": "mnpcoin--v1.2.5.conf", - "wallet_conf": "mnpcoin--v1.2.5.conf" - }, - { - "blockchain": "MktCoin", - "ticker": "MLM", - "ver_id": "mktcoin--0.14.3", - "ver_name": "MktCoin", - "conf_name": "mktcoin.conf", - "dir_name_linux": "mktcoin", - "dir_name_mac": "MKTcoin", - "dir_name_win": "MKTcoin", - "repo_url": "https://github.com/Mktcoin-official/Mktcoin", - "versions": [ - "0.15.0.3" - ], - "xbridge_conf": "mktcoin--0.14.3.conf", - "wallet_conf": "mktcoin--0.14.3.conf" - }, - { - "blockchain": "MonaCoin", - "ticker": "MONA", - "ver_id": "monacoin--monacoin-0.17.1", - "ver_name": "MonaCoin", - "conf_name": "monacoin.conf", - "dir_name_linux": "monacoin", - "dir_name_mac": "Monacoin", - "dir_name_win": "Monacoin", - "repo_url": "https://github.com/monacoinproject/monacoin", - "versions": [ - "monacoin-0.17.1" - ], - "xbridge_conf": "monacoin--monacoin-0.15.1.conf", - "wallet_conf": "monacoin--monacoin-0.17.1.conf" - }, - { - "blockchain": "MonetaryUnit", - "ticker": "MUE", - "ver_id": "monetaryunit--v2.0.2", - "ver_name": "MonetaryUnit", - "conf_name": "monetaryunit.conf", - "dir_name_linux": "monetaryunit", - "dir_name_mac": "MonetaryUnitCore", - "dir_name_win": "MonetaryUnitCore", - "repo_url": "https://github.com/muecoin/MUE", - "versions": [ - "v2.1.4", - "v2.1.6" - ], - "xbridge_conf": "monetaryunit--v2.0.2.conf", - "wallet_conf": "monetaryunit--v2.0.2.conf" - }, - { - "blockchain": "Monoeci", - "ticker": "XMCC", - "ver_id": "monoeci--v0.12.2.3", - "ver_name": "Monoeci", - "conf_name": "monoeci.conf", - "dir_name_linux": "monoeciCore", - "dir_name_mac": "monoeciCore", - "dir_name_win": "monoeciCore", - "repo_url": "https://github.com/monacocoin-net/monoeci-core", - "versions": [ - "v0.12.2.3" - ], - "xbridge_conf": "monoeci--v0.12.2.3.conf", - "wallet_conf": "monoeci--v0.12.2.3.conf" - }, - { - "blockchain": "Myriad", - "ticker": "XMY", - "ver_id": "myriadcoin--v0.16.3.0", - "ver_name": "Myriad", - "conf_name": "myriadcoin.conf", - "dir_name_linux": "myriadcoin", - "dir_name_mac": "Myriadcoin", - "dir_name_win": "Myriadcoin", - "repo_url": "https://github.com/myriadteam/myriadcoin", - "versions": [ - "v0.16.4.1", - "v0.18.1.0" - ], - "xbridge_conf": "myriadcoin--v0.14.2.5.conf", - "wallet_conf": "myriadcoin--v0.16.3.0.conf" - }, - { - "blockchain": "Namecoin", - "ticker": "NMC", - "ver_id": "namecoin--nc0.13.99-name-tab-beta1", - "ver_name": "Namecoin", - "conf_name": "namecoin.conf", - "dir_name_linux": "namecoin", - "dir_name_mac": "Namecoin", - "dir_name_win": "Namecoin", - "repo_url": "https://github.com/namecoin/namecoin-core", - "versions": [ - "nc0.13.99-name-tab-beta1", - "nc0.16.1", - "nc0.16.2", - "nc0.17.0", - "nc0.18.0", - "nc0.18.1", - "nc0.19.0", - "nc0.19.0.1", - "nc0.19.1", - "nc0.20.0" - ], - "xbridge_conf": "namecoin--nc0.13.99-name-tab-beta1.conf", - "wallet_conf": "namecoin--nc0.13.99-name-tab-beta1.conf" - }, - { - "blockchain": "NativeCoin", - "ticker": "N8V", - "ver_id": "nativecoin--v1.0.0", - "ver_name": "NativeCoin", - "conf_name": "nativecoin.conf", - "dir_name_linux": ".nativecoin", - "dir_name_mac": "nativecoin", - "dir_name_win": "NativeCoinCore", - "repo_url": "https://github.com/N8VCoin/nativecoin", - "versions": [ - "1.2" - ], - "xbridge_conf": "nativecoin--v1.0.0.conf", - "wallet_conf": "nativecoin--v1.0.0.conf" - }, - { - "blockchain": "Nix", - "ticker": "NIX", - "ver_id": "nix--v2.2.0", - "ver_name": "Nix", - "conf_name": "nix.conf", - "dir_name_linux": "nix", - "dir_name_mac": "nix", - "dir_name_win": "nix", - "repo_url": "https://github.com/NixPlatform/NixCore", - "versions": [ - "v3.0.7", - "v3.0.8" - ], - "xbridge_conf": "nix--v2.0.3.conf", - "wallet_conf": "nix--v2.0.3.conf" - }, - { - "blockchain": "Nodium", - "ticker": "XN", - "ver_id": "nodium--3.0.6", - "ver_name": "Nodium", - "conf_name": "nodium.conf", - "dir_name_linux": "Nodium", - "dir_name_mac": "Nodium", - "dir_name_win": "Nodium", - "repo_url": "https://github.com/nodiumproject/zNodium", - "versions": [ - "3.0.6" - ], - "xbridge_conf": "nodium--3.0.6.conf", - "wallet_conf": "nodium--3.0.6.conf" - }, - { - "blockchain": "Noir", - "ticker": "NOR", - "ver_id": "noir--v1.0.0.2", - "ver_name": "Noir", - "conf_name": "noir.conf", - "dir_name_linux": "noir", - "dir_name_mac": "noir", - "dir_name_win": "noir", - "repo_url": "https://github.com/noirofficial/noir", - "versions": [ - "v2.1.0.9" - ], - "xbridge_conf": "noir--v1.0.0.2.conf", - "wallet_conf": "noir--v1.0.0.2.conf" - }, - { - "blockchain": "Northern", - "ticker": "NORT", - "ver_id": "northern--1.0.0", - "ver_name": "Northern", - "conf_name": "northern.conf", - "dir_name_linux": "northern", - "dir_name_mac": "Northern", - "dir_name_win": "Northern", - "repo_url": "https://github.com/northern-community/Northern", - "versions": [ - "3.3.1", - "3.3.2" - ], - "xbridge_conf": "northern--1.0.0.conf", - "wallet_conf": "northern--1.0.0.conf" - }, - { - "blockchain": "Nyerium", - "ticker": "NYEX", - "ver_id": "nyerium--v1.0.3", - "ver_name": "Nyerium", - "conf_name": "nyerium.conf", - "dir_name_linux": "nyerium", - "dir_name_mac": "Nyerium", - "dir_name_win": "Nyerium", - "repo_url": "https://github.com/nyerium-core/nyerium", - "versions": [ - "v1.0.3" - ], - "xbridge_conf": "nyerium--v1.0.3.conf", - "wallet_conf": "nyerium--v1.0.3.conf" - }, - { - "blockchain": "NyxCoin", - "ticker": "NYX", - "ver_id": "nyx--v2.0.0.0", - "ver_name": "NyxCoin", - "conf_name": "nyx.conf", - "dir_name_linux": "nyx", - "dir_name_mac": "Nyx", - "dir_name_win": "NYX", - "repo_url": "https://github.com/nyxpay/nyx", - "versions": [ - "v2.0.0.0" - ], - "xbridge_conf": "nyx--v2.0.0.0.conf", - "wallet_conf": "nyx--v2.0.0.0.conf" - }, - { - "blockchain": "Odin", - "ticker": "ODIN", - "ver_id": "odin--v1.4.2", - "ver_name": "Odin", - "conf_name": "odin.conf", - "dir_name_linux": "odin", - "dir_name_mac": "ODIN", - "dir_name_win": "ODIN", - "repo_url": "https://github.com/odinblockchain/Odin", - "versions": [ - "v1.6.6" - ], - "xbridge_conf": "odin--v1.4.2.conf", - "wallet_conf": "odin--v1.4.2.conf" - }, - { - "blockchain": "Ohmcoin", - "ticker": "OHMC", - "ver_id": "ohmc--2.3.1", - "ver_name": "Ohmcoin", - "conf_name": "ohmc.conf", - "dir_name_linux": "ohmc", - "dir_name_mac": "OHMC", - "dir_name_win": "OHMC", - "repo_url": "https://github.com/theohmproject/OhmCoin", - "versions": [ - "2.4.0.0" - ], - "xbridge_conf": "ohmc--2.3.1.conf", - "wallet_conf": "ohmc--2.3.1.conf" - }, - { - "blockchain": "OPCoinX", - "ticker": "OPCX", - "ver_id": "OPCoinX--v2.0.0", - "ver_name": "OPCoinX", - "conf_name": "OPCoinX.conf", - "dir_name_linux": "OPCoinX", - "dir_name_mac": "OPCoinX", - "dir_name_win": "OPCoinX", - "repo_url": "https://github.com/opcoinx/OPCoinX", - "versions": [ - "v2.0.0" - ], - "xbridge_conf": "opcoinx--v2.0.0.conf", - "wallet_conf": "opcoinx--v2.0.0.conf" - }, - { - "blockchain": "PACGlobal", - "ticker": "PAC", - "ver_id": "pacglobal--v0.15-da839021c", - "ver_name": "PACGlobal", - "conf_name": "pacglobal.conf", - "dir_name_linux": "PACGlobal", - "dir_name_mac": "PACGlobal", - "dir_name_win": "PACGlobal", - "repo_url": "https://github.com/pacglobalofficial/pac", - "versions": [ - "v0.15-da839021c" - ], - "xbridge_conf": "pacglobal--v0.15-da839021c.conf", - "wallet_conf": "pacglobal--v0.15-da839021c.conf" - }, - { - "blockchain": "Phore", - "ticker": "PHR", - "ver_id": "phore--v1.3.3.1", - "ver_name": "Phore", - "conf_name": "phore.conf", - "dir_name_linux": "phore", - "dir_name_mac": "Phore", - "dir_name_win": "Phore", - "repo_url": "https://github.com/phoreproject/Phore", - "versions": [ - "v1.6.3" - ], - "xbridge_conf": "phore--v1.3.3.1.conf", - "wallet_conf": "phore--v1.3.3.1.conf" - }, - { - "blockchain": "PIVX", - "ticker": "PIVX", - "ver_id": "pivx--v3.3.0", - "ver_name": "PIVX", - "conf_name": "pivx.conf", - "dir_name_linux": "pivx", - "dir_name_mac": "PIVX", - "dir_name_win": "PIVX", - "repo_url": "https://github.com/PIVX-Project/PIVX", - "versions": [ - "v4.1.1" - ], - "xbridge_conf": "pivx--v3.3.0.conf", - "wallet_conf": "pivx--v3.3.0.conf" - }, - { - "blockchain": "Placeholders", - "ticker": "PHL", - "ver_id": "placeh--2.0.30.5", - "ver_name": "Placeholders", - "conf_name": "placeh.conf", - "dir_name_linux": "placeh", - "dir_name_mac": "placeh", - "dir_name_win": "placeh", - "repo_url": "https://github.com/xagau/Placeholders-X16R", - "versions": [ - "2.0.30.5" - ], - "xbridge_conf": "placeh--2.0.30.5.conf", - "wallet_conf": "placeh--2.0.30.5.conf" - }, - { - "blockchain": "Polis", - "ticker": "POLIS", - "ver_id": "polis--v1.3.1", - "ver_name": "Polis", - "conf_name": "polis.conf", - "dir_name_linux": "poliscore", - "dir_name_mac": "PolisCore", - "dir_name_win": "PolisCore", - "repo_url": "https://github.com/polispay/polis", - "versions": [ - "v1.6.0", - "v1.6.1", - "v1.6.2", - "v1.6.3" - ], - "xbridge_conf": "polis--v1.3.1.conf", - "wallet_conf": "polis--v1.3.1.conf" - }, - { - "blockchain": "Pura", - "ticker": "PURA", - "ver_id": "pura--v1.0.0.0", - "ver_name": "Pura", - "conf_name": "pura.conf", - "dir_name_linux": "pura", - "dir_name_mac": "Pura", - "dir_name_win": "Pura", - "repo_url": "https://github.com/puracore/pura", - "versions": [ - "v1.3.7" - ], - "xbridge_conf": "pura--v1.0.0.0.conf", - "wallet_conf": "pura--v1.0.0.0.conf" - }, - { - "blockchain": "Qbic", - "ticker": "QBIC", - "ver_id": "qbiccoin--v1.0.1.0", - "ver_name": "Qbic", - "conf_name": "qbiccoin.conf", - "dir_name_linux": "qbiccoin", - "dir_name_mac": "QBICcoin", - "dir_name_win": "QBICcoin", - "repo_url": "https://github.com/qbic-platform/qbic_v2.0", - "versions": [ - "v1.1" - ], - "xbridge_conf": "qbiccoin--v1.0.1.0.conf", - "wallet_conf": "qbiccoin--v1.0.1.0.conf" - }, - { - "blockchain": "Qtum", - "ticker": "QTUM", - "ver_id": "qtum--mainnet-ignition-v0.17.1", - "ver_name": "Qtum", - "conf_name": "qtum.conf", - "dir_name_linux": "qtum", - "dir_name_mac": "Qtum", - "dir_name_win": "Qtum", - "repo_url": "https://github.com/qtumproject/qtum", - "versions": [ - "mainnet-ignition-v0.19.1" - ], - "xbridge_conf": "qtum--mainnet-ignition-v0.15.2.conf", - "wallet_conf": "qtum--mainnet-ignition-v0.17.1.conf" - }, - { - "blockchain": "Rapids", - "ticker": "RPD", - "ver_id": "rapids--v1.0.0.1", - "ver_name": "Rapids", - "conf_name": "rapids.conf", - "dir_name_linux": "rapids", - "dir_name_mac": "Rapids", - "dir_name_win": "Rapids", - "repo_url": "https://github.com/RapidsOfficial/Rapids", - "versions": [ - "v2.0.0.0-b784ecbf4d" - ], - "xbridge_conf": "rapids--v1.0.0.1.conf", - "wallet_conf": "rapids--v1.0.0.1.conf" - }, - { - "blockchain": "Rapture", - "ticker": "RAP", - "ver_id": "rapture--v1.1.2.2", - "ver_name": "Rapture", - "conf_name": "rapture.conf", - "dir_name_linux": "rapturecore", - "dir_name_mac": "RaptureCore", - "dir_name_win": "RaptureCore", - "repo_url": "https://github.com/RaptureCore/Rapture", - "versions": [ - "v1.1.2.2" - ], - "xbridge_conf": "rapture--v1.1.2.2.conf", - "wallet_conf": "rapture--v1.1.2.2.conf" - }, - { - "blockchain": "Ravencoin", - "ticker": "RVN", - "ver_id": "raven--v0.15.99.0", - "ver_name": "Ravencoin", - "conf_name": "raven.conf", - "dir_name_linux": "raven", - "dir_name_mac": "Raven", - "dir_name_win": "Raven", - "repo_url": "https://github.com/RavenProject/Ravencoin", - "versions": [ - "v4.1.0", - "v4.2.0", - "v4.2.1" - ], - "xbridge_conf": "raven--v0.15.99.0.conf", - "wallet_conf": "raven--v0.15.99.0.conf" - }, - { - "blockchain": "Reecore", - "ticker": "REEX", - "ver_id": "Reecore--v1.4.2.2", - "ver_name": "Reecore", - "conf_name": "Reecore.conf", - "dir_name_linux": "Reecore", - "dir_name_mac": "Reecore", - "dir_name_win": "Reecore", - "repo_url": "https://github.com/reecore-coin/Reex", - "versions": [ - "v1.4.2.2" - ], - "xbridge_conf": "reecore--v1.4.2.2.conf", - "wallet_conf": "reecore--v1.4.2.2.conf" - }, - { - "blockchain": "Scribe", - "ticker": "SCRIBE", - "ver_id": "scribe--v0.2", - "ver_name": "Scribe", - "conf_name": "scribe.conf", - "dir_name_linux": "scribecore", - "dir_name_mac": "ScribeCore", - "dir_name_win": "ScribeCore", - "repo_url": "https://github.com/scribenetwork/scribe", - "versions": [ - "v0.2" - ], - "xbridge_conf": "scribe--v0.2.conf", - "wallet_conf": "scribe--v0.2.conf" - }, - { - "blockchain": "Secure Cloud Net", - "ticker": "SCN", - "ver_id": "securecloud--v2.4.3", - "ver_name": "Secure Cloud Net", - "conf_name": "securecloud.conf", - "dir_name_linux": "securecloud", - "dir_name_mac": "SecureCloud", - "dir_name_win": "SecureCloud", - "repo_url": "https://github.com/securecloudnet/SecureCloud", - "versions": [ - "v2.5.1.1", - "v2.5.1.2" - ], - "xbridge_conf": "securecloud--v2.4.3.conf", - "wallet_conf": "securecloud--v2.4.3.conf" - }, - { - "blockchain": "Sequence", - "ticker": "SEQ", - "ver_id": "sequence--v1.3.0.0", - "ver_name": "Sequence", - "conf_name": "sequence.conf", - "dir_name_linux": "sequence", - "dir_name_mac": "sequence", - "dir_name_win": "sequence", - "repo_url": "https://github.com/duality-solutions/Sequence", - "versions": [ - "v1.3.3.0" - ], - "xbridge_conf": "sequence--v1.3.0.0.conf", - "wallet_conf": "sequence--v1.3.0.0.conf" - }, - { - "blockchain": "Shekel", - "ticker": "JEW", - "ver_id": "shekel--1.4.0", - "ver_name": "Shekel", - "conf_name": "shekel.conf", - "dir_name_linux": "shekel", - "dir_name_mac": "Shekel", - "dir_name_win": "Shekel", - "repo_url": "https://github.com/shekeltechnologies/JewNew", - "versions": [ - "1.5.0" - ], - "xbridge_conf": "shekel--1.4.0.conf", - "wallet_conf": "shekel--1.4.0.conf" - }, - { - "blockchain": "Sibcoin", - "ticker": "SIB", - "ver_id": "sibcoin--v0.16.1.3", - "ver_name": "Sibcoin", - "conf_name": "sibcoin.conf", - "dir_name_linux": "sibcoin", - "dir_name_mac": "Sibcoin", - "dir_name_win": "Sibcoin", - "repo_url": "https://github.com/ivansib/sibcoin", - "versions": [ - "v0.17.0.0" - ], - "xbridge_conf": "sibcoin--v0.16.1.3.conf", - "wallet_conf": "sibcoin--v0.16.1.3.conf" - }, - { - "blockchain": "Social Send", - "ticker": "SEND", - "ver_id": "send--v1.1.0.0", - "ver_name": "Social Send", - "conf_name": "send.conf", - "dir_name_linux": "send", - "dir_name_mac": "SEND", - "dir_name_win": "SEND", - "repo_url": "https://github.com/SocialSend/SocialSend", - "versions": [ - "1.2.0.5", - "v1.2.1.0" - ], - "xbridge_conf": "send--v1.1.0.0.conf", - "wallet_conf": "send--v1.1.0.0.conf" - }, - { - "blockchain": "SparksPay", - "ticker": "SPK", - "ver_id": "sparks--v0.12.3.2", - "ver_name": "Sparks", - "conf_name": "sparks.conf", - "dir_name_linux": "sparkscore", - "dir_name_mac": "SparksCore", - "dir_name_win": "SparksCore", - "repo_url": "https://github.com/sparkspay/sparks", - "versions": [ - "v0.12.4.3" - ], - "xbridge_conf": "sparks--v0.12.3.2.conf", - "wallet_conf": "sparks--v0.12.3.2.conf" - }, - { - "blockchain": "STRAKS", - "ticker": "STAK", - "ver_id": "straks--1.14.7.3", - "ver_name": "STRAKS", - "conf_name": "straks.conf", - "dir_name_linux": "straks", - "dir_name_mac": "straks", - "dir_name_win": "straks", - "repo_url": "https://github.com/straks/straks", - "versions": [ - "1.14.7.5" - ], - "xbridge_conf": "straks--1.14.7.3.conf", - "wallet_conf": "straks--1.14.7.3.conf" - }, - { - "blockchain": "SUB1X", - "ticker": "SUB1X", - "ver_id": "zsub1x--1.4.0", - "ver_name": "SUB1X", - "conf_name": "zsub1x.conf", - "dir_name_linux": "zsub1x", - "dir_name_mac": "zSub1x", - "dir_name_win": "zSub1x", - "repo_url": "https://github.com/SuB1X-Coin/zSub1x", - "versions": [ - "1.4.0" - ], - "xbridge_conf": "zsub1x--1.4.0.conf", - "wallet_conf": "zsub1x--1.4.0.conf" - }, - { - "blockchain": "Syscoin", - "ticker": "SYS", - "ver_id": "syscoin--v4.0.3", - "ver_name": "Syscoin 4", - "conf_name": "syscoin.conf", - "dir_name_linux": "syscoin", - "dir_name_mac": "Syscoin", - "dir_name_win": "Syscoin", - "repo_url": "https://github.com/syscoin/syscoin", - "versions": [ - "v4.1.3" - ], - "xbridge_conf": "syscoin--v4.0.3.conf", - "wallet_conf": "syscoin--v4.0.3.conf" - }, - { - "blockchain": "Terracoin", - "ticker": "TRC", - "ver_id": "terracoin--v0.12.1.8", - "ver_name": "Terracoin", - "conf_name": "terracoin.conf", - "dir_name_linux": "terracoincore", - "dir_name_mac": "TerracoinCore", - "dir_name_win": "TerracoinCore", - "repo_url": "https://github.com/terracoin/terracoin", - "versions": [ - "v0.12.2.4", - "v0.12.2.5" - ], - "xbridge_conf": "terracoin--v0.12.1.8.conf", - "wallet_conf": "terracoin--v0.12.1.8.conf" - }, - { - "blockchain": "Tribe", - "ticker": "TRB", - "ver_id": "tribe--v1.0.0", - "ver_name": "Tribe", - "conf_name": "tribe.conf", - "dir_name_linux": "tribe", - "dir_name_mac": "tribe", - "dir_name_win": "tribe", - "repo_url": "https://github.com/TribeCrypto/tribe", - "versions": [ - "1.0.2" - ], - "xbridge_conf": "tribe--v1.0.0.conf", - "wallet_conf": "tribe--v1.0.0.conf" - }, - { - "blockchain": "Uniform Fiscal Object", - "ticker": "UFO", - "ver_id": "ufocoin--v0.17.0", - "ver_name": "Uniform Fiscal Object", - "conf_name": "ufocoin.conf", - "dir_name_linux": "ufo", - "dir_name_mac": "UFO", - "dir_name_win": "UFO", - "repo_url": "https://github.com/fiscalobject/ufo", - "versions": [ - "v0.18.0" - ], - "xbridge_conf": "ufocoin--v0.16.1.conf", - "wallet_conf": "ufocoin--v0.18.0.conf" - }, - { - "blockchain": "Unobtanium", - "ticker": "UNO", - "ver_id": "unobtanium--v0.10.1.1", - "ver_name": "Unobtanium", - "conf_name": "unobtanium.conf", - "dir_name_linux": "unobtanium", - "dir_name_mac": "Unobtanium", - "dir_name_win": "Unobtanium", - "repo_url": "https://github.com/unobtanium-official/Unobtanium", - "versions": [ - "v0.10.5", - "v0.11.0" - ], - "xbridge_conf": "unobtanium--v0.10.1.1.conf", - "wallet_conf": "unobtanium--v0.10.1.1.conf" - }, - { - "blockchain": "Verge", - "ticker": "XVG", - "ver_id": "verge--v6.0.2", - "ver_name": "Verge", - "conf_name": "VERGE.conf", - "dir_name_linux": "VERGE", - "dir_name_mac": "VERGE", - "dir_name_win": "VERGE", - "repo_url": "https://github.com/vergecurrency/verge", - "versions": [ - "v6.0.2" - ], - "xbridge_conf": "verge--v6.0.2.conf", - "wallet_conf": "verge--v6.0.2.conf" - }, - { - "blockchain": "Vertcoin", - "ticker": "VTC", - "ver_id": "vertcoin--0.14.0", - "ver_name": "Vertcoin", - "conf_name": "vertcoin.conf", - "dir_name_linux": "vertcoin", - "dir_name_mac": "Vertcoin", - "dir_name_win": "Vertcoin", - "repo_url": "https://github.com/vertcoin-project/vertcoin-core", - "versions": [ - "0.14.0", - "0.15.0", - "0.15.0.1" - ], - "xbridge_conf": "vertcoin--0.12.0.conf", - "wallet_conf": "vertcoin--0.13.0.conf" - }, - { - "blockchain": "Viacoin", - "ticker": "VIA", - "ver_id": "viacoin--v0.16.3", - "ver_name": "Viacoin", - "conf_name": "viacoin.conf", - "dir_name_linux": "viacoin", - "dir_name_mac": "Viacoin", - "dir_name_win": "Viacoin", - "repo_url": "https://github.com/viacoin/viacoin", - "versions": [ - "v0.16.3" - ], - "xbridge_conf": "viacoin--v0.15.1.conf", - "wallet_conf": "viacoin--v0.16.3.conf" - }, - { - "blockchain": "Vitae", - "ticker": "VITAE", - "ver_id": "vitae--v4.1.0.1", - "ver_name": "Vitae", - "conf_name": "vitae.conf", - "dir_name_linux": "vitae", - "dir_name_mac": "VITAE", - "dir_name_win": "VITAE", - "repo_url": "https://github.com/VitaeTeam/Vitae", - "versions": [ - "v4.4.0.3", - "v4.4.2" - ], - "xbridge_conf": "vitae--v4.1.0.1.conf", - "wallet_conf": "vitae--v4.1.0.1.conf" - }, - { - "blockchain": "VIVO", - "ticker": "VIVO", - "ver_id": "vivo--v0.12.1.8", - "ver_name": "VIVO", - "conf_name": "vivo.conf", - "dir_name_linux": "vivocore", - "dir_name_mac": "VivoCore", - "dir_name_win": "VivoCore", - "repo_url": "https://github.com/vivocoin/vivo", - "versions": [ - "v0.12.1.17" - ], - "xbridge_conf": "vivo--v0.12.1.8.conf", - "wallet_conf": "vivo--v0.12.1.8.conf" - }, - { - "blockchain": "Vsync", - "ticker": "VSX", - "ver_id": "vsync--v3.8.5.0", - "ver_name": "Vsync", - "conf_name": "vsync.conf", - "dir_name_linux": "vsync", - "dir_name_mac": "Vsync", - "dir_name_win": "Vsync", - "repo_url": "https://github.com/VsyncCrypto/VSX", - "versions": [ - "v3.8.7.6", - "v3.8.7.7" - ], - "xbridge_conf": "vsync--v3.8.5.0.conf", - "wallet_conf": "vsync--v3.8.5.0.conf" - }, - { - "blockchain": "Wagerr", - "ticker": "WGR", - "ver_id": "wagerr--1.5.0", - "ver_name": "Wagerr", - "conf_name": "wagerr.conf", - "dir_name_linux": "wagerr", - "dir_name_mac": "Wagerr", - "dir_name_win": "Wagerr", - "repo_url": "https://github.com/wagerr/wagerr", - "versions": [ - "v3.1.0" - ], - "xbridge_conf": "wagerr--1.5.0.conf", - "wallet_conf": "wagerr--1.5.0.conf" - }, - { - "blockchain": "XCurrency", - "ticker": "XC", - "ver_id": "xcurrency--v3.0.05", - "ver_name": "XCurrency", - "conf_name": "xcurrency.conf", - "dir_name_linux": "xc3", - "dir_name_mac": "XC3", - "dir_name_win": "XC3", - "repo_url": "https://github.com/XCurrency/xc", - "versions": [ - "v3.0.05" - ], - "xbridge_conf": "xcurrency--v3.0.05.conf", - "wallet_conf": "xcurrency--v3.0.05.conf" - }, - { - "blockchain": "ZCoin", - "ticker": "XZC", - "ver_id": "zcoin--v0.13.6.4", - "ver_name": "ZCoin", - "conf_name": "zcoin.conf", - "dir_name_linux": "zcoin", - "dir_name_mac": "zcoin", - "dir_name_win": "zcoin", - "repo_url": "https://github.com/zcoinofficial/zcoin", - "versions": [ - "v0.14.0.1", - "v0.14.0.2" - ], - "xbridge_conf": "zcoin--v0.13.6.4.conf", - "wallet_conf": "zcoin--v0.13.6.4.conf" - } -] +[ + { + "blockchain": "Abosom", + "ticker": "ABS", + "ver_id": "abosom--v1.0.0", + "ver_name": "Abosom", + "conf_name": "abosom.conf", + "dir_name_linux": "abosomcore", + "dir_name_mac": "AbosomCore", + "dir_name_win": "AbosomCore", + "repo_url": "https://github.com/ZenyattaAbosom/Abosom", + "versions": [ + "v1.0.0" + ], + "xbridge_conf": "abosom--v1.0.0.conf", + "wallet_conf": "abosom--v1.0.0.conf" + }, + { + "blockchain": "AeriumX", + "ticker": "AEX", + "ver_id": "aeriumx--v2.0", + "ver_name": "AeriumX", + "conf_name": "aeriumx.conf", + "dir_name_linux": "aeriumx", + "dir_name_mac": "AeriumX", + "dir_name_win": "AeriumX", + "repo_url": "https://github.com/aeriumcoin/AeriumX", + "versions": [ + "v2.2" + ], + "xbridge_conf": "aeriumx--v2.0.conf", + "wallet_conf": "aeriumx--v2.0.conf" + }, + { + "blockchain": "Altbet", + "ticker": "ABET", + "ver_id": "abet--v3.4.1.0", + "ver_name": "Altbet", + "conf_name": "abet.conf", + "dir_name_linux": "abet", + "dir_name_mac": "Abet", + "dir_name_win": "Abet", + "repo_url": "https://github.com/altbet/abet", + "versions": [ + "v3.4.1.0", + "v3.4.1.0+" + ], + "xbridge_conf": "abet--v3.4.1.0.conf", + "wallet_conf": "abet--v3.4.1.0.conf" + }, + { + "blockchain": "APR Coin", + "ticker": "APR", + "ver_id": "aprcoin--v1.0", + "ver_name": "APR Coin", + "conf_name": "aprcoin.conf", + "dir_name_linux": "aprcoin", + "dir_name_mac": "AprCoin", + "dir_name_win": "AprCoin", + "repo_url": "https://github.com/APRCoin/zenith-repository", + "versions": [ + "V3.1.0" + ], + "xbridge_conf": "aprcoin--v1.0.conf", + "wallet_conf": "aprcoin--v1.0.conf" + }, + { + "blockchain": "Argoneum", + "ticker": "AGM", + "ver_id": "argoneum--v1.2.3.4", + "ver_name": "Argoneum", + "conf_name": "argoneum.conf", + "dir_name_linux": "argoneum", + "dir_name_mac": "Argoneum", + "dir_name_win": "Argoneum", + "repo_url": "https://github.com/Argoneum/argoneum", + "versions": [ + "v1.4.0.0", + "v1.4.1.0" + ], + "xbridge_conf": "argoneum--v1.2.3.4.conf", + "wallet_conf": "argoneum--v1.2.3.4.conf" + }, + { + "blockchain": "ATBCoin", + "ticker": "ATB", + "ver_id": "atbcoin--v1.1.0", + "ver_name": "ATBCoin", + "conf_name": "atbcoin.conf", + "dir_name_linux": "ATBCoinWallet", + "dir_name_mac": "ATBCoinWallet", + "dir_name_win": "ATBCoinWallet", + "repo_url": "https://github.com/segwit/atbcoin", + "versions": [ + "v1.1.0" + ], + "xbridge_conf": "atbcoin--v1.1.0.conf", + "wallet_conf": "atbcoin--v1.1.0.conf" + }, + { + "blockchain": "AustraliaCash", + "ticker": "AUS", + "ver_id": "australiacash--v0.17.4.0", + "ver_name": "AustraliaCash", + "conf_name": "australiacash.conf", + "dir_name_linux": "australiacash", + "dir_name_mac": "Australiacash", + "dir_name_win": "Australiacash", + "repo_url": "https://github.com/AustraliaCash/AustraliaCash-Core", + "versions": [ + "v0.17.4.1" + ], + "xbridge_conf": "australiacash--v0.17.4.0.conf", + "wallet_conf": "australiacash--v0.17.4.0.conf" + }, + { + "blockchain": "Badcoin", + "ticker": "BAD", + "ver_id": "badcoin--v0.16.3-2", + "ver_name": "Badcoin", + "conf_name": "badcoin.conf", + "dir_name_linux": "badcoin", + "dir_name_mac": "Badcoin", + "dir_name_win": "Badcoin", + "repo_url": "https://github.com/badcoin-net/Badcoin", + "versions": [ + "v0.16.3-2" + ], + "xbridge_conf": "badcoin--v0.16.3-2.conf", + "wallet_conf": "badcoin--v0.16.3-2.conf" + }, + { + "blockchain": "Bitcloud", + "ticker": "BTDX", + "ver_id": "bitcloud--2.1.0.1.1", + "ver_name": "Bitcloud", + "conf_name": "bitcloud.conf", + "dir_name_linux": "bitcloud", + "dir_name_mac": "Bitcloud", + "dir_name_win": "Bitcloud", + "repo_url": "https://github.com/LIMXTEC/Bitcloud", + "versions": [ + "2.1.0.1.1" + ], + "xbridge_conf": "bitcloud--2.1.0.1.1.conf", + "wallet_conf": "bitcloud--2.1.0.1.1.conf" + }, + { + "blockchain": "Bitcoin", + "ticker": "BTC", + "ver_id": "bitcoin--v0.15.1", + "ver_name": "Bitcoin v0.15.x", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoin", + "dir_name_mac": "Bitcoin", + "dir_name_win": "Bitcoin", + "repo_url": "https://github.com/bitcoin/bitcoin", + "versions": [ + "v0.15.1", + "v0.15.2" + ], + "xbridge_conf": "bitcoin--v0.15.1.conf", + "wallet_conf": "bitcoin--v0.15.1.conf" + }, + { + "blockchain": "Bitcoin", + "ticker": "BTC", + "ver_id": "bitcoin--v0.16.0", + "ver_name": "Bitcoin v0.16.x", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoin", + "dir_name_mac": "Bitcoin", + "dir_name_win": "Bitcoin", + "repo_url": "https://github.com/bitcoin/bitcoin", + "versions": [ + "v0.16.0", + "v0.16.1", + "v0.16.2", + "v0.16.3" + ], + "xbridge_conf": "bitcoin--v0.16.0.conf", + "wallet_conf": "bitcoin--v0.16.0.conf" + }, + { + "blockchain": "Bitcoin", + "ticker": "BTC", + "ver_id": "bitcoin--v0.17.0", + "ver_name": "Bitcoin v0.17.x", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoin", + "dir_name_mac": "Bitcoin", + "dir_name_win": "Bitcoin", + "repo_url": "https://github.com/bitcoin/bitcoin", + "versions": [ + "v0.17.0", + "v0.17.0.1", + "v0.17.1" + ], + "xbridge_conf": "bitcoin--v0.17.0.conf", + "wallet_conf": "bitcoin--v0.17.0.conf" + }, + { + "blockchain": "Bitcoin", + "ticker": "BTC", + "ver_id": "bitcoin--v0.18.0", + "ver_name": "Bitcoin v0.18.x", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoin", + "dir_name_mac": "Bitcoin", + "dir_name_win": "Bitcoin", + "repo_url": "https://github.com/bitcoin/bitcoin", + "versions": [ + "v0.18.0", + "v0.18.1" + ], + "xbridge_conf": "bitcoin--v0.18.0.conf", + "wallet_conf": "bitcoin--v0.18.0.conf" + }, + { + "blockchain": "Bitcoin", + "ticker": "BTC", + "ver_id": "bitcoin--v0.19.0", + "ver_name": "Bitcoin v0.19.x", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoin", + "dir_name_mac": "Bitcoin", + "dir_name_win": "Bitcoin", + "repo_url": "https://github.com/bitcoin/bitcoin", + "versions": [ + "v0.19.0", + "v0.19.0.1", + "v0.19.1" + ], + "xbridge_conf": "bitcoin--v0.19.0.conf", + "wallet_conf": "bitcoin--v0.19.0.conf" + }, + { + "blockchain": "Bitcoin", + "ticker": "BTC", + "ver_id": "bitcoin--v0.20.0", + "ver_name": "Bitcoin v0.20.x", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoin", + "dir_name_mac": "Bitcoin", + "dir_name_win": "Bitcoin", + "repo_url": "https://github.com/bitcoin/bitcoin", + "versions": [ + "v0.20.0", + "v0.20.1" + ], + "xbridge_conf": "bitcoin--v0.20.0.conf", + "wallet_conf": "bitcoin--v0.20.0.conf" + }, + { + "blockchain": "Bitcoin", + "ticker": "BTC", + "ver_id": "bitcoin--v0.21.0", + "ver_name": "Bitcoin v0.21.x", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoin", + "dir_name_mac": "Bitcoin", + "dir_name_win": "Bitcoin", + "repo_url": "https://github.com/bitcoin/bitcoin", + "versions": [ + "v0.21.0", + "v0.21.1" + ], + "xbridge_conf": "bitcoin--v0.21.0.conf", + "wallet_conf": "bitcoin--v0.21.0.conf" + }, + { + "blockchain": "Bitcoin", + "ticker": "BTC", + "ver_id": "bitcoin--v0.22.0", + "ver_name": "Bitcoin v0.22.x", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoin", + "dir_name_mac": "Bitcoin", + "dir_name_win": "Bitcoin", + "repo_url": "https://github.com/bitcoin/bitcoin", + "versions": [ + "v0.22.0", + "v22-final" + ], + "xbridge_conf": "bitcoin--v0.21.0.conf", + "wallet_conf": "bitcoin--v0.21.0.conf" + }, + { + "blockchain": "Bitcoin Cash", + "ticker": "BCH", + "ver_id": "bitcoincash--v0.21.11", + "ver_name": "Bitcoin Cash", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoincash", + "dir_name_mac": "BitcoinCash", + "dir_name_win": "BitcoinCash", + "repo_url": "https://github.com/Bitcoin-ABC/bitcoin-abc", + "versions": [ + "v0.21.11" + ], + "xbridge_conf": "bitcoincash--v0.21.11.conf", + "wallet_conf": "bitcoincash--v0.21.11.conf" + }, + { + "blockchain": "Bitcoin CZ", + "ticker": "BCZ", + "ver_id": "bcz--6.0.0.8", + "ver_name": "Bitcoin CZ", + "conf_name": "bcz.conf", + "dir_name_linux": "bcz", + "dir_name_mac": "BCZ", + "dir_name_win": "BCZ", + "repo_url": "https://github.com/SpecialCoins/bitcoincz", + "versions": [ + "6.0.3.2" + ], + "xbridge_conf": "bcz--6.0.0.8.conf", + "wallet_conf": "bcz--6.0.0.8.conf" + }, + { + "blockchain": "Bitcoin Diamond", + "ticker": "BCD", + "ver_id": "bitcoindiamond--v1.3.0", + "ver_name": "Bitcoin Diamond", + "conf_name": "bitcoin.conf", + "dir_name_linux": "bitcoindiamond", + "dir_name_mac": "BitcoinDiamond", + "dir_name_win": "BitcoinDiamond", + "repo_url": "https://github.com/eveybcd/BitcoinDiamond", + "versions": [ + "v1.3.0" + ], + "xbridge_conf": "bitcoindiamond--v1.3.0.conf", + "wallet_conf": "bitcoindiamond--v1.3.0.conf" + }, + { + "blockchain": "Bitcoin Gold", + "ticker": "BTG", + "ver_id": "bitcoingold--v0.17.2", + "ver_name": "Bitcoin Gold", + "conf_name": "bitcoingold.conf", + "dir_name_linux": "bitcoingold", + "dir_name_mac": "BitcoinGold", + "dir_name_win": "BitcoinGold", + "repo_url": "https://github.com/BTCGPU/BTCGPU", + "versions": [ + "v0.17.2" + ], + "xbridge_conf": "bitcoingold--v0.17.2.conf", + "wallet_conf": "bitcoingold--v0.17.2.conf" + }, + { + "blockchain": "BitGreen", + "ticker": "BITG", + "ver_id": "bitgreen--v1.4.0.8", + "ver_name": "BitGreen", + "conf_name": "bitgreen.conf", + "dir_name_linux": "bitgreen", + "dir_name_mac": "BitGreen", + "dir_name_win": "BitGreen", + "repo_url": "https://github.com/bitgreen/bitgreen", + "versions": [ + "v1.4.0.8", + "v1.4.0.9", + "v1.5.0.1", + "v1.5.0.2" + ], + "xbridge_conf": "bitgreen--v1.4.0.8.conf", + "wallet_conf": "bitgreen--v1.4.0.8.conf" + }, + { + "blockchain": "BitCore", + "ticker": "BTX", + "ver_id": "bitcore--0.90.8.8.1", + "ver_name": "BitCore 0.90.x", + "conf_name": "bitcore.conf", + "dir_name_linux": "bitcore", + "dir_name_mac": "BitCore", + "dir_name_win": "BitCore", + "repo_url": "https://github.com/LIMXTEC/BitCore", + "versions": [ + "0.90.8.8.1", + "0.90.8.9", + "0.90.8.10", + "0.90.8.11", + "0.90.9.0", + "0.90.9.1" + ], + "xbridge_conf": "bitcore--0.15.2.0.0.conf", + "wallet_conf": "bitcore--0.90.8.8.1.conf" + }, + { + "blockchain": "BitcoinZero", + "ticker": "BZX", + "ver_id": "bitcoinzero--5.0.1.0", + "ver_name": "BitcoinZero", + "conf_name": "bitcoinzero.conf", + "dir_name_linux": "bitcoinzero", + "dir_name_mac": "bitcoinzero", + "dir_name_win": "bitcoinzero", + "repo_url": "https://github.com/SpecialCoins/BitcoinZero", + "versions": [ + "5.0.7.8" + ], + "xbridge_conf": "bitcoinzero--5.0.0.5.conf", + "wallet_conf": "bitcoinzero--5.0.0.5.conf" + }, + { + "blockchain": "BitMoney", + "ticker": "BIT", + "ver_id": "BitMoney--2.2.0.2", + "ver_name": "BitMoney", + "conf_name": "BitMoney.conf", + "dir_name_linux": "BitMoney", + "dir_name_mac": "BitMoney", + "dir_name_win": "BitMoney", + "repo_url": "https://github.com/CryptVenture/BitMoneyV22", + "versions": [ + "2.2.0.2" + ], + "xbridge_conf": "bitmoney--2.2.0.2.conf", + "wallet_conf": "bitmoney--2.2.0.2.conf" + }, + { + "blockchain": "BitSend", + "ticker": "BSD", + "ver_id": "bitsend--0.14.2.0.1", + "ver_name": "BitSend", + "conf_name": "bitsend.conf", + "dir_name_linux": "bitsend", + "dir_name_mac": "bitsend", + "dir_name_win": "bitsend", + "repo_url": "https://github.com/LIMXTEC/BitSend", + "versions": [ + "0.14.2.0.1" + ], + "xbridge_conf": "bitsend--0.14.2.0.1.conf", + "wallet_conf": "bitsend--0.14.2.0.1.conf" + }, + { + "blockchain": "BLAST", + "ticker": "BLAST", + "ver_id": "blast--v1.2.0.2", + "ver_name": "BLAST", + "conf_name": "blast.conf", + "dir_name_linux": "blast", + "dir_name_mac": "BLAST", + "dir_name_win": "BLAST", + "repo_url": "https://github.com/blastdev/blast-core-v2", + "versions": [ + "v2.2.0" + ], + "xbridge_conf": "blast--v1.2.0.2.conf", + "wallet_conf": "blast--v1.2.0.2.conf" + }, + { + "blockchain": "Blocknet", + "ticker": "BLOCK", + "ver_id": "blocknet--v4.2.0", + "ver_name": "Blocknet v4", + "conf_name": "blocknet.conf", + "dir_name_linux": "blocknet", + "dir_name_mac": "Blocknet", + "dir_name_win": "Blocknet", + "repo_url": "https://github.com/blocknetdx/blocknet", + "versions": [ + "v4.2.0", + "v4.3.0", + "v4.3.1", + "v4.3.2", + "v4.3.3", + "v4.4.0", + "v4.4.1" + ], + "xbridge_conf": "blocknet--v4.2.0.conf", + "wallet_conf": "blocknet--v4.2.0.conf" + }, + { + "blockchain": "Blocknet Testnet", + "ticker": "TBLOCK", + "ver_id": "blocktest--v4.3.3", + "ver_name": "Blocktest v4", + "conf_name": "blocknet.conf", + "dir_name_linux": "blocknet", + "dir_name_mac": "Blocknet", + "dir_name_win": "Blocknet", + "repo_url": "https://github.com/blocknetdx/blocknet", + "versions": [ + "v4.3.3" + ], + "xbridge_conf": "blocktest--v4.3.3.conf", + "wallet_conf": "blocktest--v4.3.3.conf" + }, + { + "blockchain": "Carebit", + "ticker": "CARE", + "ver_id": "carebitcoin--v3.0.0.0", + "ver_name": "Carebit", + "conf_name": "carebitcoin.conf", + "dir_name_linux": "carebitcoin", + "dir_name_mac": "CarebitCoin", + "dir_name_win": "CarebitCoin", + "repo_url": "https://github.com/carebitcoin/carebitcoin", + "versions": [ + "v5.0.0" + ], + "xbridge_conf": "carebitcoin--v3.0.0.0.conf", + "wallet_conf": "carebitcoin--v3.0.0.0.conf" + }, + { + "blockchain": "CbdHealthNetwork", + "ticker": "CHN", + "ver_id": "cbdhealthnetwork--wallets-source-daemon", + "ver_name": "CbdHealthNetwork", + "conf_name": "cbdhealthnetwork.conf", + "dir_name_linux": "cbdhealthnetwork", + "dir_name_mac": "CbdHealthNetwork", + "dir_name_win": "CbdHealthNetwork", + "repo_url": "https://github.com/CHN-portal/CHN-Portal", + "versions": [ + "wallets-source-daemon" + ], + "xbridge_conf": "cbdhealthnetwork--wallets-source-daemon.conf", + "wallet_conf": "cbdhealthnetwork--wallets-source-daemon.conf" + }, + { + "blockchain": "Chaincoin", + "ticker": "CHC", + "ver_id": "chaincoin--v0.18.1", + "ver_name": "Chaincoin", + "conf_name": "chaincoin.conf", + "dir_name_linux": "chaincoincore", + "dir_name_mac": "Chaincoin", + "dir_name_win": "Chaincoin", + "repo_url": "https://github.com/chaincoin/chaincoin", + "versions": [ + "v0.18" + ], + "xbridge_conf": "chaincoin--v0.18.1.conf", + "wallet_conf": "chaincoin--v0.18.1.conf" + }, + { + "blockchain": "Civitas", + "ticker": "CIV", + "ver_id": "civitas--v1.2.2", + "ver_name": "Civitas", + "conf_name": "civitas.conf", + "dir_name_linux": "civitas", + "dir_name_mac": "Civitas", + "dir_name_win": "Civitas", + "repo_url": "https://github.com/eastcoastcrypto/Civitas", + "versions": [ + "v1.2.2" + ], + "xbridge_conf": "civitas--v1.2.2.conf", + "wallet_conf": "civitas--v1.2.2.conf" + }, + { + "blockchain": "ColossusXT", + "ticker": "COLX", + "ver_id": "ColossusXT--v1.2.1", + "ver_name": "ColossusXT", + "conf_name": "ColossusXT.conf", + "dir_name_linux": "ColossusXT", + "dir_name_mac": "ColossusXT", + "dir_name_win": "ColossusXT", + "repo_url": "https://github.com/ColossusCoinXT/ColossusCoinXT", + "versions": [ + "v1.2.3", + "v1.2.4" + ], + "xbridge_conf": "colossusxt--v1.2.1.conf", + "wallet_conf": "colossusxt--v1.2.1.conf" + }, + { + "blockchain": "Crave", + "ticker": "CRAVE", + "ver_id": "crave--v2.5.0.3", + "ver_name": "Crave", + "conf_name": "crave.conf", + "dir_name_linux": "craveng", + "dir_name_mac": "CraveNG", + "dir_name_win": "CraveNG", + "repo_url": "https://github.com/Crave-Community-Project/Crave-Project", + "versions": [ + "v2.5.2" + ], + "xbridge_conf": "crave--v2.5.0.3.conf", + "wallet_conf": "crave--v2.5.0.3.conf" + }, + { + "blockchain": "Dash", + "ticker": "DASH", + "ver_id": "dash--v19.2.0", + "ver_name": "Dash", + "conf_name": "dash.conf", + "dir_name_linux": "dashcore", + "dir_name_mac": "DashCore", + "dir_name_win": "DashCore", + "repo_url": "https://github.com/dashpay/dash", + "versions": [ + "v19.2.0" + ], + "xbridge_conf": "dash--v19.2.0.conf", + "wallet_conf": "dash--v19.2.0.conf" + }, + { + "blockchain": "Denarius", + "ticker": "D", + "ver_id": "denarius--v3.3.9.9", + "ver_name": "Denarius", + "conf_name": "denarius.conf", + "dir_name_linux": "denarius", + "dir_name_mac": "Denarius", + "dir_name_win": "Denarius", + "repo_url": "https://github.com/carsenk/denarius", + "versions": [ + "v3.3.9.8", + "v3.3.9.9" + ], + "xbridge_conf": "denarius--v3.3.9.9.conf", + "wallet_conf": "denarius--v3.3.9.9.conf" + }, + { + "blockchain": "Desire", + "ticker": "DSR", + "ver_id": "desire--Desire-v.0.12.2.2.1", + "ver_name": "Desire", + "conf_name": "desire.conf", + "dir_name_linux": "desirecore", + "dir_name_mac": "DesireCore", + "dir_name_win": "DesireCore", + "repo_url": "https://github.com/lazyboozer/Desire", + "versions": [ + "Desire-v.0.12.2.2" + ], + "xbridge_conf": "desire--desire-v.0.12.2.2.1.conf", + "wallet_conf": "desire--desire-v.0.12.2.2.1.conf" + }, + { + "blockchain": "DeVault", + "ticker": "DVT", + "ver_id": "devault--v1.1.7", + "ver_name": "DeVault", + "conf_name": "devault.conf", + "dir_name_linux": "devault", + "dir_name_mac": "DeVault", + "dir_name_win": "DeVault", + "repo_url": "https://github.com/devaultcrypto/devault", + "versions": [ + "v1.1.7" + ], + "xbridge_conf": "devault--v1.1.7.conf", + "wallet_conf": "devault--v1.1.7.conf" + }, + { + "blockchain": "Diamond", + "ticker": "DMD", + "ver_id": "diamond--v3.0.1.1", + "ver_name": "Diamond", + "conf_name": "diamond.conf", + "dir_name_linux": "DMDV3", + "dir_name_mac": "DMDV3", + "dir_name_win": "DMDV3", + "repo_url": "https://github.com/DMDcoin/Diamond", + "versions": [ + "3.0.1.3" + ], + "xbridge_conf": "diamond--v3.0.1.1.conf", + "wallet_conf": "diamond--v3.0.1.1.conf" + }, + { + "blockchain": "DigiByte", + "ticker": "DGB", + "ver_id": "digibyte--v7.17.2", + "ver_name": "DigiByte", + "conf_name": "digibyte.conf", + "dir_name_linux": "digibyte", + "dir_name_mac": "DigiByte", + "dir_name_win": "DigiByte", + "repo_url": "https://github.com/digibyte/digibyte", + "versions": [ + "v7.17.2" + ], + "xbridge_conf": "digibyte--v7.17.2.conf", + "wallet_conf": "digibyte--v7.17.2.conf" + }, + { + "blockchain": "Digiwage", + "ticker": "WAGE", + "ver_id": "digiwage--v1.1.0", + "ver_name": "Digiwage", + "conf_name": "digiwage.conf", + "dir_name_linux": "digiwage", + "dir_name_mac": "Digiwage", + "dir_name_win": "Digiwage", + "repo_url": "https://github.com/digiwage/digiwage", + "versions": [ + "1.2.1" + ], + "xbridge_conf": "digiwage--v1.1.0.conf", + "wallet_conf": "digiwage--v1.1.0.conf" + }, + { + "blockchain": "Divi", + "ticker": "DIVI", + "ver_id": "divi--v1.0.4-core", + "ver_name": "Divi", + "conf_name": "divi.conf", + "dir_name_linux": "divi", + "dir_name_mac": "DIVI", + "dir_name_win": "DIVI", + "repo_url": "https://github.com/DiviProject/Divi", + "versions": [ + "v1.1.2", + "DESK-1.6.6" + ], + "xbridge_conf": "divi--v1.0.4-core.conf", + "wallet_conf": "divi--v1.0.4-core.conf" + }, + { + "blockchain": "DogeCash", + "ticker": "DOGEC", + "ver_id": "dogecash--5.4.4", + "ver_name": "DogeCash", + "conf_name": "dogecash.conf", + "dir_name_linux": "dogecash", + "dir_name_mac": "dogecash", + "dir_name_win": "DogeCashCore", + "repo_url": "https://github.com/dogecash/dogecash", + "versions": [ + "5.4.4" + ], + "xbridge_conf": "dogecash--5.4.4.conf", + "wallet_conf": "dogecash--5.4.4.conf" + }, + { + "blockchain": "Dogecoin", + "ticker": "DOGE", + "ver_id": "dogecoin--v1.14.5", + "ver_name": "Dogecoin", + "conf_name": "dogecoin.conf", + "dir_name_linux": "dogecoin", + "dir_name_mac": "Dogecoin", + "dir_name_win": "Dogecoin", + "repo_url": "https://github.com/dogecoin/dogecoin", + "versions": [ + "v1.14.5", + "v1.14.6" + ], + "xbridge_conf": "dogecoin--v1.14.5.conf", + "wallet_conf": "dogecoin--v1.14.5.conf" + }, + { + "blockchain": "Dynamic", + "ticker": "DYN", + "ver_id": "dynamic--v2.3.5.0", + "ver_name": "Dynamic", + "conf_name": "dynamic.conf", + "dir_name_linux": "dynamic", + "dir_name_mac": "Dynamic", + "dir_name_win": "Dynamic", + "repo_url": "https://github.com/duality-solutions/Dynamic", + "versions": [ + "v2.4.3.0", + "v2.4.4.0", + "v2.4.4.1" + ], + "xbridge_conf": "dynamic--v2.3.5.0.conf", + "wallet_conf": "dynamic--v2.3.5.0.conf" + }, + { + "blockchain": "Einsteinium", + "ticker": "EMC2", + "ver_id": "einsteinium--v0.13.48.0", + "ver_name": "Einsteinium", + "conf_name": "einsteinium.conf", + "dir_name_linux": "einsteinium", + "dir_name_mac": "Einsteinium", + "dir_name_win": "Einsteinium", + "repo_url": "https://github.com/emc2foundation/einsteinium", + "versions": [ + "v0.13.5.0" + ], + "xbridge_conf": "einsteinium--v0.13.48.0.conf", + "wallet_conf": "einsteinium--v0.13.48.0.conf" + }, + { + "blockchain": "Electra", + "ticker": "ECA", + "ver_id": "Electra--2.0.2.1", + "ver_name": "Electra", + "conf_name": "Electra.conf", + "dir_name_linux": "electra", + "dir_name_mac": "Electra", + "dir_name_win": "Electra", + "repo_url": "https://github.com/Electra-project/electra-core", + "versions": [ + "2.1.1", + "2.1.2" + ], + "xbridge_conf": "electra--2.0.2.1.conf", + "wallet_conf": "electra--2.0.2.1.conf" + }, + { + "blockchain": "Emercoin", + "ticker": "EMC", + "ver_id": "emercoin--v0.7.10emc", + "ver_name": "Emercoin", + "conf_name": "emercoin.conf", + "dir_name_linux": "emercoin", + "dir_name_mac": "Emercoin", + "dir_name_win": "Emercoin", + "repo_url": "https://github.com/emercoin/emercoin", + "versions": [ + "v0.7.10emc" + ], + "xbridge_conf": "emercoin--v0.7.10emc.conf", + "wallet_conf": "emercoin--v0.7.10emc.conf" + }, + { + "blockchain": "Eternity", + "ticker": "ENT", + "ver_id": "eternity--v0.12.1.7", + "ver_name": "Eternity", + "conf_name": "eternity.conf", + "dir_name_linux": "eternitycore", + "dir_name_mac": "EternityCore", + "dir_name_win": "EternityCore", + "repo_url": "https://github.com/eternity-group/eternity", + "versions": [ + "v0.12.1.7" + ], + "xbridge_conf": "eternity--v0.12.1.7.conf", + "wallet_conf": "eternity--v0.12.1.7.conf" + }, + { + "blockchain": "eXperience Points", + "ticker": "XP", + "ver_id": "experiencepoints--v3.4.0.3", + "ver_name": "eXperience Points", + "conf_name": "eXperiencePoints.conf", + "dir_name_linux": "eXperiencePoints", + "dir_name_mac": "eXperiencePoints", + "dir_name_win": "eXperiencePoints", + "repo_url": "https://github.com/experience-points-development/eXperience-Points", + "versions": [ + "v3.4.0.3" + ], + "xbridge_conf": "experiencepoints--v3.4.0.3.conf", + "wallet_conf": "experiencepoints--v3.4.0.3.conf" + }, + { + "blockchain": "Faircoin", + "ticker": "FAIR", + "ver_id": "faircoin--v2.0.0", + "ver_name": "Faircoin", + "conf_name": "faircoin.conf", + "dir_name_linux": "faircoin2", + "dir_name_mac": "faircoin2", + "dir_name_win": "faircoin2", + "repo_url": "https://github.com/faircoin/faircoin", + "versions": [ + "v2.0.1" + ], + "xbridge_conf": "faircoin--v2.0.0.conf", + "wallet_conf": "faircoin--v2.0.0.conf" + }, + { + "blockchain": "FantasyGold", + "ticker": "FGC", + "ver_id": "fantasygold--2.0.0", + "ver_name": "FantasyGold", + "conf_name": "fantasygold.conf", + "dir_name_linux": "fantasygold", + "dir_name_mac": "FantasyGold", + "dir_name_win": "FantasyGold", + "repo_url": "https://github.com/FantasyGold/FantasyGold-Core", + "versions": [ + "2.19.1" + ], + "xbridge_conf": "fantasygold--2.0.0.conf", + "wallet_conf": "fantasygold--2.0.0.conf" + }, + { + "blockchain": "Flo", + "ticker": "FLO", + "ver_id": "flo--v0.15.0.3", + "ver_name": "Flo", + "conf_name": "flo.conf", + "dir_name_linux": "flo", + "dir_name_mac": "FLO", + "dir_name_win": "FLO", + "repo_url": "https://github.com/floblockchain/flo", + "versions": [ + "v0.15.2.0", + "v0.15.2.1" + ], + "xbridge_conf": "flo--v0.15.0.3.conf", + "wallet_conf": "flo--v0.15.2.1.conf" + }, + { + "blockchain": "FujiCoin", + "ticker": "FJC", + "ver_id": "fujicoin--fujicoin-v0.16.1", + "ver_name": "FujiCoin", + "conf_name": "fujicoin.conf", + "dir_name_linux": "fujicoin", + "dir_name_mac": "Fujicoin", + "dir_name_win": "Fujicoin", + "repo_url": "https://github.com/fujicoin/fujicoin", + "versions": [ + "fujicoin-v0.18.0" + ], + "xbridge_conf": "fujicoin--fujicoin-v0.16.1.conf", + "wallet_conf": "fujicoin--fujicoin-v0.16.1.conf" + }, + { + "blockchain": "Galactrum", + "ticker": "ORE", + "ver_id": "galactrum--v1.1.6", + "ver_name": "Galactrum", + "conf_name": "galactrum.conf", + "dir_name_linux": "galactrum", + "dir_name_mac": "Galactrum", + "dir_name_win": "Galactrum", + "repo_url": "https://github.com/galactrum/galactrum", + "versions": [ + "v1.4.0" + ], + "xbridge_conf": "galactrum--v1.1.6.conf", + "wallet_conf": "galactrum--v1.4.0.conf" + }, + { + "blockchain": "Galilel", + "ticker": "GALI", + "ver_id": "galilel--v3.2.0", + "ver_name": "Galilel", + "conf_name": "galilel.conf", + "dir_name_linux": "galilel", + "dir_name_mac": "Galilel", + "dir_name_win": "Galilel", + "repo_url": "https://github.com/Galilel-Project/galilel", + "versions": [ + "v3.4.0" + ], + "xbridge_conf": "galilel--v3.2.0.conf", + "wallet_conf": "galilel--v3.2.0.conf" + }, + { + "blockchain": "GambleCoin", + "ticker": "GMCN", + "ver_id": "gamblecoin--1.1.4", + "ver_name": "GambleCoin", + "conf_name": "gamblecoin.conf", + "dir_name_linux": "gamblecoin", + "dir_name_mac": "GambleCoin", + "dir_name_win": "GambleCoin", + "repo_url": "https://github.com/GambleCoin-Project/GambleCoin", + "versions": [ + "1.1.4" + ], + "xbridge_conf": "gamblecoin--1.1.4.conf", + "wallet_conf": "gamblecoin--1.1.4.conf" + }, + { + "blockchain": "GeekCash", + "ticker": "GEEK", + "ver_id": "geekcash--v1.3.0.1", + "ver_name": "GeekCash", + "conf_name": "geekcash.conf", + "dir_name_linux": "geekcash", + "dir_name_mac": "GeekCash", + "dir_name_win": "GeekCash", + "repo_url": "https://github.com/GeekCash/geek", + "versions": [ + "v1.3.0.1" + ], + "xbridge_conf": "geekcash--v1.3.0.1.conf", + "wallet_conf": "geekcash--v1.3.0.1.conf" + }, + { + "blockchain": "GINcoin", + "ticker": "GIN", + "ver_id": "gincoin--1.1.0.0", + "ver_name": "GINcoin", + "conf_name": "gincoin.conf", + "dir_name_linux": "gincoincore", + "dir_name_mac": "GincoinCore", + "dir_name_win": "GincoinCore", + "repo_url": "https://github.com/GIN-coin/gincoin-core", + "versions": [ + "v1.3.0.0" + ], + "xbridge_conf": "gincoin--1.1.0.0.conf", + "wallet_conf": "gincoin--1.1.0.0.conf" + }, + { + "blockchain": "GoByte", + "ticker": "GBX", + "ver_id": "gobyte--v0.16.2.1", + "ver_name": "GoByte", + "conf_name": "gobyte.conf", + "dir_name_linux": "gobytecore", + "dir_name_mac": "GoByteCore", + "dir_name_win": "GoByteCore", + "repo_url": "https://github.com/gobytecoin/gobyte", + "versions": [ + "v0.16.2.1" + ], + "xbridge_conf": "gobyte--v0.16.2.1.conf", + "wallet_conf": "gobyte--v0.16.2.1.conf" + }, + { + "blockchain": "Goldcoin", + "ticker": "GLC", + "ver_id": "goldcoin--0.14.7", + "ver_name": "GoldCoin", + "conf_name": "goldcoin.conf", + "dir_name_linux": "goldcoin", + "dir_name_mac": "Goldcoin", + "dir_name_win": "Goldcoin", + "repo_url": "https://github.com/goldcoin/goldcoin", + "versions": [ + "v0.14.7" + ], + "xbridge_conf": "goldcoin--v0.14.7.conf", + "wallet_conf": "goldcoin--v0.14.7.conf" + }, + { + "blockchain": "GravityCoin", + "ticker": "GXX", + "ver_id": "GravityCoin--4.0.5.0.1", + "ver_name": "GravityCoin", + "conf_name": "GravityCoin.conf", + "dir_name_linux": "GravityCoin", + "dir_name_mac": "GravityCoin", + "dir_name_win": "GravityCoin", + "repo_url": "https://github.com/SpecialCoins/GravityCoin", + "versions": [ + "4.0.7.8" + ], + "xbridge_conf": "gravitycoin--4.0.5.0.1.conf", + "wallet_conf": "gravitycoin--4.0.5.0.1.conf" + }, + { + "blockchain": "HASH", + "ticker": "HASH", + "ver_id": "hash--v1.4.0", + "ver_name": "HASH", + "conf_name": "hash.conf", + "dir_name_linux": "hash", + "dir_name_mac": "Hash", + "dir_name_win": "Hash", + "repo_url": "https://github.com/hashplatform/hash", + "versions": [ + "v1.5.1" + ], + "xbridge_conf": "hash--v1.4.0.conf", + "wallet_conf": "hash--v1.4.0.conf" + }, + { + "blockchain": "Hatch", + "ticker": "HATCH", + "ver_id": "hatch--v0.14.0.3", + "ver_name": "Hatch", + "conf_name": "hatch.conf", + "dir_name_linux": "hatchcore", + "dir_name_mac": "HatchCore", + "dir_name_win": "HatchCore", + "repo_url": "https://github.com/hatchpay/hatch", + "versions": [ + "v0.14.0.3" + ], + "xbridge_conf": "hatch--v0.14.0.3.conf", + "wallet_conf": "hatch--v0.14.0.3.conf" + }, + { + "blockchain": "Helium", + "ticker": "HLM", + "ver_id": "helium--v0.16.0", + "ver_name": "Helium", + "conf_name": "helium.conf", + "dir_name_linux": "helium", + "dir_name_mac": "Helium", + "dir_name_win": "Helium", + "repo_url": "https://github.com/heliumchain/helium", + "versions": [ + "v0.16.0" + ], + "xbridge_conf": "helium--v0.16.0.conf", + "wallet_conf": "helium--v0.16.0.conf" + }, + { + "blockchain": "HTMLCoin", + "ticker": "HTML", + "ver_id": "htmlcoin--v2.0.3.0", + "ver_name": "HTMLCoin", + "conf_name": "htmlcoin.conf", + "dir_name_linux": "htmlcoin", + "dir_name_mac": "HTMLCOIN", + "dir_name_win": "HTMLCOIN", + "repo_url": "https://github.com/HTMLCOIN/HTMLCOIN", + "versions": [ + "v2.5.0" + ], + "xbridge_conf": "htmlcoin--v2.0.3.0.conf", + "wallet_conf": "htmlcoin--v2.0.3.0.conf" + }, + { + "blockchain": "Innova", + "ticker": "INN", + "ver_id": "innova--v4.3.8.6", + "ver_name": "Innova", + "conf_name": "innova.conf", + "dir_name_linux": "innova", + "dir_name_mac": "Innova", + "dir_name_win": "Innova", + "repo_url": "https://github.com/innova-foundation/innova", + "versions": [ + "v4.3.8.8" + ], + "xbridge_conf": "innova--v4.3.8.6.conf", + "wallet_conf": "innova--v4.3.8.6.conf" + }, + { + "blockchain": "Ixcoin", + "ticker": "IXC", + "ver_id": "ixcoin--v0.14.1", + "ver_name": "Ixcoin", + "conf_name": "ixcoin.conf", + "dir_name_linux": "ixcoin", + "dir_name_mac": "iXcoin", + "dir_name_win": "iXcoin", + "repo_url": "https://github.com/IXCore/IXCoin", + "versions": [ + "v0.14.1" + ], + "xbridge_conf": "ixcoin--v0.14.1.conf", + "wallet_conf": "ixcoin--v0.14.1.conf" + }, + { + "blockchain": "Jiyo", + "ticker": "JIYOX", + "ver_id": "jiyo--v.2.1", + "ver_name": "Jiyo", + "conf_name": "jiyo.conf", + "dir_name_linux": "jiyo", + "dir_name_mac": "Jiyo", + "dir_name_win": "Jiyo", + "repo_url": "https://github.com/jiyocoin/jiyox", + "versions": [ + "v.2.1" + ], + "xbridge_conf": "jiyo--v.2.1.conf", + "wallet_conf": "jiyo--v.2.1.conf" + }, + { + "blockchain": "Kalkulus", + "ticker": "KLKS", + "ver_id": "klks--v2.6.0", + "ver_name": "Kalkulus", + "conf_name": "klks.conf", + "dir_name_linux": "klks", + "dir_name_mac": "klks", + "dir_name_win": "klks", + "repo_url": "https://github.com/kalkulusteam/klks", + "versions": [ + "v2.8.0" + ], + "xbridge_conf": "klks--v2.6.0.conf", + "wallet_conf": "klks--v2.6.0.conf" + }, + { + "blockchain": "Know Your Developer", + "ticker": "KYDC", + "ver_id": "kyd--v3.2.0.3", + "ver_name": "Know Your Developer", + "conf_name": "kyd.conf", + "dir_name_linux": "kydcore", + "dir_name_mac": "KYDcore", + "dir_name_win": "KYDcore", + "repo_url": "https://github.com/kydcoin/KYD3", + "versions": [ + "3.2.1", + "3.3.1" + ], + "xbridge_conf": "kyd--3.3.1.conf", + "wallet_conf": "kyd--v3.2.0.3.conf" + }, + { + "blockchain": "Kreds", + "ticker": "KREDS", + "ver_id": "kreds--v1.0.0.5.1", + "ver_name": "Kreds", + "conf_name": "kreds.conf", + "dir_name_linux": "kreds", + "dir_name_mac": "kreds", + "dir_name_win": "kreds", + "repo_url": "https://github.com/KredsBlockchain/kreds-core", + "versions": [ + "v1.0.0.6" + ], + "xbridge_conf": "kreds--v1.0.0.5.1.conf", + "wallet_conf": "kreds--v1.0.0.5.1.conf" + }, + { + "blockchain": "KZCash", + "ticker": "KZC", + "ver_id": "kzcash--v0.1.9.1", + "ver_name": "KZCash", + "conf_name": "kzcash.conf", + "dir_name_linux": "kzcash", + "dir_name_mac": "KZCash", + "dir_name_win": "KZCash", + "repo_url": "https://github.com/kzcashteam/kzcash", + "versions": [ + "v0.1.9.1" + ], + "xbridge_conf": "kzcash--v0.1.9.1.conf", + "wallet_conf": "kzcash--v0.1.9.1.conf" + }, + { + "blockchain": "LBRY Credits", + "ticker": "LBC", + "ver_id": "lbrycrd--v0.17.2.0", + "ver_name": "LBRY Credits", + "conf_name": "lbrycrd.conf", + "dir_name_linux": "lbrycrd", + "dir_name_mac": "lbrycrd", + "dir_name_win": "lbrycrd", + "repo_url": "https://github.com/lbryio/lbrycrd", + "versions": [ + "v0.17.3.1", + "v0.17.3.2", + "v0.17.3.3", + "v0.17.4.5", + "v0.17.4.6" + ], + "xbridge_conf": "lbrycrd--v0.12.2.1.conf", + "wallet_conf": "lbrycrd--v0.17.2.0.conf" + }, + { + "blockchain": "Litecoin", + "ticker": "LTC", + "ver_id": "litecoin--v0.15.1", + "ver_name": "Litecoin v0.15.x", + "conf_name": "litecoin.conf", + "dir_name_linux": "litecoin", + "dir_name_mac": "Litecoin", + "dir_name_win": "Litecoin", + "repo_url": "https://github.com/litecoin-project/litecoin", + "versions": [ + "v0.15.1" + ], + "xbridge_conf": "litecoin--v0.15.1.conf", + "wallet_conf": "litecoin--v0.15.1.conf" + }, + { + "blockchain": "Litecoin", + "ticker": "LTC", + "ver_id": "litecoin--v0.16.0", + "ver_name": "Litecoin v0.16.x", + "conf_name": "litecoin.conf", + "dir_name_linux": "litecoin", + "dir_name_mac": "Litecoin", + "dir_name_win": "Litecoin", + "repo_url": "https://github.com/litecoin-project/litecoin", + "versions": [ + "v0.16.0", + "v0.16.2", + "v0.16.3" + ], + "xbridge_conf": "litecoin--v0.15.1.conf", + "wallet_conf": "litecoin--v0.16.0.conf" + }, + { + "blockchain": "Litecoin", + "ticker": "LTC", + "ver_id": "litecoin--v0.17.1", + "ver_name": "Litecoin v0.17.x", + "conf_name": "litecoin.conf", + "dir_name_linux": "litecoin", + "dir_name_mac": "Litecoin", + "dir_name_win": "Litecoin", + "repo_url": "https://github.com/litecoin-project/litecoin", + "versions": [ + "v0.17.1" + ], + "xbridge_conf": "litecoin--v0.15.1.conf", + "wallet_conf": "litecoin--v0.16.0.conf" + }, + { + "blockchain": "Litecoin", + "ticker": "LTC", + "ver_id": "litecoin--v0.18.1", + "ver_name": "Litecoin v0.18.x", + "conf_name": "litecoin.conf", + "dir_name_linux": "litecoin", + "dir_name_mac": "Litecoin", + "dir_name_win": "Litecoin", + "repo_url": "https://github.com/litecoin-project/litecoin", + "versions": [ + "v0.18.1" + ], + "xbridge_conf": "litecoin--v0.18.1.conf", + "wallet_conf": "litecoin--v0.18.1.conf" + }, + { + "blockchain": "Litecoin", + "ticker": "LTC", + "ver_id": "litecoin--v0.21.2", + "ver_name": "Litecoin v0.21.x", + "conf_name": "litecoin.conf", + "dir_name_linux": "litecoin", + "dir_name_mac": "Litecoin", + "dir_name_win": "Litecoin", + "repo_url": "https://github.com/litecoin-project/litecoin", + "versions": [ + "v0.21.2", + "v0.21.2.1", + "v0.21.2.2" + ], + "xbridge_conf": "litecoin--v0.18.1.conf", + "wallet_conf": "litecoin--v0.21.2.conf" + }, + { + "blockchain": "Lynx", + "ticker": "LYNX", + "ver_id": "lynx--v0.15.1.0", + "ver_name": "Lynx", + "conf_name": "lynx.conf", + "dir_name_linux": "lynx", + "dir_name_mac": "Lynx", + "dir_name_win": "Lynx", + "repo_url": "https://github.com/getlynx/Lynx", + "versions": [ + "v0.16.3.9" + ], + "xbridge_conf": "lynx--v0.15.1.0.conf", + "wallet_conf": "lynx--v0.15.1.0.conf" + }, + { + "blockchain": "Machinecoin", + "ticker": "MAC", + "ver_id": "machinecoin--v0.16.1.4", + "ver_name": "Machinecoin", + "conf_name": "machinecoin.conf", + "dir_name_linux": "machinecoin", + "dir_name_mac": "Machinecoin", + "dir_name_win": "Machinecoin", + "repo_url": "https://github.com/machinecoin-project/machinecoin-core", + "versions": [ + "v0.16.3", + "v0.17.1" + ], + "xbridge_conf": "machinecoin--v0.16.1.4.conf", + "wallet_conf": "machinecoin--v0.16.1.4.conf" + }, + { + "blockchain": "Metrix", + "ticker": "MRX", + "ver_id": "Metrix--v4.0.3", + "ver_name": "Metrix", + "conf_name": "metrix.conf", + "dir_name_linux": "metrixcoin", + "dir_name_mac": "MetrixCoin", + "dir_name_win": "MetrixCoin", + "repo_url": "https://github.com/TheLindaProjectInc/Metrix", + "versions": [ + "v4.0.3" + ], + "xbridge_conf": "Metrix--v4.0.3.conf", + "wallet_conf": "Metrix--v4.0.3.conf" + }, + { + "blockchain": "MNPCoin", + "ticker": "MNP", + "ver_id": "mnpcoin--v1.2.5", + "ver_name": "MNPCoin", + "conf_name": "mnpcoin.conf", + "dir_name_linux": "mnpcoin", + "dir_name_mac": "MNPCOIN", + "dir_name_win": "MNPCOIN", + "repo_url": "https://github.com/MasterNodesPro/MNPCoin", + "versions": [ + "v1.2.5" + ], + "xbridge_conf": "mnpcoin--v1.2.5.conf", + "wallet_conf": "mnpcoin--v1.2.5.conf" + }, + { + "blockchain": "MktCoin", + "ticker": "MLM", + "ver_id": "mktcoin--0.14.3", + "ver_name": "MktCoin", + "conf_name": "mktcoin.conf", + "dir_name_linux": "mktcoin", + "dir_name_mac": "MKTcoin", + "dir_name_win": "MKTcoin", + "repo_url": "https://github.com/Mktcoin-official/Mktcoin", + "versions": [ + "0.15.0.3" + ], + "xbridge_conf": "mktcoin--0.14.3.conf", + "wallet_conf": "mktcoin--0.14.3.conf" + }, + { + "blockchain": "MonaCoin", + "ticker": "MONA", + "ver_id": "monacoin--monacoin-0.17.1", + "ver_name": "MonaCoin", + "conf_name": "monacoin.conf", + "dir_name_linux": "monacoin", + "dir_name_mac": "Monacoin", + "dir_name_win": "Monacoin", + "repo_url": "https://github.com/monacoinproject/monacoin", + "versions": [ + "monacoin-0.17.1" + ], + "xbridge_conf": "monacoin--monacoin-0.15.1.conf", + "wallet_conf": "monacoin--monacoin-0.17.1.conf" + }, + { + "blockchain": "MonetaryUnit", + "ticker": "MUE", + "ver_id": "monetaryunit--v2.3.0", + "ver_name": "MonetaryUnit", + "conf_name": "monetaryunit.conf", + "dir_name_linux": "monetaryunit", + "dir_name_mac": "MonetaryUnitCore", + "dir_name_win": "MonetaryUnitCore", + "repo_url": "https://github.com/muecoin/MUE", + "versions": [ + "v2.3.0" + ], + "xbridge_conf": "monetaryunit--v2.3.0.conf", + "wallet_conf": "monetaryunit--v2.3.0.conf" + }, + { + "blockchain": "Monoeci", + "ticker": "XMCC", + "ver_id": "monoeci--v0.12.2.3", + "ver_name": "Monoeci", + "conf_name": "monoeci.conf", + "dir_name_linux": "monoeciCore", + "dir_name_mac": "monoeciCore", + "dir_name_win": "monoeciCore", + "repo_url": "https://github.com/monacocoin-net/monoeci-core", + "versions": [ + "v0.12.2.3" + ], + "xbridge_conf": "monoeci--v0.12.2.3.conf", + "wallet_conf": "monoeci--v0.12.2.3.conf" + }, + { + "blockchain": "Myriad", + "ticker": "XMY", + "ver_id": "myriadcoin--v0.16.3.0", + "ver_name": "Myriad", + "conf_name": "myriadcoin.conf", + "dir_name_linux": "myriadcoin", + "dir_name_mac": "Myriadcoin", + "dir_name_win": "Myriadcoin", + "repo_url": "https://github.com/myriadteam/myriadcoin", + "versions": [ + "v0.16.4.1", + "v0.18.1.0" + ], + "xbridge_conf": "myriadcoin--v0.14.2.5.conf", + "wallet_conf": "myriadcoin--v0.16.3.0.conf" + }, + { + "blockchain": "Namecoin", + "ticker": "NMC", + "ver_id": "namecoin--nc0.13.99-name-tab-beta1", + "ver_name": "Namecoin", + "conf_name": "namecoin.conf", + "dir_name_linux": "namecoin", + "dir_name_mac": "Namecoin", + "dir_name_win": "Namecoin", + "repo_url": "https://github.com/namecoin/namecoin-core", + "versions": [ + "nc0.13.99-name-tab-beta1", + "nc0.16.1", + "nc0.16.2", + "nc0.17.0", + "nc0.18.0", + "nc0.18.1", + "nc0.19.0", + "nc0.19.0.1", + "nc0.19.1", + "nc0.20.0" + ], + "xbridge_conf": "namecoin--nc0.13.99-name-tab-beta1.conf", + "wallet_conf": "namecoin--nc0.13.99-name-tab-beta1.conf" + }, + { + "blockchain": "NativeCoin", + "ticker": "N8V", + "ver_id": "nativecoin--v1.0.0", + "ver_name": "NativeCoin", + "conf_name": "nativecoin.conf", + "dir_name_linux": ".nativecoin", + "dir_name_mac": "nativecoin", + "dir_name_win": "NativeCoinCore", + "repo_url": "https://github.com/N8VCoin/nativecoin", + "versions": [ + "1.2" + ], + "xbridge_conf": "nativecoin--v1.0.0.conf", + "wallet_conf": "nativecoin--v1.0.0.conf" + }, + { + "blockchain": "Nix", + "ticker": "NIX", + "ver_id": "nix--v2.2.0", + "ver_name": "Nix", + "conf_name": "nix.conf", + "dir_name_linux": "nix", + "dir_name_mac": "nix", + "dir_name_win": "nix", + "repo_url": "https://github.com/NixPlatform/NixCore", + "versions": [ + "v3.0.7", + "v3.0.8" + ], + "xbridge_conf": "nix--v2.0.3.conf", + "wallet_conf": "nix--v2.0.3.conf" + }, + { + "blockchain": "Nodium", + "ticker": "XN", + "ver_id": "nodium--3.0.6", + "ver_name": "Nodium", + "conf_name": "nodium.conf", + "dir_name_linux": "Nodium", + "dir_name_mac": "Nodium", + "dir_name_win": "Nodium", + "repo_url": "https://github.com/nodiumproject/zNodium", + "versions": [ + "3.0.6" + ], + "xbridge_conf": "nodium--3.0.6.conf", + "wallet_conf": "nodium--3.0.6.conf" + }, + { + "blockchain": "Noir", + "ticker": "NOR", + "ver_id": "noir--v1.0.0.2", + "ver_name": "Noir", + "conf_name": "noir.conf", + "dir_name_linux": "noir", + "dir_name_mac": "noir", + "dir_name_win": "noir", + "repo_url": "https://github.com/noirofficial/noir", + "versions": [ + "v2.1.0.9" + ], + "xbridge_conf": "noir--v1.0.0.2.conf", + "wallet_conf": "noir--v1.0.0.2.conf" + }, + { + "blockchain": "Northern", + "ticker": "NORT", + "ver_id": "northern--1.0.0", + "ver_name": "Northern", + "conf_name": "northern.conf", + "dir_name_linux": "northern", + "dir_name_mac": "Northern", + "dir_name_win": "Northern", + "repo_url": "https://github.com/northern-community/Northern", + "versions": [ + "3.3.1", + "3.3.2" + ], + "xbridge_conf": "northern--1.0.0.conf", + "wallet_conf": "northern--1.0.0.conf" + }, + { + "blockchain": "Nyerium", + "ticker": "NYEX", + "ver_id": "nyerium--v1.0.3", + "ver_name": "Nyerium", + "conf_name": "nyerium.conf", + "dir_name_linux": "nyerium", + "dir_name_mac": "Nyerium", + "dir_name_win": "Nyerium", + "repo_url": "https://github.com/nyerium-core/nyerium", + "versions": [ + "v1.0.3" + ], + "xbridge_conf": "nyerium--v1.0.3.conf", + "wallet_conf": "nyerium--v1.0.3.conf" + }, + { + "blockchain": "NyxCoin", + "ticker": "NYX", + "ver_id": "nyx--v2.0.0.0", + "ver_name": "NyxCoin", + "conf_name": "nyx.conf", + "dir_name_linux": "nyx", + "dir_name_mac": "Nyx", + "dir_name_win": "NYX", + "repo_url": "https://github.com/nyxpay/nyx", + "versions": [ + "v2.0.0.0" + ], + "xbridge_conf": "nyx--v2.0.0.0.conf", + "wallet_conf": "nyx--v2.0.0.0.conf" + }, + { + "blockchain": "OASIS", + "ticker": "XOS", + "ver_id": "oasis--v3.0.0", + "ver_name": "Oasis", + "conf_name": "oasis.conf", + "dir_name_linux": "oasis", + "dir_name_mac": "Oasis", + "dir_name_win": "Oasis", + "repo_url": "https://github.com/OasisCoinTeam/Oasis", + "versions": [ + "v3.0.0" + ], + "xbridge_conf": "oasis--v3.0.0.conf", + "wallet_conf": "oasis--v3.0.0.conf" + }, + { + "blockchain": "Odin", + "ticker": "ODIN", + "ver_id": "odin--v1.4.2", + "ver_name": "Odin", + "conf_name": "odin.conf", + "dir_name_linux": "odin", + "dir_name_mac": "ODIN", + "dir_name_win": "ODIN", + "repo_url": "https://github.com/odinblockchain/Odin", + "versions": [ + "v1.6.6" + ], + "xbridge_conf": "odin--v1.4.2.conf", + "wallet_conf": "odin--v1.4.2.conf" + }, + { + "blockchain": "Ohmcoin", + "ticker": "OHMC", + "ver_id": "ohmc--2.3.1", + "ver_name": "Ohmcoin", + "conf_name": "ohmc.conf", + "dir_name_linux": "ohmc", + "dir_name_mac": "OHMC", + "dir_name_win": "OHMC", + "repo_url": "https://github.com/theohmproject/OhmCoin", + "versions": [ + "2.4.0.0" + ], + "xbridge_conf": "ohmc--2.3.1.conf", + "wallet_conf": "ohmc--2.3.1.conf" + }, + { + "blockchain": "OPCoinX", + "ticker": "OPCX", + "ver_id": "OPCoinX--v2.0.0", + "ver_name": "OPCoinX", + "conf_name": "OPCoinX.conf", + "dir_name_linux": "OPCoinX", + "dir_name_mac": "OPCoinX", + "dir_name_win": "OPCoinX", + "repo_url": "https://github.com/opcoinx/OPCoinX", + "versions": [ + "v2.0.0" + ], + "xbridge_conf": "opcoinx--v2.0.0.conf", + "wallet_conf": "opcoinx--v2.0.0.conf" + }, + { + "blockchain": "PACGlobal", + "ticker": "PAC", + "ver_id": "pacglobal--v0.15-da839021c", + "ver_name": "PACGlobal", + "conf_name": "pacglobal.conf", + "dir_name_linux": "PACGlobal", + "dir_name_mac": "PACGlobal", + "dir_name_win": "PACGlobal", + "repo_url": "https://github.com/pacglobalofficial/pac", + "versions": [ + "v0.15-da839021c" + ], + "xbridge_conf": "pacglobal--v0.15-da839021c.conf", + "wallet_conf": "pacglobal--v0.15-da839021c.conf" + }, + { + "blockchain": "Particl", + "ticker": "PART", + "ver_id": "particl--v0.19.2.5", + "ver_name": "Particl v0.19.2.5+", + "conf_name": "particl.conf", + "dir_name_linux": "particl", + "dir_name_mac": "Particl", + "dir_name_win": "Particl", + "repo_url": "https://github.com/particl/particl-core", + "versions": [ + "v0.19.2.5" + ], + "xbridge_conf": "particl--v0.19.2.5.conf", + "wallet_conf": "particl--v0.19.2.5.conf" + }, + { + "blockchain": "Phore", + "ticker": "PHR", + "ver_id": "phore--v1.7.1", + "ver_name": "Phore", + "conf_name": "phore.conf", + "dir_name_linux": "phore", + "dir_name_mac": "Phore", + "dir_name_win": "Phore", + "repo_url": "https://github.com/phoreproject/Phore", + "versions": [ + "v1.7.1", + "v1.8.0" + ], + "xbridge_conf": "phore--v1.7.1.conf", + "wallet_conf": "phore--v1.7.1.conf" + }, + { + "blockchain": "PIVX", + "ticker": "PIVX", + "ver_id": "pivx--v5.5.0", + "ver_name": "PIVX", + "conf_name": "pivx.conf", + "dir_name_linux": "pivx", + "dir_name_mac": "PIVX", + "dir_name_win": "PIVX", + "repo_url": "https://github.com/PIVX-Project/PIVX", + "versions": [ + "v5.5.0" + ], + "xbridge_conf": "pivx--v5.5.0.conf", + "wallet_conf": "pivx--v5.5.0.conf" + }, + { + "blockchain": "Placeholders", + "ticker": "PHL", + "ver_id": "placeh--2.0.30.5", + "ver_name": "Placeholders", + "conf_name": "placeh.conf", + "dir_name_linux": "placeh", + "dir_name_mac": "placeh", + "dir_name_win": "placeh", + "repo_url": "https://github.com/xagau/Placeholders-X16R", + "versions": [ + "2.0.30.5" + ], + "xbridge_conf": "placeh--2.0.30.5.conf", + "wallet_conf": "placeh--2.0.30.5.conf" + }, + { + "blockchain": "Pura", + "ticker": "PURA", + "ver_id": "pura--v1.0.0.0", + "ver_name": "Pura", + "conf_name": "pura.conf", + "dir_name_linux": "pura", + "dir_name_mac": "Pura", + "dir_name_win": "Pura", + "repo_url": "https://github.com/puracore/pura", + "versions": [ + "v1.3.7" + ], + "xbridge_conf": "pura--v1.0.0.0.conf", + "wallet_conf": "pura--v1.0.0.0.conf" + }, + { + "blockchain": "Qbic", + "ticker": "QBIC", + "ver_id": "qbiccoin--v1.0.1.0", + "ver_name": "Qbic", + "conf_name": "qbiccoin.conf", + "dir_name_linux": "qbiccoin", + "dir_name_mac": "QBICcoin", + "dir_name_win": "QBICcoin", + "repo_url": "https://github.com/qbic-platform/qbic_v2.0", + "versions": [ + "v1.1" + ], + "xbridge_conf": "qbiccoin--v1.0.1.0.conf", + "wallet_conf": "qbiccoin--v1.0.1.0.conf" + }, + { + "blockchain": "Qtum", + "ticker": "QTUM", + "ver_id": "qtum--mainnet-ignition-v0.17.1", + "ver_name": "Qtum", + "conf_name": "qtum.conf", + "dir_name_linux": "qtum", + "dir_name_mac": "Qtum", + "dir_name_win": "Qtum", + "repo_url": "https://github.com/qtumproject/qtum", + "versions": [ + "mainnet-ignition-v0.19.1" + ], + "xbridge_conf": "qtum--mainnet-ignition-v0.15.2.conf", + "wallet_conf": "qtum--mainnet-ignition-v0.17.1.conf" + }, + { + "blockchain": "Rapids", + "ticker": "RPD", + "ver_id": "rapids--v1.0.0.1", + "ver_name": "Rapids", + "conf_name": "rapids.conf", + "dir_name_linux": "rapids", + "dir_name_mac": "Rapids", + "dir_name_win": "Rapids", + "repo_url": "https://github.com/RapidsOfficial/Rapids", + "versions": [ + "v2.0.0.0-b784ecbf4d" + ], + "xbridge_conf": "rapids--v1.0.0.1.conf", + "wallet_conf": "rapids--v1.0.0.1.conf" + }, + { + "blockchain": "Rapture", + "ticker": "RAP", + "ver_id": "rapture--v1.1.2.2", + "ver_name": "Rapture", + "conf_name": "rapture.conf", + "dir_name_linux": "rapturecore", + "dir_name_mac": "RaptureCore", + "dir_name_win": "RaptureCore", + "repo_url": "https://github.com/RaptureCore/Rapture", + "versions": [ + "v1.1.2.2" + ], + "xbridge_conf": "rapture--v1.1.2.2.conf", + "wallet_conf": "rapture--v1.1.2.2.conf" + }, + { + "blockchain": "Ravencoin", + "ticker": "RVN", + "ver_id": "raven--v4.1.0", + "ver_name": "Ravencoin", + "conf_name": "raven.conf", + "dir_name_linux": "raven", + "dir_name_mac": "Raven", + "dir_name_win": "Raven", + "repo_url": "https://github.com/RavenProject/Ravencoin", + "versions": [ + "v4.1.0", + "v4.2.0", + "v4.2.1", + "v4.3.0", + "v4.3.1", + "v4.3.2", + "v4.3.2.1" + ], + "xbridge_conf": "raven--v4.1.0.conf", + "wallet_conf": "raven--v4.1.0.conf" + }, + { + "blockchain": "Reecore", + "ticker": "REEX", + "ver_id": "Reecore--v1.4.2.2", + "ver_name": "Reecore", + "conf_name": "Reecore.conf", + "dir_name_linux": "Reecore", + "dir_name_mac": "Reecore", + "dir_name_win": "Reecore", + "repo_url": "https://github.com/reecore-coin/Reex", + "versions": [ + "v1.4.2.2" + ], + "xbridge_conf": "reecore--v1.4.2.2.conf", + "wallet_conf": "reecore--v1.4.2.2.conf" + }, + { + "blockchain": "Scribe", + "ticker": "SCRIBE", + "ver_id": "scribe--v0.2", + "ver_name": "Scribe", + "conf_name": "scribe.conf", + "dir_name_linux": "scribecore", + "dir_name_mac": "ScribeCore", + "dir_name_win": "ScribeCore", + "repo_url": "https://github.com/scribenetwork/scribe", + "versions": [ + "v0.2" + ], + "xbridge_conf": "scribe--v0.2.conf", + "wallet_conf": "scribe--v0.2.conf" + }, + { + "blockchain": "Secure Cloud Net", + "ticker": "SCN", + "ver_id": "securecloud--v2.4.3", + "ver_name": "Secure Cloud Net", + "conf_name": "securecloud.conf", + "dir_name_linux": "securecloud", + "dir_name_mac": "SecureCloud", + "dir_name_win": "SecureCloud", + "repo_url": "https://github.com/securecloudnet/SecureCloud", + "versions": [ + "v2.5.1.1", + "v2.5.1.2" + ], + "xbridge_conf": "securecloud--v2.4.3.conf", + "wallet_conf": "securecloud--v2.4.3.conf" + }, + { + "blockchain": "Sequence", + "ticker": "SEQ", + "ver_id": "sequence--v1.3.0.0", + "ver_name": "Sequence", + "conf_name": "sequence.conf", + "dir_name_linux": "sequence", + "dir_name_mac": "sequence", + "dir_name_win": "sequence", + "repo_url": "https://github.com/duality-solutions/Sequence", + "versions": [ + "v1.3.3.0" + ], + "xbridge_conf": "sequence--v1.3.0.0.conf", + "wallet_conf": "sequence--v1.3.0.0.conf" + }, + { + "blockchain": "Shekel", + "ticker": "JEW", + "ver_id": "shekel--1.4.0", + "ver_name": "Shekel", + "conf_name": "shekel.conf", + "dir_name_linux": "shekel", + "dir_name_mac": "Shekel", + "dir_name_win": "Shekel", + "repo_url": "https://github.com/shekeltechnologies/JewNew", + "versions": [ + "1.5.0" + ], + "xbridge_conf": "shekel--1.4.0.conf", + "wallet_conf": "shekel--1.4.0.conf" + }, + { + "blockchain": "Sibcoin", + "ticker": "SIB", + "ver_id": "sibcoin--v0.16.1.3", + "ver_name": "Sibcoin", + "conf_name": "sibcoin.conf", + "dir_name_linux": "sibcoin", + "dir_name_mac": "Sibcoin", + "dir_name_win": "Sibcoin", + "repo_url": "https://github.com/ivansib/sibcoin", + "versions": [ + "v0.17.0.0" + ], + "xbridge_conf": "sibcoin--v0.16.1.3.conf", + "wallet_conf": "sibcoin--v0.16.1.3.conf" + }, + { + "blockchain": "Social Send", + "ticker": "SEND", + "ver_id": "send--v1.1.0.0", + "ver_name": "Social Send", + "conf_name": "send.conf", + "dir_name_linux": "send", + "dir_name_mac": "SEND", + "dir_name_win": "SEND", + "repo_url": "https://github.com/SocialSend/SocialSend", + "versions": [ + "1.2.0.5", + "v1.2.1.0" + ], + "xbridge_conf": "send--v1.1.0.0.conf", + "wallet_conf": "send--v1.1.0.0.conf" + }, + { + "blockchain": "SparksPay", + "ticker": "SPK", + "ver_id": "sparks--v0.12.3.2", + "ver_name": "Sparks", + "conf_name": "sparks.conf", + "dir_name_linux": "sparkscore", + "dir_name_mac": "SparksCore", + "dir_name_win": "SparksCore", + "repo_url": "https://github.com/sparkspay/sparks", + "versions": [ + "v0.12.4.3" + ], + "xbridge_conf": "sparks--v0.12.3.2.conf", + "wallet_conf": "sparks--v0.12.3.2.conf" + }, + { + "blockchain": "StakeCubeCoin", + "ticker": "SCC", + "ver_id": "stakecubecoin--v3.0.1", + "ver_name": "StakeCubeCoin", + "conf_name": "stakecubecoin.conf", + "daemon_stem": "scc", + "dir_name_linux": "stakecubecoin", + "dir_name_mac": "stakecubecoin", + "dir_name_win": "StakeCubeCoin", + "repo_url": "https://github.com/stakecube/StakeCubeCoin", + "versions": [ + "v3.0.1", + "v3.0.2", + "v3.1.0" + ], + "xbridge_conf": "stakecubecoin--v3.0.1.conf", + "wallet_conf": "stakecubecoin--v3.0.1.conf" + }, + { + "blockchain": "STRAKS", + "ticker": "STAK", + "ver_id": "straks--1.14.7.3", + "ver_name": "STRAKS", + "conf_name": "straks.conf", + "dir_name_linux": "straks", + "dir_name_mac": "straks", + "dir_name_win": "straks", + "repo_url": "https://github.com/straks/straks", + "versions": [ + "1.14.7.5" + ], + "xbridge_conf": "straks--1.14.7.3.conf", + "wallet_conf": "straks--1.14.7.3.conf" + }, + { + "blockchain": "SUB1X", + "ticker": "SUB1X", + "ver_id": "zsub1x--1.4.0", + "ver_name": "SUB1X", + "conf_name": "zsub1x.conf", + "dir_name_linux": "zsub1x", + "dir_name_mac": "zSub1x", + "dir_name_win": "zSub1x", + "repo_url": "https://github.com/SuB1X-Coin/zSub1x", + "versions": [ + "1.4.0" + ], + "xbridge_conf": "zsub1x--1.4.0.conf", + "wallet_conf": "zsub1x--1.4.0.conf" + }, + { + "blockchain": "SwiftCash", + "ticker": "SWIFT", + "ver_id": "swiftcash--3.0.5", + "ver_name": "v3.0.5", + "conf_name": "swiftcash.conf", + "dir_name_linux": "swiftcash", + "dir_name_mac": "SwiftCash", + "dir_name_win": "SwiftCash", + "repo_url": "https://github.com/swiftcashproject/swiftcash", + "versions": [ + "3.0.5" + ], + "xbridge_conf": "swiftcash--3.0.5.conf", + "wallet_conf": "swiftcash--3.0.5.conf" + }, + { + "blockchain": "Syscoin", + "ticker": "SYS", + "ver_id": "syscoin--v4.4.2", + "ver_name": "Syscoin", + "conf_name": "syscoin.conf", + "dir_name_linux": "syscoin", + "dir_name_mac": "Syscoin", + "dir_name_win": "Syscoin", + "repo_url": "https://github.com/syscoin/syscoin", + "versions": [ + "v4.4.2" + ], + "xbridge_conf": "syscoin--v4.4.2.conf", + "wallet_conf": "syscoin--v4.4.2.conf" + }, + { + "blockchain": "Syscoin Testnet", + "ticker": "TSYS", + "ver_id": "systest--v4.3.0", + "ver_name": "Syscoin Testnet", + "conf_name": "syscoin.conf", + "dir_name_linux": "syscoin", + "dir_name_mac": "Syscoin", + "dir_name_win": "Syscoin", + "repo_url": "https://github.com/syscoin/syscoin", + "versions": [ + "v4.3.0" + ], + "xbridge_conf": "systest--v4.3.0.conf", + "wallet_conf": "systest--v4.3.0.conf" + }, + { + "blockchain": "Terracoin", + "ticker": "TRC", + "ver_id": "terracoin--v0.12.1.8", + "ver_name": "Terracoin", + "conf_name": "terracoin.conf", + "dir_name_linux": "terracoincore", + "dir_name_mac": "TerracoinCore", + "dir_name_win": "TerracoinCore", + "repo_url": "https://github.com/terracoin/terracoin", + "versions": [ + "v0.12.2.4", + "v0.12.2.5" + ], + "xbridge_conf": "terracoin--v0.12.1.8.conf", + "wallet_conf": "terracoin--v0.12.1.8.conf" + }, + { + "blockchain": "Tribe", + "ticker": "TRB", + "ver_id": "tribe--v1.0.0", + "ver_name": "Tribe", + "conf_name": "tribe.conf", + "dir_name_linux": "tribe", + "dir_name_mac": "tribe", + "dir_name_win": "tribe", + "repo_url": "https://github.com/TribeCrypto/tribe", + "versions": [ + "1.0.2" + ], + "xbridge_conf": "tribe--v1.0.0.conf", + "wallet_conf": "tribe--v1.0.0.conf" + }, + { + "blockchain": "Uniform Fiscal Object", + "ticker": "UFO", + "ver_id": "ufocoin--v0.17.0", + "ver_name": "Uniform Fiscal Object", + "conf_name": "ufocoin.conf", + "dir_name_linux": "ufo", + "dir_name_mac": "UFO", + "dir_name_win": "UFO", + "repo_url": "https://github.com/fiscalobject/ufo", + "versions": [ + "v0.18.0" + ], + "xbridge_conf": "ufocoin--v0.16.1.conf", + "wallet_conf": "ufocoin--v0.18.0.conf" + }, + { + "blockchain": "Unobtanium", + "ticker": "UNO", + "ver_id": "unobtanium--v0.11.0", + "ver_name": "Unobtanium", + "conf_name": "unobtanium.conf", + "dir_name_linux": "unobtanium", + "dir_name_mac": "Unobtanium", + "dir_name_win": "Unobtanium", + "repo_url": "https://github.com/unobtanium-official/Unobtanium", + "versions": [ + "v0.11.0", + "v0.11.5" + ], + "xbridge_conf": "unobtanium--v0.11.0.conf", + "wallet_conf": "unobtanium--v0.11.0.conf" + }, + { + "blockchain": "Vertcoin", + "ticker": "VTC", + "ver_id": "vertcoin--0.14.0", + "ver_name": "Vertcoin", + "conf_name": "vertcoin.conf", + "dir_name_linux": "vertcoin", + "dir_name_mac": "Vertcoin", + "dir_name_win": "Vertcoin", + "repo_url": "https://github.com/vertcoin-project/vertcoin-core", + "versions": [ + "0.14.0", + "0.15.0", + "0.15.0.1" + ], + "xbridge_conf": "vertcoin--0.12.0.conf", + "wallet_conf": "vertcoin--0.13.0.conf" + }, + { + "blockchain": "Viacoin", + "ticker": "VIA", + "ver_id": "viacoin--v0.16.3", + "ver_name": "Viacoin", + "conf_name": "viacoin.conf", + "dir_name_linux": "viacoin", + "dir_name_mac": "Viacoin", + "dir_name_win": "Viacoin", + "repo_url": "https://github.com/viacoin/viacoin", + "versions": [ + "v0.16.3" + ], + "xbridge_conf": "viacoin--v0.15.1.conf", + "wallet_conf": "viacoin--v0.16.3.conf" + }, + { + "blockchain": "Vitae", + "ticker": "VITAE", + "ver_id": "vitae--v4.1.0.1", + "ver_name": "Vitae", + "conf_name": "vitae.conf", + "dir_name_linux": "vitae", + "dir_name_mac": "VITAE", + "dir_name_win": "VITAE", + "repo_url": "https://github.com/VitaeTeam/Vitae", + "versions": [ + "v4.4.0.3", + "v4.4.2" + ], + "xbridge_conf": "vitae--v4.1.0.1.conf", + "wallet_conf": "vitae--v4.1.0.1.conf" + }, + { + "blockchain": "VIVO", + "ticker": "VIVO", + "ver_id": "vivo--v0.12.1.8", + "ver_name": "VIVO", + "conf_name": "vivo.conf", + "dir_name_linux": "vivocore", + "dir_name_mac": "VivoCore", + "dir_name_win": "VivoCore", + "repo_url": "https://github.com/vivocoin/vivo", + "versions": [ + "v0.12.1.17" + ], + "xbridge_conf": "vivo--v0.12.1.8.conf", + "wallet_conf": "vivo--v0.12.1.8.conf" + }, + { + "blockchain": "Vsync", + "ticker": "VSX", + "ver_id": "vsync--v3.8.5.0", + "ver_name": "Vsync", + "conf_name": "vsync.conf", + "dir_name_linux": "vsync", + "dir_name_mac": "Vsync", + "dir_name_win": "Vsync", + "repo_url": "https://github.com/VsyncCrypto/VSX", + "versions": [ + "v3.8.7.6", + "v3.8.7.7" + ], + "xbridge_conf": "vsync--v3.8.5.0.conf", + "wallet_conf": "vsync--v3.8.5.0.conf" + }, + { + "blockchain": "Wagerr", + "ticker": "WGR", + "ver_id": "wagerr--1.5.0", + "ver_name": "Wagerr", + "conf_name": "wagerr.conf", + "dir_name_linux": "wagerr", + "dir_name_mac": "Wagerr", + "dir_name_win": "Wagerr", + "repo_url": "https://github.com/wagerr/wagerr", + "versions": [ + "v3.1.0" + ], + "xbridge_conf": "wagerr--1.5.0.conf", + "wallet_conf": "wagerr--1.5.0.conf" + }, + { + "blockchain": "Xaya", + "ticker": "CHI", + "ver_id": "xaya--v1.4.1", + "ver_name": "Xaya", + "conf_name": "xaya.conf", + "dir_name_linux": "xaya", + "dir_name_win": "Xaya", + "repo_url": "https://github.com/xaya/xaya/", + "versions": [ + "v1.4.1" + ], + "xbridge_conf": "xaya--v1.4.1.conf", + "wallet_conf": "xaya--v1.4.1.conf" + }, + { + "blockchain": "XCurrency", + "ticker": "XC", + "ver_id": "xcurrency--v3.0.05", + "ver_name": "XCurrency", + "conf_name": "xcurrency.conf", + "dir_name_linux": "xc3", + "dir_name_mac": "XC3", + "dir_name_win": "XC3", + "repo_url": "https://github.com/XCurrency/xc", + "versions": [ + "v3.0.05" + ], + "xbridge_conf": "xcurrency--v3.0.05.conf", + "wallet_conf": "xcurrency--v3.0.05.conf" + }, + { + "blockchain": "ZCoin", + "ticker": "XZC", + "ver_id": "zcoin--v0.13.6.4", + "ver_name": "ZCoin", + "conf_name": "zcoin.conf", + "dir_name_linux": "zcoin", + "dir_name_mac": "zcoin", + "dir_name_win": "zcoin", + "repo_url": "https://github.com/zcoinofficial/zcoin", + "versions": [ + "v0.14.0.1", + "v0.14.0.2" + ], + "xbridge_conf": "zcoin--v0.13.6.4.conf", + "wallet_conf": "zcoin--v0.13.6.4.conf" + }, + { + "blockchain": "ZENZO", + "ticker": "ZNZ", + "ver_id": "zenzo--v2.1.0", + "ver_name": "Zenzo", + "conf_name": "zenzo.conf", + "dir_name_linux": "zenzo", + "dir_name_mac": "Zenzo", + "dir_name_win": "Zenzo", + "repo_url": "https://github.com/ZENZO-Ecosystem/ZENZO-Core", + "versions": [ + "v2.1.0" + ], + "xbridge_conf": "zenzo--v2.1.0.conf", + "wallet_conf": "zenzo--v2.1.0.conf" + } +] diff --git a/blockchain-configuration-files/wallet-confs/ColossusXT--v1.2.3.conf b/blockchain-configuration-files/wallet-confs/ColossusXT--v1.2.3.conf new file mode 100644 index 00000000..b80b7f2c --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/ColossusXT--v1.2.3.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=51572 +rpcport=51573 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/iop--v6.2.3.conf b/blockchain-configuration-files/wallet-confs/Electra--2.1.1.conf similarity index 73% rename from blockchain-configuration-files/wallet-confs/iop--v6.2.3.conf rename to blockchain-configuration-files/wallet-confs/Electra--2.1.1.conf index a7731745..c56ca47f 100644 --- a/blockchain-configuration-files/wallet-confs/iop--v6.2.3.conf +++ b/blockchain-configuration-files/wallet-confs/Electra--2.1.1.conf @@ -1,8 +1,10 @@ server=1 listen=1 -rpcallowip=127.0.0.1 rpcuser= rpcpassword= -port=4877 -rpcport=4878 +rpcallowip=127.0.0.1 +port=5817 +rpcport=5788 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/GravityCoin--4.0.7.8.conf b/blockchain-configuration-files/wallet-confs/GravityCoin--4.0.7.8.conf new file mode 100644 index 00000000..30d1e86a --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/GravityCoin--4.0.7.8.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=29100 +rpcport=29200 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/Metrix--v4.0.3.conf b/blockchain-configuration-files/wallet-confs/Metrix--v4.0.3.conf new file mode 100644 index 00000000..f9f29495 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/Metrix--v4.0.3.conf @@ -0,0 +1,12 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=33830 +rpcport=33831 +txindex=1 + +# Legacy addresses must be used (address must begin with "M", not "b") +addresstype=legacy +changetype=legacy diff --git a/blockchain-configuration-files/wallet-confs/abet--v3.4.1.0.conf b/blockchain-configuration-files/wallet-confs/abet--v3.4.1.0.conf index 67b1eb36..ca5a7800 100644 --- a/blockchain-configuration-files/wallet-confs/abet--v3.4.1.0.conf +++ b/blockchain-configuration-files/wallet-confs/abet--v3.4.1.0.conf @@ -6,3 +6,5 @@ rpcallowip=127.0.0.1 port=2238 rpcport=2239 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/abosom--v1.0.0.conf b/blockchain-configuration-files/wallet-confs/abosom--v1.0.0.conf index 80b2d0f6..0f93c248 100644 --- a/blockchain-configuration-files/wallet-confs/abosom--v1.0.0.conf +++ b/blockchain-configuration-files/wallet-confs/abosom--v1.0.0.conf @@ -6,3 +6,5 @@ rpcallowip=127.0.0.1 port=23003 rpcport=23004 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/aeriumx--v2.2.conf b/blockchain-configuration-files/wallet-confs/aeriumx--v2.2.conf new file mode 100644 index 00000000..7f596575 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/aeriumx--v2.2.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=35407 +rpcport=35408 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/lux--v5.3.3.conf b/blockchain-configuration-files/wallet-confs/aprcoin--v3.1.0.conf similarity index 73% rename from blockchain-configuration-files/wallet-confs/lux--v5.3.3.conf rename to blockchain-configuration-files/wallet-confs/aprcoin--v3.1.0.conf index 056f7f50..ae32b249 100644 --- a/blockchain-configuration-files/wallet-confs/lux--v5.3.3.conf +++ b/blockchain-configuration-files/wallet-confs/aprcoin--v3.1.0.conf @@ -3,6 +3,8 @@ listen=1 rpcuser= rpcpassword= rpcallowip=127.0.0.1 -port=26969 -rpcport=26970 +port=3133 +rpcport=3132 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/verge--v6.0.2.conf b/blockchain-configuration-files/wallet-confs/argoneum--v1.4.0.0.conf similarity index 73% rename from blockchain-configuration-files/wallet-confs/verge--v6.0.2.conf rename to blockchain-configuration-files/wallet-confs/argoneum--v1.4.0.0.conf index aa85fa3d..5e0fcc82 100644 --- a/blockchain-configuration-files/wallet-confs/verge--v6.0.2.conf +++ b/blockchain-configuration-files/wallet-confs/argoneum--v1.4.0.0.conf @@ -3,6 +3,8 @@ listen=1 rpcuser= rpcpassword= rpcallowip=127.0.0.1 -port=21102 -rpcport=20102 +port=9898 +rpcport=9899 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/atbcoin--v1.1.0.conf b/blockchain-configuration-files/wallet-confs/atbcoin--v1.1.0.conf index 3c5732be..571b5b8a 100644 --- a/blockchain-configuration-files/wallet-confs/atbcoin--v1.1.0.conf +++ b/blockchain-configuration-files/wallet-confs/atbcoin--v1.1.0.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=15442 rpcport=15443 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/australiacash--v0.17.4.1.conf b/blockchain-configuration-files/wallet-confs/australiacash--v0.17.4.1.conf new file mode 100644 index 00000000..fc4dfb92 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/australiacash--v0.17.4.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=1986 +rpcport=1987 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/badcoin--v0.16.3-2.conf b/blockchain-configuration-files/wallet-confs/badcoin--v0.16.3-2.conf index 2c0bef24..33c2e695 100644 --- a/blockchain-configuration-files/wallet-confs/badcoin--v0.16.3-2.conf +++ b/blockchain-configuration-files/wallet-confs/badcoin--v0.16.3-2.conf @@ -1,12 +1,13 @@ -port=9012 -rpcport=9013 -rpcallowip=127.0.0.1 server=1 listen=1 rpcuser= rpcpassword= +rpcallowip=127.0.0.1 +port=9012 +rpcport=9013 txindex=1 -# Legacy addresses must be used (address must begin with "C", not "B") +# Legacy addresses must be used addresstype=legacy changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/bcz--v6.0.3.2.conf b/blockchain-configuration-files/wallet-confs/bcz--v6.0.3.2.conf new file mode 100644 index 00000000..98db973b --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/bcz--v6.0.3.2.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=29500 +rpcport=29501 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/bitcloud--2.1.0.1.1.conf b/blockchain-configuration-files/wallet-confs/bitcloud--2.1.0.1.1.conf index 92a5a347..5e402696 100644 --- a/blockchain-configuration-files/wallet-confs/bitcloud--2.1.0.1.1.conf +++ b/blockchain-configuration-files/wallet-confs/bitcloud--2.1.0.1.1.conf @@ -3,5 +3,8 @@ listen=1 rpcuser= rpcpassword= rpcallowip=127.0.0.1 -rpcport=8330 port=8329 +rpcport=8330 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/bitcoin--v0.15.1.conf b/blockchain-configuration-files/wallet-confs/bitcoin--v0.15.1.conf index b77ffec2..167bb862 100755 --- a/blockchain-configuration-files/wallet-confs/bitcoin--v0.15.1.conf +++ b/blockchain-configuration-files/wallet-confs/bitcoin--v0.15.1.conf @@ -1,8 +1,12 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=8333 -rpcport=8332 -txindex=1 +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=8333 +rpcport=8332 +txindex=1 + + + diff --git a/blockchain-configuration-files/wallet-confs/bitcoin--v0.16.0.conf b/blockchain-configuration-files/wallet-confs/bitcoin--v0.16.0.conf index b923e991..ad962b84 100644 --- a/blockchain-configuration-files/wallet-confs/bitcoin--v0.16.0.conf +++ b/blockchain-configuration-files/wallet-confs/bitcoin--v0.16.0.conf @@ -2,11 +2,14 @@ server=1 listen=1 rpcuser= rpcpassword= + rpcallowip=127.0.0.1 port=8333 rpcport=8332 txindex=1 -# Legacy addresses must be used (address must begin with "1", not "3") +# Legacy addresses must be used addresstype=legacy changetype=legacy + + diff --git a/blockchain-configuration-files/wallet-confs/bitcoin--v0.17.0.conf b/blockchain-configuration-files/wallet-confs/bitcoin--v0.17.0.conf index 5a9a10d3..0a539550 100644 --- a/blockchain-configuration-files/wallet-confs/bitcoin--v0.17.0.conf +++ b/blockchain-configuration-files/wallet-confs/bitcoin--v0.17.0.conf @@ -2,14 +2,17 @@ server=1 listen=1 rpcuser= rpcpassword= + rpcallowip=127.0.0.1 port=8333 rpcport=8332 txindex=1 -# Legacy addresses must be used (address must begin with "1", not "3") +# Legacy addresses must be used addresstype=legacy changetype=legacy + # Enable deprecated calls deprecatedrpc=signrawtransaction + diff --git a/blockchain-configuration-files/wallet-confs/bitcoin--v0.18.0.conf b/blockchain-configuration-files/wallet-confs/bitcoin--v0.18.0.conf new file mode 100644 index 00000000..ad962b84 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/bitcoin--v0.18.0.conf @@ -0,0 +1,15 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=8333 +rpcport=8332 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + + diff --git a/blockchain-configuration-files/wallet-confs/bitcoin--v0.19.0.conf b/blockchain-configuration-files/wallet-confs/bitcoin--v0.19.0.conf new file mode 100644 index 00000000..ad962b84 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/bitcoin--v0.19.0.conf @@ -0,0 +1,15 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=8333 +rpcport=8332 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + + diff --git a/blockchain-configuration-files/wallet-confs/bitcoin--v0.20.0.conf b/blockchain-configuration-files/wallet-confs/bitcoin--v0.20.0.conf new file mode 100644 index 00000000..ad962b84 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/bitcoin--v0.20.0.conf @@ -0,0 +1,15 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=8333 +rpcport=8332 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + + diff --git a/blockchain-configuration-files/wallet-confs/bitcoin--v0.21.0.conf b/blockchain-configuration-files/wallet-confs/bitcoin--v0.21.0.conf new file mode 100644 index 00000000..ad962b84 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/bitcoin--v0.21.0.conf @@ -0,0 +1,15 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=8333 +rpcport=8332 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + + diff --git a/blockchain-configuration-files/wallet-confs/bitcoincash--v0.21.11.conf b/blockchain-configuration-files/wallet-confs/bitcoincash--v0.21.11.conf index 095643c6..8527de3c 100644 --- a/blockchain-configuration-files/wallet-confs/bitcoincash--v0.21.11.conf +++ b/blockchain-configuration-files/wallet-confs/bitcoincash--v0.21.11.conf @@ -6,3 +6,5 @@ rpcallowip=127.0.0.1 port=10333 rpcport=10332 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/bitcoindiamond--v1.3.0.conf b/blockchain-configuration-files/wallet-confs/bitcoindiamond--v1.3.0.conf index 58d65f31..52bdeb75 100644 --- a/blockchain-configuration-files/wallet-confs/bitcoindiamond--v1.3.0.conf +++ b/blockchain-configuration-files/wallet-confs/bitcoindiamond--v1.3.0.conf @@ -1,12 +1,13 @@ server=1 listen=1 -rpcallowip=127.0.0.1 rpcuser= rpcpassword= +rpcallowip=127.0.0.1 port=7117 rpcport=7116 txindex=1 -# Legacy addresses must be used (address must begin with "1", not "3" or "bcd") +# Legacy addresses must be used addresstype=legacy changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/bitcoingold--v0.17.2.conf b/blockchain-configuration-files/wallet-confs/bitcoingold--v0.17.2.conf index cc3bbe4c..4387b7bd 100644 --- a/blockchain-configuration-files/wallet-confs/bitcoingold--v0.17.2.conf +++ b/blockchain-configuration-files/wallet-confs/bitcoingold--v0.17.2.conf @@ -7,6 +7,7 @@ port=11333 rpcport=11332 txindex=1 -# Legacy addresses must be used (address must begin with "G", not "A" or "btg") +# Legacy addresses must be used addresstype=legacy changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/bitcoinzero--5.0.7.8.conf b/blockchain-configuration-files/wallet-confs/bitcoinzero--5.0.7.8.conf new file mode 100644 index 00000000..5307867d --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/bitcoinzero--5.0.7.8.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=29301 +rpcport=29201 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/bitcore--0.90.8.8.1.conf b/blockchain-configuration-files/wallet-confs/bitcore--0.90.8.8.1.conf index adabac94..e4b74637 100644 --- a/blockchain-configuration-files/wallet-confs/bitcore--0.90.8.8.1.conf +++ b/blockchain-configuration-files/wallet-confs/bitcore--0.90.8.8.1.conf @@ -7,6 +7,7 @@ port=8555 rpcport=8556 txindex=1 -# Legacy addresses must be used (address must begin with "2", not "s") +# Legacy addresses must be used addresstype=legacy changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/bitgreen--v1.4.0.8.conf b/blockchain-configuration-files/wallet-confs/bitgreen--v1.4.0.8.conf index d3e5d905..36cc3af4 100644 --- a/blockchain-configuration-files/wallet-confs/bitgreen--v1.4.0.8.conf +++ b/blockchain-configuration-files/wallet-confs/bitgreen--v1.4.0.8.conf @@ -1,7 +1,10 @@ server=1 listen=1 -rpcallowip=127.0.0.1 rpcuser= rpcpassword= +rpcallowip=127.0.0.1 port=9334 rpcport=9335 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/bitmoney--2.2.0.2.conf b/blockchain-configuration-files/wallet-confs/bitmoney--2.2.0.2.conf index d598974d..42582820 100644 --- a/blockchain-configuration-files/wallet-confs/bitmoney--2.2.0.2.conf +++ b/blockchain-configuration-files/wallet-confs/bitmoney--2.2.0.2.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=49444 rpcport=49443 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/bitsend--0.14.2.0.1.conf b/blockchain-configuration-files/wallet-confs/bitsend--0.14.2.0.1.conf index 933a136c..035d7129 100644 --- a/blockchain-configuration-files/wallet-confs/bitsend--0.14.2.0.1.conf +++ b/blockchain-configuration-files/wallet-confs/bitsend--0.14.2.0.1.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=8886 rpcport=8800 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/blast--v2.2.0.conf b/blockchain-configuration-files/wallet-confs/blast--v2.2.0.conf new file mode 100644 index 00000000..d645f08c --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/blast--v2.2.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=64640 +rpcport=64639 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/blocknet--v4.2.0.conf b/blockchain-configuration-files/wallet-confs/blocknet--v4.2.0.conf new file mode 100644 index 00000000..4413f3f1 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/blocknet--v4.2.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=41412 +rpcport=41414 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/blocknet--v4.3.0.conf b/blockchain-configuration-files/wallet-confs/blocknet--v4.3.0.conf new file mode 100644 index 00000000..4413f3f1 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/blocknet--v4.3.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=41412 +rpcport=41414 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/blocktest--v4.3.3.conf b/blockchain-configuration-files/wallet-confs/blocktest--v4.3.3.conf new file mode 100644 index 00000000..d75e014d --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/blocktest--v4.3.3.conf @@ -0,0 +1,14 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +testnet=1 +txindex=1 + + + + +[test] +rpcallowip=127.0.0.1 +port=41474 +rpcport=41419 diff --git a/blockchain-configuration-files/wallet-confs/carebitcoin--v5.0.0.conf b/blockchain-configuration-files/wallet-confs/carebitcoin--v5.0.0.conf new file mode 100644 index 00000000..238744c3 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/carebitcoin--v5.0.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=9192 +rpcport=9193 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/cbdhealthnetwork--wallets-source-daemon.conf b/blockchain-configuration-files/wallet-confs/cbdhealthnetwork--wallets-source-daemon.conf index 8632d3f1..68a561fe 100644 --- a/blockchain-configuration-files/wallet-confs/cbdhealthnetwork--wallets-source-daemon.conf +++ b/blockchain-configuration-files/wallet-confs/cbdhealthnetwork--wallets-source-daemon.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=14542 rpcport=14541 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/chaincoin--v0.18.conf b/blockchain-configuration-files/wallet-confs/chaincoin--v0.18.conf new file mode 100644 index 00000000..a53cfb0c --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/chaincoin--v0.18.conf @@ -0,0 +1,13 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=11994 +rpcport=11995 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/civitas--v1.2.2.conf b/blockchain-configuration-files/wallet-confs/civitas--v1.2.2.conf index ea0fa0fc..626d5059 100644 --- a/blockchain-configuration-files/wallet-confs/civitas--v1.2.2.conf +++ b/blockchain-configuration-files/wallet-confs/civitas--v1.2.2.conf @@ -1,9 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -enableaccounts=1 -staking=0 -port=18843 -rpcport=28843 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=18843 +rpcport=28843 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/crave--v2.5.2.conf b/blockchain-configuration-files/wallet-confs/crave--v2.5.2.conf new file mode 100644 index 00000000..b6564406 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/crave--v2.5.2.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=48882 +rpcport=48883 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/dash--v0.12.2.3.conf b/blockchain-configuration-files/wallet-confs/dash--v19.2.0.conf old mode 100755 new mode 100644 similarity index 71% rename from blockchain-configuration-files/wallet-confs/dash--v0.12.2.3.conf rename to blockchain-configuration-files/wallet-confs/dash--v19.2.0.conf index 63fb5fb5..923607ca --- a/blockchain-configuration-files/wallet-confs/dash--v0.12.2.3.conf +++ b/blockchain-configuration-files/wallet-confs/dash--v19.2.0.conf @@ -1,7 +1,12 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=9999 -rpcport=9998 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=9999 +rpcport=9998 +txindex=1 + + + diff --git a/blockchain-configuration-files/wallet-confs/denarius--v3.3.9.3.conf b/blockchain-configuration-files/wallet-confs/denarius--v3.3.9.3.conf index b77550ca..f869e724 100644 --- a/blockchain-configuration-files/wallet-confs/denarius--v3.3.9.3.conf +++ b/blockchain-configuration-files/wallet-confs/denarius--v3.3.9.3.conf @@ -1,7 +1,10 @@ +server=1 +listen=1 rpcuser= rpcpassword= -rpcport=32369 -port=33369 -listen=1 -server=1 rpcallowip=127.0.0.1 +port=33369 +rpcport=32369 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/desire--Desire-v.0.12.2.2.conf b/blockchain-configuration-files/wallet-confs/desire--Desire-v.0.12.2.2.conf index 9f33582d..7bc57cff 100644 --- a/blockchain-configuration-files/wallet-confs/desire--Desire-v.0.12.2.2.conf +++ b/blockchain-configuration-files/wallet-confs/desire--Desire-v.0.12.2.2.conf @@ -1,9 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -enableaccounts=1 -staking=0 -port=9919 -rpcport=9918 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=9919 +rpcport=9918 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/devault--v1.1.7.conf b/blockchain-configuration-files/wallet-confs/devault--v1.1.7.conf index aba7c69e..e803e7aa 100644 --- a/blockchain-configuration-files/wallet-confs/devault--v1.1.7.conf +++ b/blockchain-configuration-files/wallet-confs/devault--v1.1.7.conf @@ -6,3 +6,5 @@ rpcallowip=127.0.0.1 port=33039 rpcport=3339 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/diamond--v3.0.1.3.conf b/blockchain-configuration-files/wallet-confs/diamond--v3.0.1.3.conf new file mode 100644 index 00000000..75d88961 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/diamond--v3.0.1.3.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=17771 +rpcport=17772 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/digibyte--v6.16.2.conf b/blockchain-configuration-files/wallet-confs/digibyte--v7.17.2.conf old mode 100755 new mode 100644 similarity index 93% rename from blockchain-configuration-files/wallet-confs/digibyte--v6.16.2.conf rename to blockchain-configuration-files/wallet-confs/digibyte--v7.17.2.conf index 8231aa2b..7d6b1c07 --- a/blockchain-configuration-files/wallet-confs/digibyte--v6.16.2.conf +++ b/blockchain-configuration-files/wallet-confs/digibyte--v7.17.2.conf @@ -1,11 +1,13 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=12024 -rpcport=14022 -txindex=1 - -# Enable deprecated calls -deprecatedrpc=signrawtransaction +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=12024 +rpcport=14022 +txindex=1 + + + +# Enable deprecated calls +deprecatedrpc=signrawtransaction diff --git a/blockchain-configuration-files/wallet-confs/digiwage--v1.2.1.conf b/blockchain-configuration-files/wallet-confs/digiwage--v1.2.1.conf new file mode 100644 index 00000000..0bb4f3a8 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/digiwage--v1.2.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=46003 +rpcport=46002 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/pivx--v3.1.0.2.conf b/blockchain-configuration-files/wallet-confs/divi--v1.1.2.conf old mode 100755 new mode 100644 similarity index 73% rename from blockchain-configuration-files/wallet-confs/pivx--v3.1.0.2.conf rename to blockchain-configuration-files/wallet-confs/divi--v1.1.2.conf index 0a8e8edb..ca2cdf7b --- a/blockchain-configuration-files/wallet-confs/pivx--v3.1.0.2.conf +++ b/blockchain-configuration-files/wallet-confs/divi--v1.1.2.conf @@ -1,7 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=51472 -rpcport=51473 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=51472 +rpcport=51473 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/dogecash--3.0.0.conf b/blockchain-configuration-files/wallet-confs/dogecash--5.4.4.conf similarity index 84% rename from blockchain-configuration-files/wallet-confs/dogecash--3.0.0.conf rename to blockchain-configuration-files/wallet-confs/dogecash--5.4.4.conf index 3442fb33..d39a96d4 100644 --- a/blockchain-configuration-files/wallet-confs/dogecash--3.0.0.conf +++ b/blockchain-configuration-files/wallet-confs/dogecash--5.4.4.conf @@ -2,6 +2,11 @@ server=1 listen=1 rpcuser= rpcpassword= + rpcallowip=127.0.0.1 port=6740 rpcport=6783 +txindex=1 + + + diff --git a/blockchain-configuration-files/wallet-confs/dogecoin--v1.10.0-dogeparty.conf b/blockchain-configuration-files/wallet-confs/dogecoin--v1.10.0-dogeparty.conf deleted file mode 100755 index f7fab069..00000000 --- a/blockchain-configuration-files/wallet-confs/dogecoin--v1.10.0-dogeparty.conf +++ /dev/null @@ -1,7 +0,0 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=22556 -rpcport=22555 \ No newline at end of file diff --git a/blockchain-configuration-files/wallet-confs/dogecoin--v1.10.0.conf b/blockchain-configuration-files/wallet-confs/dogecoin--v1.14.5.conf similarity index 95% rename from blockchain-configuration-files/wallet-confs/dogecoin--v1.10.0.conf rename to blockchain-configuration-files/wallet-confs/dogecoin--v1.14.5.conf index 3ff5b150..db22e78e 100644 --- a/blockchain-configuration-files/wallet-confs/dogecoin--v1.10.0.conf +++ b/blockchain-configuration-files/wallet-confs/dogecoin--v1.14.5.conf @@ -2,7 +2,11 @@ server=1 listen=1 rpcuser= rpcpassword= + rpcallowip=127.0.0.1 port=22556 rpcport=22555 txindex=1 + + + diff --git a/blockchain-configuration-files/wallet-confs/dynamic--v2.4.3.0.conf b/blockchain-configuration-files/wallet-confs/dynamic--v2.4.3.0.conf new file mode 100644 index 00000000..346f6da3 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/dynamic--v2.4.3.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=31300 +rpcport=33350 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/einsteinium--v0.13.5.0.conf b/blockchain-configuration-files/wallet-confs/einsteinium--v0.13.5.0.conf new file mode 100644 index 00000000..de27db64 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/einsteinium--v0.13.5.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=41878 +rpcport=41879 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/emercoin--v0.7.10emc.conf b/blockchain-configuration-files/wallet-confs/emercoin--v0.7.10emc.conf index 6baa36eb..bb5c6725 100644 --- a/blockchain-configuration-files/wallet-confs/emercoin--v0.7.10emc.conf +++ b/blockchain-configuration-files/wallet-confs/emercoin--v0.7.10emc.conf @@ -1,7 +1,10 @@ server=1 listen=1 -rpcallowip=127.0.0.1 rpcuser= rpcpassword= +rpcallowip=127.0.0.1 port=6661 rpcport=6662 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/eternity--v0.12.1.7.conf b/blockchain-configuration-files/wallet-confs/eternity--v0.12.1.7.conf index b61446ac..d73ae650 100644 --- a/blockchain-configuration-files/wallet-confs/eternity--v0.12.1.7.conf +++ b/blockchain-configuration-files/wallet-confs/eternity--v0.12.1.7.conf @@ -1,9 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -enableaccounts=1 -staking=0 -port=4855 -rpcport=4854 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=4855 +rpcport=4854 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/experiencepoints--v3.4.0.3.conf b/blockchain-configuration-files/wallet-confs/experiencepoints--v3.4.0.3.conf index 947319da..5750562f 100644 --- a/blockchain-configuration-files/wallet-confs/experiencepoints--v3.4.0.3.conf +++ b/blockchain-configuration-files/wallet-confs/experiencepoints--v3.4.0.3.conf @@ -6,3 +6,5 @@ rpcallowip=127.0.0.1 port=19324 rpcport=19325 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/faircoin--v2.0.1.conf b/blockchain-configuration-files/wallet-confs/faircoin--v2.0.1.conf new file mode 100644 index 00000000..fbc72355 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/faircoin--v2.0.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=40404 +rpcport=40405 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/fantasygold--2.19.1.conf b/blockchain-configuration-files/wallet-confs/fantasygold--2.19.1.conf new file mode 100644 index 00000000..741f1269 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/fantasygold--2.19.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=57814 +rpcport=57810 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/flo--v0.15.2.0.conf b/blockchain-configuration-files/wallet-confs/flo--v0.15.2.0.conf new file mode 100644 index 00000000..e4e10c3e --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/flo--v0.15.2.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=7312 +rpcport=7313 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/fujicoin--fujicoin-v0.18.0.conf b/blockchain-configuration-files/wallet-confs/fujicoin--fujicoin-v0.18.0.conf new file mode 100644 index 00000000..e34202e4 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/fujicoin--fujicoin-v0.18.0.conf @@ -0,0 +1,13 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=3777 +rpcport=3776 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/galactrum--v1.4.0.conf b/blockchain-configuration-files/wallet-confs/galactrum--v1.4.0.conf index 4dd4df54..7df346ce 100644 --- a/blockchain-configuration-files/wallet-confs/galactrum--v1.4.0.conf +++ b/blockchain-configuration-files/wallet-confs/galactrum--v1.4.0.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=6270 rpcport=6269 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/galilel--v3.4.0.conf b/blockchain-configuration-files/wallet-confs/galilel--v3.4.0.conf new file mode 100644 index 00000000..45db5863 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/galilel--v3.4.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=36001 +rpcport=36002 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/gamblecoin--1.1.4.conf b/blockchain-configuration-files/wallet-confs/gamblecoin--1.1.4.conf index ab09f2a7..fce496a0 100644 --- a/blockchain-configuration-files/wallet-confs/gamblecoin--1.1.4.conf +++ b/blockchain-configuration-files/wallet-confs/gamblecoin--1.1.4.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=12000 rpcport=12010 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/geekcash--v1.3.0.1.conf b/blockchain-configuration-files/wallet-confs/geekcash--v1.3.0.1.conf index 7863d809..d9edba6b 100644 --- a/blockchain-configuration-files/wallet-confs/geekcash--v1.3.0.1.conf +++ b/blockchain-configuration-files/wallet-confs/geekcash--v1.3.0.1.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=6889 rpcport=6890 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/gincoin--v1.3.0.0.conf b/blockchain-configuration-files/wallet-confs/gincoin--v1.3.0.0.conf new file mode 100644 index 00000000..68f584f5 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/gincoin--v1.3.0.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=10111 +rpcport=10211 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/gobyte--v0.12.2.4.conf b/blockchain-configuration-files/wallet-confs/gobyte--v0.12.2.4.conf deleted file mode 100755 index 4698809e..00000000 --- a/blockchain-configuration-files/wallet-confs/gobyte--v0.12.2.4.conf +++ /dev/null @@ -1,9 +0,0 @@ -server=1 -listen=1 -rpcallowip=127.0.0.1 -rpcuser= -rpcpassword= -enableaccounts=1 -staking=0 -port=12455 -rpcport=12454 \ No newline at end of file diff --git a/blockchain-configuration-files/wallet-confs/gobyte--v0.16.2.1.conf b/blockchain-configuration-files/wallet-confs/gobyte--v0.16.2.1.conf new file mode 100644 index 00000000..d58223e0 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/gobyte--v0.16.2.1.conf @@ -0,0 +1,12 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=12455 +rpcport=12454 +txindex=1 + + + diff --git a/blockchain-configuration-files/wallet-confs/goldcoin--v0.14.7.conf b/blockchain-configuration-files/wallet-confs/goldcoin--v0.14.7.conf new file mode 100644 index 00000000..a92ad4d2 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/goldcoin--v0.14.7.conf @@ -0,0 +1,11 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8121 +rpcport=8122 + +# Legacy addresses must be used (address must begin with "E", not "D") +addresstype=legacy +changetype=legacy diff --git a/blockchain-configuration-files/wallet-confs/hash--v1.5.1.conf b/blockchain-configuration-files/wallet-confs/hash--v1.5.1.conf new file mode 100644 index 00000000..7288ea2f --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/hash--v1.5.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=4188 +rpcport=4189 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/hatch--v0.14.0.3.conf b/blockchain-configuration-files/wallet-confs/hatch--v0.14.0.3.conf index 04f4fd92..c77d0804 100644 --- a/blockchain-configuration-files/wallet-confs/hatch--v0.14.0.3.conf +++ b/blockchain-configuration-files/wallet-confs/hatch--v0.14.0.3.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=8885 rpcport=8884 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/helium--v0.16.0.conf b/blockchain-configuration-files/wallet-confs/helium--v0.16.0.conf index 0756b6e4..503d55a4 100644 --- a/blockchain-configuration-files/wallet-confs/helium--v0.16.0.conf +++ b/blockchain-configuration-files/wallet-confs/helium--v0.16.0.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=9009 rpcport=9019 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/htmlcoin--v2.5.0.conf b/blockchain-configuration-files/wallet-confs/htmlcoin--v2.5.0.conf new file mode 100644 index 00000000..ef1eede8 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/htmlcoin--v2.5.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=4890 +rpcport=4889 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/innova--v4.3.8.8.conf b/blockchain-configuration-files/wallet-confs/innova--v4.3.8.8.conf new file mode 100644 index 00000000..d9f501c3 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/innova--v4.3.8.8.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=14530 +rpcport=14531 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/iop--v6.1.0.conf b/blockchain-configuration-files/wallet-confs/iop--v6.1.0.conf deleted file mode 100755 index d2b2d427..00000000 --- a/blockchain-configuration-files/wallet-confs/iop--v6.1.0.conf +++ /dev/null @@ -1,7 +0,0 @@ -server=1 -listen=1 -rpcallowip=127.0.0.1 -rpcuser= -rpcpassword= -port=4877 -rpcport=8337 \ No newline at end of file diff --git a/blockchain-configuration-files/wallet-confs/ixcoin--v0.14.1.conf b/blockchain-configuration-files/wallet-confs/ixcoin--v0.14.1.conf index 48b9f70f..5846591f 100644 --- a/blockchain-configuration-files/wallet-confs/ixcoin--v0.14.1.conf +++ b/blockchain-configuration-files/wallet-confs/ixcoin--v0.14.1.conf @@ -1,8 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=8337 -rpcport=8338 -txindex=1 +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8337 +rpcport=8338 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/jiyo--v.2.1.conf b/blockchain-configuration-files/wallet-confs/jiyo--v.2.1.conf index 2690c25a..4afe3475 100644 --- a/blockchain-configuration-files/wallet-confs/jiyo--v.2.1.conf +++ b/blockchain-configuration-files/wallet-confs/jiyo--v.2.1.conf @@ -3,7 +3,8 @@ listen=1 rpcuser= rpcpassword= rpcallowip=127.0.0.1 -enableaccounts=1 -staking=0 port=6080 rpcport=6081 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/klks--v2.8.0.conf b/blockchain-configuration-files/wallet-confs/klks--v2.8.0.conf new file mode 100644 index 00000000..acc953d2 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/klks--v2.8.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=51121 +rpcport=51122 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/kreds--v1.0.0.6.conf b/blockchain-configuration-files/wallet-confs/kreds--v1.0.0.6.conf new file mode 100644 index 00000000..33794195 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/kreds--v1.0.0.6.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=3950 +rpcport=3850 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/kyd--v3.2.1.conf b/blockchain-configuration-files/wallet-confs/kyd--v3.2.1.conf new file mode 100644 index 00000000..06b28c6c --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/kyd--v3.2.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=3434 +rpcport=3435 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/kzcash--v0.1.9.1.conf b/blockchain-configuration-files/wallet-confs/kzcash--v0.1.9.1.conf index f1b0efb8..11f6515e 100644 --- a/blockchain-configuration-files/wallet-confs/kzcash--v0.1.9.1.conf +++ b/blockchain-configuration-files/wallet-confs/kzcash--v0.1.9.1.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=8277 rpcport=8276 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/lbrycrd--v0.17.3.1.conf b/blockchain-configuration-files/wallet-confs/lbrycrd--v0.17.3.1.conf new file mode 100644 index 00000000..fde0da0f --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/lbrycrd--v0.17.3.1.conf @@ -0,0 +1,13 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=9246 +rpcport=9245 +txindex=1 + + + +# Enable deprecated calls +deprecatedrpc=signrawtransaction diff --git a/blockchain-configuration-files/wallet-confs/litecoin--v0.15.1.conf b/blockchain-configuration-files/wallet-confs/litecoin--v0.15.1.conf index 8efbff95..8f03329d 100755 --- a/blockchain-configuration-files/wallet-confs/litecoin--v0.15.1.conf +++ b/blockchain-configuration-files/wallet-confs/litecoin--v0.15.1.conf @@ -1,8 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=9333 -rpcport=9332 -txindex=1 +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=9333 +rpcport=9332 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/litecoin--v0.16.0.conf b/blockchain-configuration-files/wallet-confs/litecoin--v0.16.0.conf index 703f13bf..4d51db45 100644 --- a/blockchain-configuration-files/wallet-confs/litecoin--v0.16.0.conf +++ b/blockchain-configuration-files/wallet-confs/litecoin--v0.16.0.conf @@ -7,6 +7,7 @@ port=9333 rpcport=9332 txindex=1 -# Legacy addresses must be used (address must begin with "L", not "M") +# Legacy addresses must be used addresstype=legacy changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/litecoin--v0.17.1.conf b/blockchain-configuration-files/wallet-confs/litecoin--v0.17.1.conf index 36a02a77..4d51db45 100644 --- a/blockchain-configuration-files/wallet-confs/litecoin--v0.17.1.conf +++ b/blockchain-configuration-files/wallet-confs/litecoin--v0.17.1.conf @@ -5,10 +5,9 @@ rpcpassword= rpcallowip=127.0.0.1 port=9333 rpcport=9332 +txindex=1 -# Legacy addresses must be used (address must begin with "L", not "M") +# Legacy addresses must be used addresstype=legacy changetype=legacy -# Enable deprecated calls -deprecatedrpc=signrawtransaction diff --git a/blockchain-configuration-files/wallet-confs/litecoin--v0.18.1.conf b/blockchain-configuration-files/wallet-confs/litecoin--v0.18.1.conf index 703f13bf..4d51db45 100644 --- a/blockchain-configuration-files/wallet-confs/litecoin--v0.18.1.conf +++ b/blockchain-configuration-files/wallet-confs/litecoin--v0.18.1.conf @@ -7,6 +7,7 @@ port=9333 rpcport=9332 txindex=1 -# Legacy addresses must be used (address must begin with "L", not "M") +# Legacy addresses must be used addresstype=legacy changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/litecoin--v0.21.2.conf b/blockchain-configuration-files/wallet-confs/litecoin--v0.21.2.conf new file mode 100644 index 00000000..611494cd --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/litecoin--v0.21.2.conf @@ -0,0 +1,18 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=9333 +rpcport=9332 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + + +# Enable rpcserialversion +rpcserialversion=1 + diff --git a/blockchain-configuration-files/wallet-confs/lynx--v0.16.3.9.conf b/blockchain-configuration-files/wallet-confs/lynx--v0.16.3.9.conf new file mode 100644 index 00000000..a3b2f7d9 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/lynx--v0.16.3.9.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=22566 +rpcport=22567 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/machinecoin--v0.16.3.conf b/blockchain-configuration-files/wallet-confs/machinecoin--v0.16.3.conf new file mode 100644 index 00000000..6284ff5a --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/machinecoin--v0.16.3.conf @@ -0,0 +1,13 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=40333 +rpcport=40332 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/mktcoin--0.15.0.3.conf b/blockchain-configuration-files/wallet-confs/mktcoin--0.15.0.3.conf new file mode 100644 index 00000000..683836ff --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/mktcoin--0.15.0.3.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=9275 +rpcport=9276 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/mnpcoin--v1.2.5.conf b/blockchain-configuration-files/wallet-confs/mnpcoin--v1.2.5.conf index 1bbf9b0b..b0f2e1e4 100644 --- a/blockchain-configuration-files/wallet-confs/mnpcoin--v1.2.5.conf +++ b/blockchain-configuration-files/wallet-confs/mnpcoin--v1.2.5.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=13371 rpcport=13373 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/monacoin--monacoin-0.17.1.conf b/blockchain-configuration-files/wallet-confs/monacoin--monacoin-0.17.1.conf index e4092833..eb5a7450 100644 --- a/blockchain-configuration-files/wallet-confs/monacoin--monacoin-0.17.1.conf +++ b/blockchain-configuration-files/wallet-confs/monacoin--monacoin-0.17.1.conf @@ -7,9 +7,10 @@ port=9401 rpcport=9402 txindex=1 -# Legacy addresses must be used (address must begin with "M", not "P") +# Legacy addresses must be used addresstype=legacy changetype=legacy + # Enable deprecated calls deprecatedrpc=signrawtransaction diff --git a/blockchain-configuration-files/wallet-confs/monetaryunit--v2.0.2.conf b/blockchain-configuration-files/wallet-confs/monetaryunit--v2.0.2.conf deleted file mode 100644 index 88f41ae9..00000000 --- a/blockchain-configuration-files/wallet-confs/monetaryunit--v2.0.2.conf +++ /dev/null @@ -1,7 +0,0 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=19683 -rpcport=29683 diff --git a/blockchain-configuration-files/wallet-confs/monetaryunit--v2.3.0.conf b/blockchain-configuration-files/wallet-confs/monetaryunit--v2.3.0.conf new file mode 100644 index 00000000..b10f33ed --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/monetaryunit--v2.3.0.conf @@ -0,0 +1,12 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= + +rpcallowip=127.0.0.1 +port=19687 +rpcport=19688 +txindex=1 + + + diff --git a/blockchain-configuration-files/wallet-confs/monoeci--v0.12.2.3.conf b/blockchain-configuration-files/wallet-confs/monoeci--v0.12.2.3.conf index b2a12fc2..bb245c64 100644 --- a/blockchain-configuration-files/wallet-confs/monoeci--v0.12.2.3.conf +++ b/blockchain-configuration-files/wallet-confs/monoeci--v0.12.2.3.conf @@ -1,7 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=24157 -rpcport=24156 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=24157 +rpcport=24156 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/myriadcoin--v0.16.4.1.conf b/blockchain-configuration-files/wallet-confs/myriadcoin--v0.16.4.1.conf new file mode 100644 index 00000000..77c0ed76 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/myriadcoin--v0.16.4.1.conf @@ -0,0 +1,13 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=10888 +rpcport=10889 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/namecoin--nc0.13.99-name-tab-beta1.conf b/blockchain-configuration-files/wallet-confs/namecoin--nc0.13.99-name-tab-beta1.conf index c09962e7..b32fbcff 100755 --- a/blockchain-configuration-files/wallet-confs/namecoin--nc0.13.99-name-tab-beta1.conf +++ b/blockchain-configuration-files/wallet-confs/namecoin--nc0.13.99-name-tab-beta1.conf @@ -1,8 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=8334 -rpcport=8336 -txindex=1 +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8334 +rpcport=8336 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/nativecoin--1.2.conf b/blockchain-configuration-files/wallet-confs/nativecoin--1.2.conf new file mode 100644 index 00000000..ec21c414 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/nativecoin--1.2.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=16740 +rpcport=16741 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/nix--v3.0.7.conf b/blockchain-configuration-files/wallet-confs/nix--v3.0.7.conf new file mode 100644 index 00000000..4d6ddbac --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/nix--v3.0.7.conf @@ -0,0 +1,13 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=6214 +rpcport=6215 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/nodium--3.0.6.conf b/blockchain-configuration-files/wallet-confs/nodium--3.0.6.conf index 2d8a2e71..2d1e909c 100644 --- a/blockchain-configuration-files/wallet-confs/nodium--3.0.6.conf +++ b/blockchain-configuration-files/wallet-confs/nodium--3.0.6.conf @@ -1,7 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=6250 -rpcport=56000 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=6250 +rpcport=56000 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/noir--v2.1.0.9.conf b/blockchain-configuration-files/wallet-confs/noir--v2.1.0.9.conf new file mode 100644 index 00000000..750f3863 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/noir--v2.1.0.9.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8255 +rpcport=8822 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/northern--3.3.1.conf b/blockchain-configuration-files/wallet-confs/northern--3.3.1.conf new file mode 100644 index 00000000..071bb4fa --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/northern--3.3.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=6942 +rpcport=6943 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/nyerium--v1.0.3.conf b/blockchain-configuration-files/wallet-confs/nyerium--v1.0.3.conf index c760f899..a71ebb27 100644 --- a/blockchain-configuration-files/wallet-confs/nyerium--v1.0.3.conf +++ b/blockchain-configuration-files/wallet-confs/nyerium--v1.0.3.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=57418 rpcport=24875 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/nyx--v2.0.0.0.conf b/blockchain-configuration-files/wallet-confs/nyx--v2.0.0.0.conf index 8ad5a9a0..41ab1584 100644 --- a/blockchain-configuration-files/wallet-confs/nyx--v2.0.0.0.conf +++ b/blockchain-configuration-files/wallet-confs/nyx--v2.0.0.0.conf @@ -1,7 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=4330 -rpcport=4331 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=4330 +rpcport=4331 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/odin--v1.6.6.conf b/blockchain-configuration-files/wallet-confs/odin--v1.6.6.conf new file mode 100644 index 00000000..5e39ec2b --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/odin--v1.6.6.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=22100 +rpcport=22101 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/ohmc--2.4.0.0.conf b/blockchain-configuration-files/wallet-confs/ohmc--2.4.0.0.conf new file mode 100644 index 00000000..201d1e27 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/ohmc--2.4.0.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=52020 +rpcport=52021 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/opcoinx--v2.0.0.conf b/blockchain-configuration-files/wallet-confs/opcoinx--v2.0.0.conf index c7716f34..63c16fc5 100644 --- a/blockchain-configuration-files/wallet-confs/opcoinx--v2.0.0.conf +++ b/blockchain-configuration-files/wallet-confs/opcoinx--v2.0.0.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=18051 rpcport=18052 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/pacglobal--v0.15-da839021c.conf b/blockchain-configuration-files/wallet-confs/pacglobal--v0.15-da839021c.conf index 3cbb56e0..db8c46ca 100644 --- a/blockchain-configuration-files/wallet-confs/pacglobal--v0.15-da839021c.conf +++ b/blockchain-configuration-files/wallet-confs/pacglobal--v0.15-da839021c.conf @@ -1,8 +1,10 @@ server=1 listen=1 -rpcallowip=127.0.0.1 rpcuser= rpcpassword= -rpcport=7111 +rpcallowip=127.0.0.1 port=7112 +rpcport=7111 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/particl--v0.19.2.5.conf b/blockchain-configuration-files/wallet-confs/particl--v0.19.2.5.conf new file mode 100644 index 00000000..eed20603 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/particl--v0.19.2.5.conf @@ -0,0 +1,10 @@ +listen=1 +server=1 +rpcallowip=127.0.0.1 +rpcuser= +rpcpassword= +port=51738 +rpcport=51735 +addresstype=legacy +changetype=legacy +txindex=1 diff --git a/blockchain-configuration-files/wallet-confs/phore--v1.3.0.conf b/blockchain-configuration-files/wallet-confs/phore--v1.3.0.conf deleted file mode 100755 index f5101384..00000000 --- a/blockchain-configuration-files/wallet-confs/phore--v1.3.0.conf +++ /dev/null @@ -1,7 +0,0 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=11771 -rpcport=11772 \ No newline at end of file diff --git a/blockchain-configuration-files/wallet-confs/phore--v1.3.3.1.conf b/blockchain-configuration-files/wallet-confs/phore--v1.7.1.conf similarity index 87% rename from blockchain-configuration-files/wallet-confs/phore--v1.3.3.1.conf rename to blockchain-configuration-files/wallet-confs/phore--v1.7.1.conf index 346c5dfb..7ed1994c 100644 --- a/blockchain-configuration-files/wallet-confs/phore--v1.3.3.1.conf +++ b/blockchain-configuration-files/wallet-confs/phore--v1.7.1.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=11771 rpcport=11772 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/pivx--v5.5.0.conf b/blockchain-configuration-files/wallet-confs/pivx--v5.5.0.conf index 33c26f8b..a52b965a 100644 --- a/blockchain-configuration-files/wallet-confs/pivx--v5.5.0.conf +++ b/blockchain-configuration-files/wallet-confs/pivx--v5.5.0.conf @@ -2,7 +2,11 @@ server=1 listen=1 rpcuser= rpcpassword= -rpcallowip=0.0.0.0/0 + +rpcallowip=127.0.0.1 port=51472 rpcport=51473 txindex=1 + + + diff --git a/blockchain-configuration-files/wallet-confs/placeh--2.0.30.5.conf b/blockchain-configuration-files/wallet-confs/placeh--2.0.30.5.conf index 0456fe8d..6bc94c3b 100644 --- a/blockchain-configuration-files/wallet-confs/placeh--2.0.30.5.conf +++ b/blockchain-configuration-files/wallet-confs/placeh--2.0.30.5.conf @@ -1,7 +1,10 @@ server=1 listen=1 -rpcallowip=127.0.0.1 rpcuser= rpcpassword= +rpcallowip=127.0.0.1 port=6608 rpcport=6706 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/polis--v1.3.1.conf b/blockchain-configuration-files/wallet-confs/polis--v1.3.1.conf deleted file mode 100644 index a7abc84b..00000000 --- a/blockchain-configuration-files/wallet-confs/polis--v1.3.1.conf +++ /dev/null @@ -1,9 +0,0 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -enableaccounts=1 -staking=0 -port=24126 -rpcport=24127 \ No newline at end of file diff --git a/blockchain-configuration-files/wallet-confs/pura--v1.3.7.conf b/blockchain-configuration-files/wallet-confs/pura--v1.3.7.conf new file mode 100644 index 00000000..1450cd96 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/pura--v1.3.7.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=44444 +rpcport=55555 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/qbiccoin--v1.1.conf b/blockchain-configuration-files/wallet-confs/qbiccoin--v1.1.conf new file mode 100644 index 00000000..e60a31e6 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/qbiccoin--v1.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=37195 +rpcport=37196 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/qtum--mainnet-ignition-v0.19.1.conf b/blockchain-configuration-files/wallet-confs/qtum--mainnet-ignition-v0.19.1.conf new file mode 100644 index 00000000..47225293 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/qtum--mainnet-ignition-v0.19.1.conf @@ -0,0 +1,13 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=3888 +rpcport=3889 +txindex=1 + + + +# Enable deprecated calls +deprecatedrpc=signrawtransaction diff --git a/blockchain-configuration-files/wallet-confs/rapids--v2.0.0.0-b784ecbf4d.conf b/blockchain-configuration-files/wallet-confs/rapids--v2.0.0.0-b784ecbf4d.conf new file mode 100644 index 00000000..2b2d5d71 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/rapids--v2.0.0.0-b784ecbf4d.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=28732 +rpcport=28731 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/rapture--v1.1.2.2.conf b/blockchain-configuration-files/wallet-confs/rapture--v1.1.2.2.conf index af187f98..ec9cc2fe 100644 --- a/blockchain-configuration-files/wallet-confs/rapture--v1.1.2.2.conf +++ b/blockchain-configuration-files/wallet-confs/rapture--v1.1.2.2.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=14777 rpcport=14776 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/raven--v0.15.99.0.conf b/blockchain-configuration-files/wallet-confs/raven--v4.1.0.conf similarity index 73% rename from blockchain-configuration-files/wallet-confs/raven--v0.15.99.0.conf rename to blockchain-configuration-files/wallet-confs/raven--v4.1.0.conf index 26982763..e48a3be0 100644 --- a/blockchain-configuration-files/wallet-confs/raven--v0.15.99.0.conf +++ b/blockchain-configuration-files/wallet-confs/raven--v4.1.0.conf @@ -1,7 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=8767 -rpcport=8766 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8767 +rpcport=8766 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/reecore--v1.4.2.2.conf b/blockchain-configuration-files/wallet-confs/reecore--v1.4.2.2.conf index 470de870..39137832 100644 --- a/blockchain-configuration-files/wallet-confs/reecore--v1.4.2.2.conf +++ b/blockchain-configuration-files/wallet-confs/reecore--v1.4.2.2.conf @@ -6,3 +6,5 @@ rpcallowip=127.0.0.1 port=43210 rpcport=43211 txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/scribe--v0.2.conf b/blockchain-configuration-files/wallet-confs/scribe--v0.2.conf index e56d01d8..1d2a99fd 100644 --- a/blockchain-configuration-files/wallet-confs/scribe--v0.2.conf +++ b/blockchain-configuration-files/wallet-confs/scribe--v0.2.conf @@ -1,7 +1,10 @@ server=1 listen=1 -rpcallowip=127.0.0.1 rpcuser= rpcpassword= +rpcallowip=127.0.0.1 port=8802 rpcport=8801 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/securecloud--v2.5.1.1.conf b/blockchain-configuration-files/wallet-confs/securecloud--v2.5.1.1.conf new file mode 100644 index 00000000..9460e1d8 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/securecloud--v2.5.1.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=9190 +rpcport=9191 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/send--1.2.0.5.conf b/blockchain-configuration-files/wallet-confs/send--1.2.0.5.conf new file mode 100644 index 00000000..8f900e72 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/send--1.2.0.5.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=50050 +rpcport=50051 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/sequence--v1.3.3.0.conf b/blockchain-configuration-files/wallet-confs/sequence--v1.3.3.0.conf new file mode 100644 index 00000000..275999c7 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/sequence--v1.3.3.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=16662 +rpcport=16663 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/shekel--1.5.0.conf b/blockchain-configuration-files/wallet-confs/shekel--1.5.0.conf new file mode 100644 index 00000000..f5d3a429 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/shekel--1.5.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=5500 +rpcport=5501 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/sibcoin--v0.17.0.0.conf b/blockchain-configuration-files/wallet-confs/sibcoin--v0.17.0.0.conf new file mode 100644 index 00000000..1e517a94 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/sibcoin--v0.17.0.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=1945 +rpcport=1944 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/sparks--v0.12.4.3.conf b/blockchain-configuration-files/wallet-confs/sparks--v0.12.4.3.conf new file mode 100644 index 00000000..e7120d40 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/sparks--v0.12.4.3.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8890 +rpcport=8892 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/stakecubecoin--v3.0.1.conf b/blockchain-configuration-files/wallet-confs/stakecubecoin--v3.0.1.conf new file mode 100644 index 00000000..a221b07d --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/stakecubecoin--v3.0.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=40000 +rpcport=39999 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/straks--1.14.7.5.conf b/blockchain-configuration-files/wallet-confs/straks--1.14.7.5.conf new file mode 100644 index 00000000..9213cf08 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/straks--1.14.7.5.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=7575 +rpcport=7574 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/cryptodezirecash--v2.1.1.conf b/blockchain-configuration-files/wallet-confs/swiftcash--3.0.5.conf similarity index 70% rename from blockchain-configuration-files/wallet-confs/cryptodezirecash--v2.1.1.conf rename to blockchain-configuration-files/wallet-confs/swiftcash--3.0.5.conf index f02560b2..3a005ba7 100644 --- a/blockchain-configuration-files/wallet-confs/cryptodezirecash--v2.1.1.conf +++ b/blockchain-configuration-files/wallet-confs/swiftcash--3.0.5.conf @@ -3,5 +3,5 @@ listen=1 rpcuser= rpcpassword= rpcallowip=127.0.0.1 -port=35601 -rpcport=35602 +port=8544 +rpcport=8543 diff --git a/blockchain-configuration-files/wallet-confs/syscoin--3.0.5.0.conf b/blockchain-configuration-files/wallet-confs/syscoin--3.0.5.0.conf deleted file mode 100755 index 663d80af..00000000 --- a/blockchain-configuration-files/wallet-confs/syscoin--3.0.5.0.conf +++ /dev/null @@ -1,7 +0,0 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=8369 -rpcport=8370 \ No newline at end of file diff --git a/blockchain-configuration-files/wallet-confs/syscoin--v4.0.3.conf b/blockchain-configuration-files/wallet-confs/syscoin--v4.0.3.conf deleted file mode 100644 index a1662d2e..00000000 --- a/blockchain-configuration-files/wallet-confs/syscoin--v4.0.3.conf +++ /dev/null @@ -1,15 +0,0 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=8369 -rpcport=8370 -txindex=1 - -# Legacy addresses must be used (address must begin with "S", not "3" or "sys...") -addresstype=legacy -changetype=legacy - -# If not using localhost 127.0.0.1, need rpcbind with rpcallowip -# rpcbind= diff --git a/blockchain-configuration-files/wallet-confs/syscoin--v4.4.2.conf b/blockchain-configuration-files/wallet-confs/syscoin--v4.4.2.conf new file mode 100644 index 00000000..b1e01a45 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/syscoin--v4.4.2.conf @@ -0,0 +1,18 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8369 +rpcport=8370 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + + +# Enable deprecated calls +deprecatedrpc=addresses + +prune=0 diff --git a/blockchain-configuration-files/wallet-confs/systest--v4.3.0.conf b/blockchain-configuration-files/wallet-confs/systest--v4.3.0.conf new file mode 100644 index 00000000..e7d7cd94 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/systest--v4.3.0.conf @@ -0,0 +1,20 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +testnet=1 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + + +# Enable deprecated calls +deprecatedrpc=addresses + + +[test] +rpcallowip=127.0.0.1 +port=18369 +rpcport=18370 diff --git a/blockchain-configuration-files/wallet-confs/terracoin--v0.12.2.4.conf b/blockchain-configuration-files/wallet-confs/terracoin--v0.12.2.4.conf new file mode 100644 index 00000000..f05d7894 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/terracoin--v0.12.2.4.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=13333 +rpcport=13332 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/tribe--1.0.2.conf b/blockchain-configuration-files/wallet-confs/tribe--1.0.2.conf new file mode 100644 index 00000000..4f8e4f83 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/tribe--1.0.2.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=9399 +rpcport=9499 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/ufocoin--v0.18.0.conf b/blockchain-configuration-files/wallet-confs/ufocoin--v0.18.0.conf index 24e9253b..1c4837ce 100644 --- a/blockchain-configuration-files/wallet-confs/ufocoin--v0.18.0.conf +++ b/blockchain-configuration-files/wallet-confs/ufocoin--v0.18.0.conf @@ -1,12 +1,13 @@ server=1 listen=1 +rpcuser= +rpcpassword= rpcallowip=127.0.0.1 port=9887 rpcport=9888 -rpcuser= -rpcpassword= txindex=1 -# Legacy addresses must be used (address must begin with "B", not "U") +# Legacy addresses must be used addresstype=legacy changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/unobtanium--v0.10.1.1.conf b/blockchain-configuration-files/wallet-confs/unobtanium--v0.11.0.conf similarity index 92% rename from blockchain-configuration-files/wallet-confs/unobtanium--v0.10.1.1.conf rename to blockchain-configuration-files/wallet-confs/unobtanium--v0.11.0.conf index 0ec5cebb..7aa98080 100644 --- a/blockchain-configuration-files/wallet-confs/unobtanium--v0.10.1.1.conf +++ b/blockchain-configuration-files/wallet-confs/unobtanium--v0.11.0.conf @@ -1,8 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=65534 -rpcport=65535 -txindex=1 +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=65534 +rpcport=65535 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/vertcoin--0.14.0.conf b/blockchain-configuration-files/wallet-confs/vertcoin--0.14.0.conf new file mode 100644 index 00000000..b438914e --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/vertcoin--0.14.0.conf @@ -0,0 +1,13 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=5889 +rpcport=5888 +txindex=1 + +# Legacy addresses must be used +addresstype=legacy +changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/viacoin--v0.16.3.conf b/blockchain-configuration-files/wallet-confs/viacoin--v0.16.3.conf index 65a7e81b..5c4cdc6f 100644 --- a/blockchain-configuration-files/wallet-confs/viacoin--v0.16.3.conf +++ b/blockchain-configuration-files/wallet-confs/viacoin--v0.16.3.conf @@ -7,6 +7,7 @@ port=5223 rpcport=5222 txindex=1 -# Legacy addresses must be used (address must begin with "V", not "E") +# Legacy addresses must be used addresstype=legacy changetype=legacy + diff --git a/blockchain-configuration-files/wallet-confs/vitae--v4.4.0.3.conf b/blockchain-configuration-files/wallet-confs/vitae--v4.4.0.3.conf new file mode 100644 index 00000000..fba8a4d7 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/vitae--v4.4.0.3.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8765 +rpcport=8764 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/vivo--v0.12.1.17.conf b/blockchain-configuration-files/wallet-confs/vivo--v0.12.1.17.conf new file mode 100644 index 00000000..57ac3bb2 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/vivo--v0.12.1.17.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=12845 +rpcport=12846 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/vsync--v3.8.7.6.conf b/blockchain-configuration-files/wallet-confs/vsync--v3.8.7.6.conf new file mode 100644 index 00000000..ca2e3290 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/vsync--v3.8.7.6.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=65010 +rpcport=65011 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/wagerr--v3.1.0.conf b/blockchain-configuration-files/wallet-confs/wagerr--v3.1.0.conf new file mode 100644 index 00000000..d81f3771 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/wagerr--v3.1.0.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=55002 +rpcport=55003 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/xaya--v1.4.1.conf b/blockchain-configuration-files/wallet-confs/xaya--v1.4.1.conf new file mode 100644 index 00000000..b621b936 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/xaya--v1.4.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8395 +rpcport=8396 +txindex=1 +addresstype=legacy +changetype=legacy diff --git a/blockchain-configuration-files/wallet-confs/xcurrency--v3.0.05.conf b/blockchain-configuration-files/wallet-confs/xcurrency--v3.0.05.conf index c085d80c..726f443b 100755 --- a/blockchain-configuration-files/wallet-confs/xcurrency--v3.0.05.conf +++ b/blockchain-configuration-files/wallet-confs/xcurrency--v3.0.05.conf @@ -1,7 +1,10 @@ -server=1 -listen=1 -rpcuser= -rpcpassword= -rpcallowip=127.0.0.1 -port=14333 -rpcport=14332 \ No newline at end of file +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=14333 +rpcport=14332 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/zcoin--v0.14.0.1.conf b/blockchain-configuration-files/wallet-confs/zcoin--v0.14.0.1.conf new file mode 100644 index 00000000..ec3ac2f8 --- /dev/null +++ b/blockchain-configuration-files/wallet-confs/zcoin--v0.14.0.1.conf @@ -0,0 +1,10 @@ +server=1 +listen=1 +rpcuser= +rpcpassword= +rpcallowip=127.0.0.1 +port=8168 +rpcport=8888 +txindex=1 + + diff --git a/blockchain-configuration-files/wallet-confs/cryptonodes--v1.4.3.conf b/blockchain-configuration-files/wallet-confs/zenzo--v2.1.0.conf old mode 100644 new mode 100755 similarity index 64% rename from blockchain-configuration-files/wallet-confs/cryptonodes--v1.4.3.conf rename to blockchain-configuration-files/wallet-confs/zenzo--v2.1.0.conf index ef743acb..df35ffc9 --- a/blockchain-configuration-files/wallet-confs/cryptonodes--v1.4.3.conf +++ b/blockchain-configuration-files/wallet-confs/zenzo--v2.1.0.conf @@ -1,7 +1,8 @@ +daemon=1 server=1 listen=1 rpcuser= rpcpassword= rpcallowip=127.0.0.1 -port=44219 -rpcport=34219 +port=26210 +rpcport=26211 diff --git a/blockchain-configuration-files/wallet-confs/zsub1x--1.4.0.conf b/blockchain-configuration-files/wallet-confs/zsub1x--1.4.0.conf index c3424e50..4f912ecd 100644 --- a/blockchain-configuration-files/wallet-confs/zsub1x--1.4.0.conf +++ b/blockchain-configuration-files/wallet-confs/zsub1x--1.4.0.conf @@ -5,3 +5,6 @@ rpcpassword= rpcallowip=127.0.0.1 port=5721 rpcport=5720 +txindex=1 + + diff --git a/blockchain-configuration-files/xbridge-confs/ColossusXT--v1.2.3.conf b/blockchain-configuration-files/xbridge-confs/ColossusXT--v1.2.3.conf new file mode 100644 index 00000000..c57c9d20 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/ColossusXT--v1.2.3.conf @@ -0,0 +1,21 @@ +[COLX] +Title=ColossusXT +Address= +Ip=127.0.0.1 +Port=51573 +Username= +Password= +AddressPrefix=30 +ScriptPrefix=13 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=200000000 +BlockTime=60 +FeePerByte=400000 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/Electra--2.1.1.conf b/blockchain-configuration-files/xbridge-confs/Electra--2.1.1.conf new file mode 100644 index 00000000..f66f3d10 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/Electra--2.1.1.conf @@ -0,0 +1,21 @@ +[ECA] +Title=Electra +Address= +Ip=127.0.0.1 +Port=5788 +Username= +Password= +AddressPrefix=33 +ScriptPrefix=40 +SecretPrefix=161 +COIN=100000000 +MinimumAmount=0 +TxVersion=7 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=64 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/GravityCoin--4.0.7.8.conf b/blockchain-configuration-files/xbridge-confs/GravityCoin--4.0.7.8.conf new file mode 100644 index 00000000..78e87421 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/GravityCoin--4.0.7.8.conf @@ -0,0 +1,21 @@ +[GXX] +Title=GravityCoin +Address= +Ip=127.0.0.1 +Port=29200 +Username= +Password= +AddressPrefix=40 +ScriptPrefix=10 +SecretPrefix=210 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=100000 +BlockTime=150 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/Metrix--v4.0.3.conf b/blockchain-configuration-files/xbridge-confs/Metrix--v4.0.3.conf new file mode 100644 index 00000000..834a751d --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/Metrix--v4.0.3.conf @@ -0,0 +1,26 @@ +[MRX] +Title=Metrix +Address= +Ip=127.0.0.1 +Port=33831 +Username= +Password= +AddressPrefix=50 +ScriptPrefix=85 +SecretPrefix=153 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=0 +BlockTime=90 +FeePerByte=2000000 +Confirmations=0 +TxWithTimeField=false +LockCoinsSupported=false +JSONVersion= +ContentType= +CashAddrPrefix= diff --git a/blockchain-configuration-files/xbridge-confs/abet--v3.4.1.0.conf b/blockchain-configuration-files/xbridge-confs/abet--v3.4.1.0.conf index d8c0bdbf..0c3699cd 100644 --- a/blockchain-configuration-files/xbridge-confs/abet--v3.4.1.0.conf +++ b/blockchain-configuration-files/xbridge-confs/abet--v3.4.1.0.conf @@ -13,11 +13,9 @@ MinimumAmount=0 TxVersion=1 DustAmount=0 CreateTxMethod=BTC -MinTxFee=5000 -BlockTime=60 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=60 FeePerByte=10 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/abosom--v1.0.0.conf b/blockchain-configuration-files/xbridge-confs/abosom--v1.0.0.conf index 0a0e43e7..7137b3d1 100644 --- a/blockchain-configuration-files/xbridge-confs/abosom--v1.0.0.conf +++ b/blockchain-configuration-files/xbridge-confs/abosom--v1.0.0.conf @@ -13,11 +13,9 @@ MinimumAmount=0 TxVersion=2 DustAmount=0 CreateTxMethod=BTC -MinTxFee=1000 -BlockTime=600 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=1000 +BlockTime=600 FeePerByte=2 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/lux--v5.3.3.conf b/blockchain-configuration-files/xbridge-confs/aeriumx--v2.2.conf similarity index 59% rename from blockchain-configuration-files/xbridge-confs/lux--v5.3.3.conf rename to blockchain-configuration-files/xbridge-confs/aeriumx--v2.2.conf index fb1cbb89..3085ba34 100644 --- a/blockchain-configuration-files/xbridge-confs/lux--v5.3.3.conf +++ b/blockchain-configuration-files/xbridge-confs/aeriumx--v2.2.conf @@ -1,13 +1,13 @@ -[LUX] -Title=Luxcore +[AEX] +Title=AeriumX Address= Ip=127.0.0.1 -Port=26970 +Port=35408 Username= Password= -AddressPrefix=48 -ScriptPrefix=63 -SecretPrefix=155 +AddressPrefix=23 +ScriptPrefix=83 +SecretPrefix=151 COIN=100000000 MinimumAmount=0 TxVersion=1 @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 -TxWithTimeField=true -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/iop--v6.2.3.conf b/blockchain-configuration-files/xbridge-confs/aprcoin--v3.1.0.conf similarity index 66% rename from blockchain-configuration-files/xbridge-confs/iop--v6.2.3.conf rename to blockchain-configuration-files/xbridge-confs/aprcoin--v3.1.0.conf index 6f105782..d20628ef 100644 --- a/blockchain-configuration-files/xbridge-confs/iop--v6.2.3.conf +++ b/blockchain-configuration-files/xbridge-confs/aprcoin--v3.1.0.conf @@ -1,13 +1,13 @@ -[IOP] -Title=InternetofPeople +[APR] +Title=APRcoin Address= Ip=127.0.0.1 -Port=4878 +Port=3132 Username= Password= -AddressPrefix=117 -ScriptPrefix=174 -SecretPrefix=49 +AddressPrefix=12 +ScriptPrefix=6 +SecretPrefix=46 COIN=100000000 MinimumAmount=0 TxVersion=1 @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=120 FeePerByte=20 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/argoneum--v1.4.0.0.conf b/blockchain-configuration-files/xbridge-confs/argoneum--v1.4.0.0.conf new file mode 100644 index 00000000..359e3a69 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/argoneum--v1.4.0.0.conf @@ -0,0 +1,21 @@ +[AGM] +Title=Argoneum +Address= +Ip=127.0.0.1 +Port=9899 +Username= +Password= +AddressPrefix=50 +ScriptPrefix=97 +SecretPrefix=191 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=60 +FeePerByte=5 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/atbcoin--v1.1.0.conf b/blockchain-configuration-files/xbridge-confs/atbcoin--v1.1.0.conf index 10c864f1..3169f346 100644 --- a/blockchain-configuration-files/xbridge-confs/atbcoin--v1.1.0.conf +++ b/blockchain-configuration-files/xbridge-confs/atbcoin--v1.1.0.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=20000 BlockTime=150 FeePerByte=40 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/australiacash--v0.17.4.1.conf b/blockchain-configuration-files/xbridge-confs/australiacash--v0.17.4.1.conf new file mode 100644 index 00000000..1e059ada --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/australiacash--v0.17.4.1.conf @@ -0,0 +1,21 @@ +[AUS] +Title=AustraliaCash +Address= +Ip=127.0.0.1 +Port=1987 +Username= +Password= +AddressPrefix=23 +ScriptPrefix=63 +SecretPrefix=23 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000000 +BlockTime=150 +FeePerByte=4000 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/badcoin--v0.16.3-2.conf b/blockchain-configuration-files/xbridge-confs/badcoin--v0.16.3-2.conf index f7f62c73..7f8ad882 100644 --- a/blockchain-configuration-files/xbridge-confs/badcoin--v0.16.3-2.conf +++ b/blockchain-configuration-files/xbridge-confs/badcoin--v0.16.3-2.conf @@ -1,7 +1,10 @@ [BAD] Title=Badcoin +Address= Ip=127.0.0.1 Port=9013 +Username= +Password= AddressPrefix=28 ScriptPrefix=25 SecretPrefix=80 @@ -15,9 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=5000 BlockTime=60 FeePerByte=20 -Confirmations=0 -Username= -Password= -Address= -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bcz--v6.0.3.2.conf b/blockchain-configuration-files/xbridge-confs/bcz--v6.0.3.2.conf new file mode 100644 index 00000000..2dccfc62 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/bcz--v6.0.3.2.conf @@ -0,0 +1,21 @@ +[BCZ] +Title=BitcoinCZ +Address= +Ip=127.0.0.1 +Port=29501 +Username= +Password= +AddressPrefix=25 +ScriptPrefix=20 +SecretPrefix=210 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=150 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcloud--2.1.0.1.1.conf b/blockchain-configuration-files/xbridge-confs/bitcloud--2.1.0.1.1.conf index 3910aef2..e1d5cfac 100644 --- a/blockchain-configuration-files/xbridge-confs/bitcloud--2.1.0.1.1.conf +++ b/blockchain-configuration-files/xbridge-confs/bitcloud--2.1.0.1.1.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=300 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.15.1.conf b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.15.1.conf index daf29f76..d701669c 100755 --- a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.15.1.conf +++ b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.15.1.conf @@ -1,21 +1,21 @@ -[BTC] -Title=Bitcoin -Address= -Ip=127.0.0.1 -Port=8332 -Username= -Password= -AddressPrefix=0 -ScriptPrefix=5 -SecretPrefix=128 -COIN=100000000 -MinimumAmount=0 -TxVersion=2 -DustAmount=0 -CreateTxMethod=BTC -MinTxFee=7500 -BlockTime=600 -GetNewKeySupported=false -ImportWithNoScanSupported=false -FeePerByte=120 -Confirmations=1 +[BTC] +Title=Bitcoin +Address= +Ip=127.0.0.1 +Port=8332 +Username= +Password= +AddressPrefix=0 +ScriptPrefix=5 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=12000 +BlockTime=600 +FeePerByte=60 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.16.0.conf b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.16.0.conf new file mode 100644 index 00000000..d701669c --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.16.0.conf @@ -0,0 +1,21 @@ +[BTC] +Title=Bitcoin +Address= +Ip=127.0.0.1 +Port=8332 +Username= +Password= +AddressPrefix=0 +ScriptPrefix=5 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=12000 +BlockTime=600 +FeePerByte=60 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.17.0.conf b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.17.0.conf new file mode 100644 index 00000000..d701669c --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.17.0.conf @@ -0,0 +1,21 @@ +[BTC] +Title=Bitcoin +Address= +Ip=127.0.0.1 +Port=8332 +Username= +Password= +AddressPrefix=0 +ScriptPrefix=5 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=12000 +BlockTime=600 +FeePerByte=60 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.18.0.conf b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.18.0.conf new file mode 100644 index 00000000..d701669c --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.18.0.conf @@ -0,0 +1,21 @@ +[BTC] +Title=Bitcoin +Address= +Ip=127.0.0.1 +Port=8332 +Username= +Password= +AddressPrefix=0 +ScriptPrefix=5 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=12000 +BlockTime=600 +FeePerByte=60 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.19.0.conf b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.19.0.conf new file mode 100644 index 00000000..d701669c --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.19.0.conf @@ -0,0 +1,21 @@ +[BTC] +Title=Bitcoin +Address= +Ip=127.0.0.1 +Port=8332 +Username= +Password= +AddressPrefix=0 +ScriptPrefix=5 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=12000 +BlockTime=600 +FeePerByte=60 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.20.0.conf b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.20.0.conf index 6b7630bd..d701669c 100644 --- a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.20.0.conf +++ b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.20.0.conf @@ -13,9 +13,9 @@ MinimumAmount=0 TxVersion=2 DustAmount=0 CreateTxMethod=BTC -MinTxFee=12000 -BlockTime=600 GetNewKeySupported=false ImportWithNoScanSupported=false +MinTxFee=12000 +BlockTime=600 FeePerByte=60 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoin--v0.21.0.conf b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.21.0.conf new file mode 100644 index 00000000..d701669c --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/bitcoin--v0.21.0.conf @@ -0,0 +1,21 @@ +[BTC] +Title=Bitcoin +Address= +Ip=127.0.0.1 +Port=8332 +Username= +Password= +AddressPrefix=0 +ScriptPrefix=5 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=12000 +BlockTime=600 +FeePerByte=60 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoincash--v0.21.11.conf b/blockchain-configuration-files/xbridge-confs/bitcoincash--v0.21.11.conf index 4bf6b74f..93c347db 100644 --- a/blockchain-configuration-files/xbridge-confs/bitcoincash--v0.21.11.conf +++ b/blockchain-configuration-files/xbridge-confs/bitcoincash--v0.21.11.conf @@ -13,12 +13,9 @@ MinimumAmount=0 TxVersion=2 DustAmount=0 CreateTxMethod=BCH -MinTxFee=500 -BlockTime=600 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=500 +BlockTime=600 FeePerByte=2 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false -CashAddrPrefix=bitcoincash +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoindiamond--v1.3.0.conf b/blockchain-configuration-files/xbridge-confs/bitcoindiamond--v1.3.0.conf index 4189b1c5..19fa5649 100644 --- a/blockchain-configuration-files/xbridge-confs/bitcoindiamond--v1.3.0.conf +++ b/blockchain-configuration-files/xbridge-confs/bitcoindiamond--v1.3.0.conf @@ -13,11 +13,9 @@ MinimumAmount=0 TxVersion=12 DustAmount=0 CreateTxMethod=BCD -MinTxFee=5000 -BlockTime=600 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=600 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoingold--v0.17.2.conf b/blockchain-configuration-files/xbridge-confs/bitcoingold--v0.17.2.conf index 54bd49fe..17ce51bc 100644 --- a/blockchain-configuration-files/xbridge-confs/bitcoingold--v0.17.2.conf +++ b/blockchain-configuration-files/xbridge-confs/bitcoingold--v0.17.2.conf @@ -13,11 +13,9 @@ MinimumAmount=0 TxVersion=2 DustAmount=0 CreateTxMethod=BTG -MinTxFee=500 -BlockTime=600 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=500 +BlockTime=600 FeePerByte=2 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcoinzero--5.0.7.8.conf b/blockchain-configuration-files/xbridge-confs/bitcoinzero--5.0.7.8.conf new file mode 100644 index 00000000..dab12709 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/bitcoinzero--5.0.7.8.conf @@ -0,0 +1,21 @@ +[BZX] +Title=BitcoinZero +Address= +Ip=127.0.0.1 +Port=29201 +Username= +Password= +AddressPrefix=75 +ScriptPrefix=34 +SecretPrefix=210 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=100000 +BlockTime=150 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitcore--0.90.8.8.1.conf b/blockchain-configuration-files/xbridge-confs/bitcore--0.90.8.8.1.conf new file mode 100644 index 00000000..16d3dda3 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/bitcore--0.90.8.8.1.conf @@ -0,0 +1,21 @@ +[BTX] +Title=BitCore +Address= +Ip=127.0.0.1 +Port=8556 +Username= +Password= +AddressPrefix=3 +ScriptPrefix=125 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000000 +BlockTime=150 +FeePerByte=4000 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitgreen--v1.4.0.8.conf b/blockchain-configuration-files/xbridge-confs/bitgreen--v1.4.0.8.conf index 7931ad41..7b216c9c 100644 --- a/blockchain-configuration-files/xbridge-confs/bitgreen--v1.4.0.8.conf +++ b/blockchain-configuration-files/xbridge-confs/bitgreen--v1.4.0.8.conf @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=5000 BlockTime=60 FeePerByte=20 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitmoney--2.2.0.2.conf b/blockchain-configuration-files/xbridge-confs/bitmoney--2.2.0.2.conf index 77d80171..5fa75c88 100644 --- a/blockchain-configuration-files/xbridge-confs/bitmoney--2.2.0.2.conf +++ b/blockchain-configuration-files/xbridge-confs/bitmoney--2.2.0.2.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/bitsend--0.14.2.0.1.conf b/blockchain-configuration-files/xbridge-confs/bitsend--0.14.2.0.1.conf index c9c729e4..d4b27b67 100644 --- a/blockchain-configuration-files/xbridge-confs/bitsend--0.14.2.0.1.conf +++ b/blockchain-configuration-files/xbridge-confs/bitsend--0.14.2.0.1.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=200 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/blast--v2.2.0.conf b/blockchain-configuration-files/xbridge-confs/blast--v2.2.0.conf new file mode 100644 index 00000000..4cc76fcf --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/blast--v2.2.0.conf @@ -0,0 +1,21 @@ +[BLAST] +Title=BLAST +Address= +Ip=127.0.0.1 +Port=64639 +Username= +Password= +AddressPrefix=25 +ScriptPrefix=18 +SecretPrefix=239 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=32 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/blocknet--v4.2.0.conf b/blockchain-configuration-files/xbridge-confs/blocknet--v4.2.0.conf new file mode 100644 index 00000000..a1405023 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/blocknet--v4.2.0.conf @@ -0,0 +1,21 @@ +[BLOCK] +Title=Blocknet +Address= +Ip=127.0.0.1 +Port=41414 +Username= +Password= +AddressPrefix=26 +ScriptPrefix=28 +SecretPrefix=154 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/blocknet--v4.3.0.conf b/blockchain-configuration-files/xbridge-confs/blocknet--v4.3.0.conf new file mode 100644 index 00000000..a1405023 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/blocknet--v4.3.0.conf @@ -0,0 +1,21 @@ +[BLOCK] +Title=Blocknet +Address= +Ip=127.0.0.1 +Port=41414 +Username= +Password= +AddressPrefix=26 +ScriptPrefix=28 +SecretPrefix=154 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/blocktest--v4.3.3.conf b/blockchain-configuration-files/xbridge-confs/blocktest--v4.3.3.conf new file mode 100644 index 00000000..16b56023 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/blocktest--v4.3.3.conf @@ -0,0 +1,21 @@ +[TBLOCK] +Title=Blocknet Testnet +Address= +Ip=127.0.0.1 +Port=41419 +Username= +Password= +AddressPrefix=139 +ScriptPrefix=19 +SecretPrefix=239 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/carebitcoin--v5.0.0.conf b/blockchain-configuration-files/xbridge-confs/carebitcoin--v5.0.0.conf new file mode 100644 index 00000000..b860f20e --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/carebitcoin--v5.0.0.conf @@ -0,0 +1,21 @@ +[CARE] +Title=Carebit +Address= +Ip=127.0.0.1 +Port=9193 +Username= +Password= +AddressPrefix=28 +ScriptPrefix=137 +SecretPrefix=55 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/cbdhealthnetwork--wallets-source-daemon.conf b/blockchain-configuration-files/xbridge-confs/cbdhealthnetwork--wallets-source-daemon.conf index 67504457..788ae40a 100644 --- a/blockchain-configuration-files/xbridge-confs/cbdhealthnetwork--wallets-source-daemon.conf +++ b/blockchain-configuration-files/xbridge-confs/cbdhealthnetwork--wallets-source-daemon.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=1000 BlockTime=300 FeePerByte=2 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/chaincoin--v0.18.conf b/blockchain-configuration-files/xbridge-confs/chaincoin--v0.18.conf new file mode 100644 index 00000000..d07b41f2 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/chaincoin--v0.18.conf @@ -0,0 +1,21 @@ +[CHC] +Title=Chaincoin +Address= +Ip=127.0.0.1 +Port=11995 +Username= +Password= +AddressPrefix=28 +ScriptPrefix=4 +SecretPrefix=156 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=20000 +BlockTime=90 +FeePerByte=40 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/civitas--v1.2.2.conf b/blockchain-configuration-files/xbridge-confs/civitas--v1.2.2.conf index 41b29407..55fc84d2 100644 --- a/blockchain-configuration-files/xbridge-confs/civitas--v1.2.2.conf +++ b/blockchain-configuration-files/xbridge-confs/civitas--v1.2.2.conf @@ -1,21 +1,21 @@ -[CIV] -Title=Civitas -Address= -Ip=127.0.0.1 -Port=28843 -Username= -Password= -AddressPrefix=28 -ScriptPrefix=8 -SecretPrefix=212 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=10000 -BlockTime=60 -FeePerByte=20 -Confirmations=0 +[CIV] +Title=Civitas +Address= +Ip=127.0.0.1 +Port=28843 +Username= +Password= +AddressPrefix=28 +ScriptPrefix=8 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/crave--v2.5.2.conf b/blockchain-configuration-files/xbridge-confs/crave--v2.5.2.conf new file mode 100644 index 00000000..220ceab7 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/crave--v2.5.2.conf @@ -0,0 +1,21 @@ +[CRAVE] +Title=Crave +Address= +Ip=127.0.0.1 +Port=48883 +Username= +Password= +AddressPrefix=70 +ScriptPrefix=85 +SecretPrefix=153 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/dash--v0.12.2.3.conf b/blockchain-configuration-files/xbridge-confs/dash--v19.2.0.conf old mode 100755 new mode 100644 similarity index 93% rename from blockchain-configuration-files/xbridge-confs/dash--v0.12.2.3.conf rename to blockchain-configuration-files/xbridge-confs/dash--v19.2.0.conf index 6af7e700..d65f0fdd --- a/blockchain-configuration-files/xbridge-confs/dash--v0.12.2.3.conf +++ b/blockchain-configuration-files/xbridge-confs/dash--v19.2.0.conf @@ -1,21 +1,21 @@ -[DASH] -Title=Dash -Address= -Ip=127.0.0.1 -Port=9998 -Username= -Password= -AddressPrefix=76 -ScriptPrefix=16 -SecretPrefix=204 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=false -ImportWithNoScanSupported=true -MinTxFee=2500 -BlockTime=150 -FeePerByte=5 -Confirmations=0 +[DASH] +Title=Dash +Address= +Ip=127.0.0.1 +Port=9998 +Username= +Password= +AddressPrefix=76 +ScriptPrefix=16 +SecretPrefix=204 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=true +MinTxFee=2500 +BlockTime=150 +FeePerByte=5 +Confirmations=0 diff --git a/blockchain-configuration-files/xbridge-confs/denarius--v3.3.9.3.conf b/blockchain-configuration-files/xbridge-confs/denarius--v3.3.9.9.conf similarity index 82% rename from blockchain-configuration-files/xbridge-confs/denarius--v3.3.9.3.conf rename to blockchain-configuration-files/xbridge-confs/denarius--v3.3.9.9.conf index 2df54a28..4b911d17 100644 --- a/blockchain-configuration-files/xbridge-confs/denarius--v3.3.9.3.conf +++ b/blockchain-configuration-files/xbridge-confs/denarius--v3.3.9.9.conf @@ -1,7 +1,10 @@ [D] Title=Denarius +Address= Ip=127.0.0.1 Port=32369 +Username= +Password= AddressPrefix=30 ScriptPrefix=90 SecretPrefix=158 @@ -15,9 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=2000 BlockTime=30 FeePerByte=5 -Confirmations=0 -Username= -Password= -Address= -TxWithTimeField=true -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/desire--Desire-v.0.12.2.2.conf b/blockchain-configuration-files/xbridge-confs/desire--Desire-v.0.12.2.2.conf index c20d5921..142ac604 100644 --- a/blockchain-configuration-files/xbridge-confs/desire--Desire-v.0.12.2.2.conf +++ b/blockchain-configuration-files/xbridge-confs/desire--Desire-v.0.12.2.2.conf @@ -1,21 +1,21 @@ -[DSR] -Title=Desire -Address= -Ip=127.0.0.1 -Port=9918 -Username= -Password= -AddressPrefix=30 -ScriptPrefix=16 -SecretPrefix=204 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=2000 -BlockTime=150 -FeePerByte=4 -Confirmations=0 +[DSR] +Title=Desire +Address= +Ip=127.0.0.1 +Port=9918 +Username= +Password= +AddressPrefix=30 +ScriptPrefix=16 +SecretPrefix=204 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=150 +FeePerByte=4 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/devault--v1.1.7.conf b/blockchain-configuration-files/xbridge-confs/devault--v1.1.7.conf index 29d20dc3..27c4bd32 100644 --- a/blockchain-configuration-files/xbridge-confs/devault--v1.1.7.conf +++ b/blockchain-configuration-files/xbridge-confs/devault--v1.1.7.conf @@ -13,10 +13,9 @@ MinimumAmount=0 TxVersion=2 DustAmount=0 CreateTxMethod=DEVAULT -MinTxFee=30000000 -BlockTime=120 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=30000000 +BlockTime=120 FeePerByte=50000 -Confirmations=0 -CashAddrPrefix=devault +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/diamond--v3.0.1.3.conf b/blockchain-configuration-files/xbridge-confs/diamond--v3.0.1.3.conf new file mode 100644 index 00000000..cdaac648 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/diamond--v3.0.1.3.conf @@ -0,0 +1,21 @@ +[DMD] +Title=Diamond +Address= +Ip=127.0.0.1 +Port=17772 +Username= +Password= +AddressPrefix=90 +ScriptPrefix=8 +SecretPrefix=218 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=135 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/digibyte--v6.16.2.conf b/blockchain-configuration-files/xbridge-confs/digibyte--v7.17.2.conf old mode 100755 new mode 100644 similarity index 88% rename from blockchain-configuration-files/xbridge-confs/digibyte--v6.16.2.conf rename to blockchain-configuration-files/xbridge-confs/digibyte--v7.17.2.conf index 1c15dceb..adf5a6c6 --- a/blockchain-configuration-files/xbridge-confs/digibyte--v6.16.2.conf +++ b/blockchain-configuration-files/xbridge-confs/digibyte--v7.17.2.conf @@ -1,21 +1,21 @@ -[DGB] -Title=DigiByte -Address= -Ip=127.0.0.1 -Port=14022 -Username= -Password= -AddressPrefix=30 -ScriptPrefix=63 -SecretPrefix=128 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=false -ImportWithNoScanSupported=true -MinTxFee=100000 -BlockTime=15 -FeePerByte=200 -Confirmations=0 +[DGB] +Title=DigiByte +Address= +Ip=127.0.0.1 +Port=14022 +Username= +Password= +AddressPrefix=30 +ScriptPrefix=63 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=true +MinTxFee=100000 +BlockTime=15 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/digiwage--v1.2.1.conf b/blockchain-configuration-files/xbridge-confs/digiwage--v1.2.1.conf new file mode 100644 index 00000000..6d0d36fc --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/digiwage--v1.2.1.conf @@ -0,0 +1,21 @@ +[WAGE] +Title=Digiwage +Address= +Ip=127.0.0.1 +Port=46002 +Username= +Password= +AddressPrefix=30 +ScriptPrefix=90 +SecretPrefix=89 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/divi--v1.1.2.conf b/blockchain-configuration-files/xbridge-confs/divi--v1.1.2.conf new file mode 100644 index 00000000..bff70bd9 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/divi--v1.1.2.conf @@ -0,0 +1,21 @@ +[DIVI] +Title=Divi +Address= +Ip=127.0.0.1 +Port=51473 +Username= +Password= +AddressPrefix=30 +ScriptPrefix=13 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/dogecash--3.0.0.conf b/blockchain-configuration-files/xbridge-confs/dogecash--5.4.4.conf similarity index 74% rename from blockchain-configuration-files/xbridge-confs/dogecash--3.0.0.conf rename to blockchain-configuration-files/xbridge-confs/dogecash--5.4.4.conf index 57d40e54..18ff35c1 100644 --- a/blockchain-configuration-files/xbridge-confs/dogecash--3.0.0.conf +++ b/blockchain-configuration-files/xbridge-confs/dogecash--5.4.4.conf @@ -15,9 +15,7 @@ DustAmount=0 CreateTxMethod=BTC GetNewKeySupported=true ImportWithNoScanSupported=true -MinTxFee=10000 +MinTxFee=2500 BlockTime=60 -FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +FeePerByte=25 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/dogecoin--v1.10.0.conf b/blockchain-configuration-files/xbridge-confs/dogecoin--v1.14.5.conf similarity index 83% rename from blockchain-configuration-files/xbridge-confs/dogecoin--v1.10.0.conf rename to blockchain-configuration-files/xbridge-confs/dogecoin--v1.14.5.conf index eb5b58ee..1ac55f12 100644 --- a/blockchain-configuration-files/xbridge-confs/dogecoin--v1.10.0.conf +++ b/blockchain-configuration-files/xbridge-confs/dogecoin--v1.14.5.conf @@ -15,7 +15,7 @@ DustAmount=0 CreateTxMethod=BTC GetNewKeySupported=false ImportWithNoScanSupported=true -MinTxFee=100000000 +MinTxFee=225000 BlockTime=60 -FeePerByte=200000 -Confirmations=0 +FeePerByte=2500 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/syscoin--3.0.5.0.conf b/blockchain-configuration-files/xbridge-confs/dynamic--v2.4.3.0.conf old mode 100755 new mode 100644 similarity index 61% rename from blockchain-configuration-files/xbridge-confs/syscoin--3.0.5.0.conf rename to blockchain-configuration-files/xbridge-confs/dynamic--v2.4.3.0.conf index 6cf5b85c..7d20d07a --- a/blockchain-configuration-files/xbridge-confs/syscoin--3.0.5.0.conf +++ b/blockchain-configuration-files/xbridge-confs/dynamic--v2.4.3.0.conf @@ -1,21 +1,21 @@ -[SYS] -Title=Syscoin -Address= -Ip=127.0.0.1 -Port=8370 -Username= -Password= -AddressPrefix=63 -ScriptPrefix=5 -SecretPrefix=128 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -MinTxFee=10000 -BlockTime=60 -GetNewKeySupported=false -ImportWithNoScanSupported=false -FeePerByte=20 -Confirmations=0 +[DYN] +Title=Dynamic +Address= +Ip=127.0.0.1 +Port=33350 +Username= +Password= +AddressPrefix=30 +ScriptPrefix=10 +SecretPrefix=140 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=10000 +BlockTime=128 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/einsteinium--v0.13.5.0.conf b/blockchain-configuration-files/xbridge-confs/einsteinium--v0.13.5.0.conf new file mode 100644 index 00000000..6affb3cc --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/einsteinium--v0.13.5.0.conf @@ -0,0 +1,21 @@ +[EMC2] +Title=Einsteinium +Address= +Ip=127.0.0.1 +Port=41879 +Username= +Password= +AddressPrefix=33 +ScriptPrefix=55 +SecretPrefix=176 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=200000 +BlockTime=60 +FeePerByte=400 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/emercoin--v0.7.10emc.conf b/blockchain-configuration-files/xbridge-confs/emercoin--v0.7.10emc.conf index 23dc4937..fc2158df 100644 --- a/blockchain-configuration-files/xbridge-confs/emercoin--v0.7.10emc.conf +++ b/blockchain-configuration-files/xbridge-confs/emercoin--v0.7.10emc.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=200 BlockTime=600 FeePerByte=1 -Confirmations=0 -TxWithTimeField=true -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/eternity--v0.12.1.7.conf b/blockchain-configuration-files/xbridge-confs/eternity--v0.12.1.7.conf index acec6bad..cb606519 100644 --- a/blockchain-configuration-files/xbridge-confs/eternity--v0.12.1.7.conf +++ b/blockchain-configuration-files/xbridge-confs/eternity--v0.12.1.7.conf @@ -1,21 +1,21 @@ -[ENT] -Title=Eternity -Address= -Ip=127.0.0.1 -Port=4854 -Username= -Password= -AddressPrefix=33 -ScriptPrefix=8 -SecretPrefix=101 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=10000 -BlockTime=150 -FeePerByte=20 -Confirmations=0 +[ENT] +Title=Eternity +Address= +Ip=127.0.0.1 +Port=4854 +Username= +Password= +AddressPrefix=33 +ScriptPrefix=8 +SecretPrefix=101 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=150 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/experiencepoints--v3.4.0.3.conf b/blockchain-configuration-files/xbridge-confs/experiencepoints--v3.4.0.3.conf index 6bdc0608..d3d8c91d 100644 --- a/blockchain-configuration-files/xbridge-confs/experiencepoints--v3.4.0.3.conf +++ b/blockchain-configuration-files/xbridge-confs/experiencepoints--v3.4.0.3.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=5000 BlockTime=60 FeePerByte=10 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/faircoin--v2.0.1.conf b/blockchain-configuration-files/xbridge-confs/faircoin--v2.0.1.conf new file mode 100644 index 00000000..40b97ff5 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/faircoin--v2.0.1.conf @@ -0,0 +1,21 @@ +[FAIR] +Title=Faircoin +Address= +Ip=127.0.0.1 +Port=40405 +Username= +Password= +AddressPrefix=95 +ScriptPrefix=36 +SecretPrefix=223 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=800000 +BlockTime=210 +FeePerByte=1600 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/fantasygold--2.19.1.conf b/blockchain-configuration-files/xbridge-confs/fantasygold--2.19.1.conf new file mode 100644 index 00000000..50b8f71c --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/fantasygold--2.19.1.conf @@ -0,0 +1,21 @@ +[FGC] +Title=FantasyGold +Address= +Ip=127.0.0.1 +Port=57810 +Username= +Password= +AddressPrefix=35 +ScriptPrefix=38 +SecretPrefix=138 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=200000 +BlockTime=90 +FeePerByte=800 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/flo--v0.15.2.0.conf b/blockchain-configuration-files/xbridge-confs/flo--v0.15.2.0.conf new file mode 100644 index 00000000..927e961b --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/flo--v0.15.2.0.conf @@ -0,0 +1,21 @@ +[FLO] +Title=Flo +Address= +Ip=127.0.0.1 +Port=7313 +Username= +Password= +AddressPrefix=35 +ScriptPrefix=94 +SecretPrefix=163 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=20000 +BlockTime=40 +FeePerByte=40 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/fujicoin--fujicoin-v0.18.0.conf b/blockchain-configuration-files/xbridge-confs/fujicoin--fujicoin-v0.18.0.conf new file mode 100644 index 00000000..745a4e70 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/fujicoin--fujicoin-v0.18.0.conf @@ -0,0 +1,21 @@ +[FJC] +Title=FujiCoin +Address= +Ip=127.0.0.1 +Port=3776 +Username= +Password= +AddressPrefix=36 +ScriptPrefix=16 +SecretPrefix=164 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000000 +BlockTime=60 +FeePerByte=4000 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/polis--v1.3.1.conf b/blockchain-configuration-files/xbridge-confs/galactrum--v1.4.0.conf similarity index 64% rename from blockchain-configuration-files/xbridge-confs/polis--v1.3.1.conf rename to blockchain-configuration-files/xbridge-confs/galactrum--v1.4.0.conf index 6ce644ec..a3f0520f 100644 --- a/blockchain-configuration-files/xbridge-confs/polis--v1.3.1.conf +++ b/blockchain-configuration-files/xbridge-confs/galactrum--v1.4.0.conf @@ -1,21 +1,21 @@ -[POLIS] -Title=Polis -Address= -Ip=127.0.0.1 -Port=24127 -Username= -Password= -AddressPrefix=55 -ScriptPrefix=56 -SecretPrefix=60 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=2000 -BlockTime=120 -FeePerByte=4 -Confirmations=0 +[ORE] +Title=Galactrum +Address= +Ip=127.0.0.1 +Port=6269 +Username= +Password= +AddressPrefix=38 +ScriptPrefix=16 +SecretPrefix=204 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=120 +FeePerByte=4 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/galilel--v3.4.0.conf b/blockchain-configuration-files/xbridge-confs/galilel--v3.4.0.conf new file mode 100644 index 00000000..04205cde --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/galilel--v3.4.0.conf @@ -0,0 +1,21 @@ +[GALI] +Title=Galilel +Address= +Ip=127.0.0.1 +Port=36002 +Username= +Password= +AddressPrefix=68 +ScriptPrefix=16 +SecretPrefix=193 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/gamblecoin--1.1.4.conf b/blockchain-configuration-files/xbridge-confs/gamblecoin--1.1.4.conf index 1d45314b..e8ca6c60 100644 --- a/blockchain-configuration-files/xbridge-confs/gamblecoin--1.1.4.conf +++ b/blockchain-configuration-files/xbridge-confs/gamblecoin--1.1.4.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=90 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/geekcash--v1.3.0.1.conf b/blockchain-configuration-files/xbridge-confs/geekcash--v1.3.0.1.conf index c40605a2..5882e982 100644 --- a/blockchain-configuration-files/xbridge-confs/geekcash--v1.3.0.1.conf +++ b/blockchain-configuration-files/xbridge-confs/geekcash--v1.3.0.1.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/gincoin--v1.3.0.0.conf b/blockchain-configuration-files/xbridge-confs/gincoin--v1.3.0.0.conf new file mode 100644 index 00000000..aeebc429 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/gincoin--v1.3.0.0.conf @@ -0,0 +1,21 @@ +[GIN] +Title=GINcoin +Address= +Ip=127.0.0.1 +Port=10211 +Username= +Password= +AddressPrefix=38 +ScriptPrefix=10 +SecretPrefix=198 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=120 +FeePerByte=4 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/gobyte--v0.12.2.4.conf b/blockchain-configuration-files/xbridge-confs/gobyte--v0.16.2.1.conf old mode 100755 new mode 100644 similarity index 88% rename from blockchain-configuration-files/xbridge-confs/gobyte--v0.12.2.4.conf rename to blockchain-configuration-files/xbridge-confs/gobyte--v0.16.2.1.conf index 43adf128..5f4a3b97 --- a/blockchain-configuration-files/xbridge-confs/gobyte--v0.12.2.4.conf +++ b/blockchain-configuration-files/xbridge-confs/gobyte--v0.16.2.1.conf @@ -1,21 +1,21 @@ -[GBX] -Title=GoByte -Address= -Ip=127.0.0.1 -Port=12454 -Username= -Password= -AddressPrefix=38 -ScriptPrefix=10 -SecretPrefix=198 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=2000 -BlockTime=150 -FeePerByte=4 -Confirmations=0 +[GBX] +Title=GoByte +Address= +Ip=127.0.0.1 +Port=12454 +Username= +Password= +AddressPrefix=38 +ScriptPrefix=10 +SecretPrefix=198 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=150 +FeePerByte=4 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/cryptodezirecash--v2.1.1.conf b/blockchain-configuration-files/xbridge-confs/goldcoin--v0.14.7.conf similarity index 62% rename from blockchain-configuration-files/xbridge-confs/cryptodezirecash--v2.1.1.conf rename to blockchain-configuration-files/xbridge-confs/goldcoin--v0.14.7.conf index 9136a290..c1e94de1 100644 --- a/blockchain-configuration-files/xbridge-confs/cryptodezirecash--v2.1.1.conf +++ b/blockchain-configuration-files/xbridge-confs/goldcoin--v0.14.7.conf @@ -1,23 +1,26 @@ -[CDZC] -Title=CryptoDezireCash -Address= +[GLC] +Title=Goldcoin Ip=127.0.0.1 -Port=35602 -Username= -Password= -AddressPrefix=30 -ScriptPrefix=63 -SecretPrefix=199 +Port=8122 +AddressPrefix=32 +ScriptPrefix=50 +SecretPrefix=160 COIN=100000000 MinimumAmount=0 -TxVersion=1 DustAmount=0 CreateTxMethod=BTC GetNewKeySupported=true ImportWithNoScanSupported=true -MinTxFee=10000 +FeePerByte=225 +MinTxFee=0 +TxVersion=1 BlockTime=120 -FeePerByte=20 Confirmations=0 +Username= +Password= +Address= TxWithTimeField=false LockCoinsSupported=false +JSONVersion= +ContentType= +CashAddrPrefix= diff --git a/blockchain-configuration-files/xbridge-confs/hash--v1.5.1.conf b/blockchain-configuration-files/xbridge-confs/hash--v1.5.1.conf new file mode 100644 index 00000000..a2b4eb87 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/hash--v1.5.1.conf @@ -0,0 +1,21 @@ +[HASH] +Title=HASH +Address= +Ip=127.0.0.1 +Port=4189 +Username= +Password= +AddressPrefix=40 +ScriptPrefix=23 +SecretPrefix=63 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/hatch--v0.14.0.3.conf b/blockchain-configuration-files/xbridge-confs/hatch--v0.14.0.3.conf index ebee0960..96ec5f32 100644 --- a/blockchain-configuration-files/xbridge-confs/hatch--v0.14.0.3.conf +++ b/blockchain-configuration-files/xbridge-confs/hatch--v0.14.0.3.conf @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=2500 BlockTime=150 FeePerByte=5 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/helium--v0.16.0.conf b/blockchain-configuration-files/xbridge-confs/helium--v0.16.0.conf index e15e6f87..8acd54d5 100644 --- a/blockchain-configuration-files/xbridge-confs/helium--v0.16.0.conf +++ b/blockchain-configuration-files/xbridge-confs/helium--v0.16.0.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/htmlcoin--v2.5.0.conf b/blockchain-configuration-files/xbridge-confs/htmlcoin--v2.5.0.conf new file mode 100644 index 00000000..f31a191f --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/htmlcoin--v2.5.0.conf @@ -0,0 +1,21 @@ +[HTML] +Title=HTMLCoin +Address= +Ip=127.0.0.1 +Port=4889 +Username= +Password= +AddressPrefix=41 +ScriptPrefix=100 +SecretPrefix=169 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=625000 +BlockTime=60 +FeePerByte=1250 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/innova--v4.3.8.8.conf b/blockchain-configuration-files/xbridge-confs/innova--v4.3.8.8.conf new file mode 100644 index 00000000..d4e9220e --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/innova--v4.3.8.8.conf @@ -0,0 +1,21 @@ +[INN] +Title=Innova +Address= +Ip=127.0.0.1 +Port=14531 +Username= +Password= +AddressPrefix=102 +ScriptPrefix=137 +SecretPrefix=230 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=30 +FeePerByte=5 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/ixcoin--v0.14.1.conf b/blockchain-configuration-files/xbridge-confs/ixcoin--v0.14.1.conf index e3ccb9e9..1b607060 100644 --- a/blockchain-configuration-files/xbridge-confs/ixcoin--v0.14.1.conf +++ b/blockchain-configuration-files/xbridge-confs/ixcoin--v0.14.1.conf @@ -1,21 +1,21 @@ -[IXC] -Title=Ixcoin -Address= -Ip=127.0.0.1 -Port=8338 -Username= -Password= -AddressPrefix=138 -ScriptPrefix=5 -SecretPrefix=128 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=10000 -BlockTime=600 -FeePerByte=20 -Confirmations=0 +[IXC] +Title=Ixcoin +Address= +Ip=127.0.0.1 +Port=8338 +Username= +Password= +AddressPrefix=138 +ScriptPrefix=5 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=600 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/jiyo--v.2.1.conf b/blockchain-configuration-files/xbridge-confs/jiyo--v.2.1.conf index 58c80f76..567e5428 100644 --- a/blockchain-configuration-files/xbridge-confs/jiyo--v.2.1.conf +++ b/blockchain-configuration-files/xbridge-confs/jiyo--v.2.1.conf @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/klks--v2.8.0.conf b/blockchain-configuration-files/xbridge-confs/klks--v2.8.0.conf new file mode 100644 index 00000000..484dfa94 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/klks--v2.8.0.conf @@ -0,0 +1,21 @@ +[KLKS] +Title=Kalkulus +Address= +Ip=127.0.0.1 +Port=51122 +Username= +Password= +AddressPrefix=46 +ScriptPrefix=13 +SecretPrefix=174 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/iop--v6.1.0.conf b/blockchain-configuration-files/xbridge-confs/kreds--v1.0.0.6.conf old mode 100755 new mode 100644 similarity index 62% rename from blockchain-configuration-files/xbridge-confs/iop--v6.1.0.conf rename to blockchain-configuration-files/xbridge-confs/kreds--v1.0.0.6.conf index e8bc6181..aacdc342 --- a/blockchain-configuration-files/xbridge-confs/iop--v6.1.0.conf +++ b/blockchain-configuration-files/xbridge-confs/kreds--v1.0.0.6.conf @@ -1,21 +1,21 @@ -[IOP] -Title=InternetofPeople -Address= -Ip=127.0.0.1 -Port=8337 -Username= -Password= -AddressPrefix=117 -ScriptPrefix=174 -SecretPrefix=49 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=10000 -BlockTime=120 -FeePerByte=20 -Confirmations=0 +[KREDS] +Title=Kreds +Address= +Ip=127.0.0.1 +Port=3850 +Username= +Password= +AddressPrefix=45 +ScriptPrefix=5 +SecretPrefix=195 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=120 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/kyd--v3.2.1.conf b/blockchain-configuration-files/xbridge-confs/kyd--v3.2.1.conf new file mode 100644 index 00000000..db6f5f02 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/kyd--v3.2.1.conf @@ -0,0 +1,21 @@ +[KYDC] +Title=KnowYourDeveloper +Address= +Ip=127.0.0.1 +Port=3435 +Username= +Password= +AddressPrefix=78 +ScriptPrefix=85 +SecretPrefix=153 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/kzcash--v0.1.9.1.conf b/blockchain-configuration-files/xbridge-confs/kzcash--v0.1.9.1.conf index 027ebc22..65319b4f 100644 --- a/blockchain-configuration-files/xbridge-confs/kzcash--v0.1.9.1.conf +++ b/blockchain-configuration-files/xbridge-confs/kzcash--v0.1.9.1.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=150 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/lbrycrd--v0.17.3.1.conf b/blockchain-configuration-files/xbridge-confs/lbrycrd--v0.17.3.1.conf new file mode 100644 index 00000000..ceb31d27 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/lbrycrd--v0.17.3.1.conf @@ -0,0 +1,21 @@ +[LBC] +Title=LBRYCredits +Address= +Ip=127.0.0.1 +Port=9245 +Username= +Password= +AddressPrefix=85 +ScriptPrefix=122 +SecretPrefix=28 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=true +MinTxFee=20000 +BlockTime=150 +FeePerByte=40 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/litecoin--v0.15.1.conf b/blockchain-configuration-files/xbridge-confs/litecoin--v0.15.1.conf index 1e2cb4bf..e5ced2f2 100755 --- a/blockchain-configuration-files/xbridge-confs/litecoin--v0.15.1.conf +++ b/blockchain-configuration-files/xbridge-confs/litecoin--v0.15.1.conf @@ -1,21 +1,21 @@ -[LTC] -Title=Litecoin -Address= -Ip=127.0.0.1 -Port=9332 -Username= -Password= -AddressPrefix=48 -ScriptPrefix=50 -SecretPrefix=176 -COIN=100000000 -MinimumAmount=0 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=false -ImportWithNoScanSupported=true -FeePerByte=200 -MinTxFee=50000 -TxVersion=1 -BlockTime=150 -Confirmations=0 +[LTC] +Title=Litecoin +Address= +Ip=127.0.0.1 +Port=9332 +Username= +Password= +AddressPrefix=48 +ScriptPrefix=50 +SecretPrefix=176 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=150 +FeePerByte=10 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/litecoin--v0.16.0.conf b/blockchain-configuration-files/xbridge-confs/litecoin--v0.16.0.conf new file mode 100644 index 00000000..e5ced2f2 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/litecoin--v0.16.0.conf @@ -0,0 +1,21 @@ +[LTC] +Title=Litecoin +Address= +Ip=127.0.0.1 +Port=9332 +Username= +Password= +AddressPrefix=48 +ScriptPrefix=50 +SecretPrefix=176 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=150 +FeePerByte=10 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/litecoin--v0.17.1.conf b/blockchain-configuration-files/xbridge-confs/litecoin--v0.17.1.conf new file mode 100644 index 00000000..e5ced2f2 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/litecoin--v0.17.1.conf @@ -0,0 +1,21 @@ +[LTC] +Title=Litecoin +Address= +Ip=127.0.0.1 +Port=9332 +Username= +Password= +AddressPrefix=48 +ScriptPrefix=50 +SecretPrefix=176 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=150 +FeePerByte=10 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/litecoin--v0.18.1.conf b/blockchain-configuration-files/xbridge-confs/litecoin--v0.18.1.conf index 5e66203d..e5ced2f2 100644 --- a/blockchain-configuration-files/xbridge-confs/litecoin--v0.18.1.conf +++ b/blockchain-configuration-files/xbridge-confs/litecoin--v0.18.1.conf @@ -10,12 +10,12 @@ ScriptPrefix=50 SecretPrefix=176 COIN=100000000 MinimumAmount=0 +TxVersion=2 DustAmount=0 CreateTxMethod=BTC GetNewKeySupported=true ImportWithNoScanSupported=true -FeePerByte=10 MinTxFee=5000 -TxVersion=2 BlockTime=150 -Confirmations=0 +FeePerByte=10 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/dogecoin--v1.10.0-dogeparty.conf b/blockchain-configuration-files/xbridge-confs/lynx--v0.16.3.9.conf old mode 100755 new mode 100644 similarity index 53% rename from blockchain-configuration-files/xbridge-confs/dogecoin--v1.10.0-dogeparty.conf rename to blockchain-configuration-files/xbridge-confs/lynx--v0.16.3.9.conf index ea0ec83e..7cdfecee --- a/blockchain-configuration-files/xbridge-confs/dogecoin--v1.10.0-dogeparty.conf +++ b/blockchain-configuration-files/xbridge-confs/lynx--v0.16.3.9.conf @@ -1,21 +1,21 @@ -[DOGE] -Title=Dogecoin -Address= -Ip=127.0.0.1 -Port=22555 -Username= -Password= -AddressPrefix=30 -ScriptPrefix=22 -SecretPrefix=158 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=false -ImportWithNoScanSupported=true -MinTxFee=100000000 -BlockTime=60 -FeePerByte=200000 -Confirmations=0 +[LYNX] +Title=Lynx +Address= +Ip=127.0.0.1 +Port=22567 +Username= +Password= +AddressPrefix=45 +ScriptPrefix=50 +SecretPrefix=173 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=100000000 +BlockTime=30 +FeePerByte=200000 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/machinecoin--v0.16.3.conf b/blockchain-configuration-files/xbridge-confs/machinecoin--v0.16.3.conf new file mode 100644 index 00000000..6aa0338a --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/machinecoin--v0.16.3.conf @@ -0,0 +1,21 @@ +[MAC] +Title=MachineCoin +Address= +Ip=127.0.0.1 +Port=40332 +Username= +Password= +AddressPrefix=50 +ScriptPrefix=20 +SecretPrefix=178 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=100000 +BlockTime=150 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/mktcoin--0.15.0.3.conf b/blockchain-configuration-files/xbridge-confs/mktcoin--0.15.0.3.conf new file mode 100644 index 00000000..c8420893 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/mktcoin--0.15.0.3.conf @@ -0,0 +1,21 @@ +[MLM] +Title=MktCoin +Address= +Ip=127.0.0.1 +Port=9276 +Username= +Password= +AddressPrefix=110 +ScriptPrefix=115 +SecretPrefix=238 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=150 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/mnpcoin--v1.2.5.conf b/blockchain-configuration-files/xbridge-confs/mnpcoin--v1.2.5.conf index ce111a5b..d628f54d 100644 --- a/blockchain-configuration-files/xbridge-confs/mnpcoin--v1.2.5.conf +++ b/blockchain-configuration-files/xbridge-confs/mnpcoin--v1.2.5.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/monacoin--monacoin-0.17.1.conf b/blockchain-configuration-files/xbridge-confs/monacoin--monacoin-0.17.1.conf new file mode 100644 index 00000000..afe46472 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/monacoin--monacoin-0.17.1.conf @@ -0,0 +1,21 @@ +[MONA] +Title=MonaCoin +Address= +Ip=127.0.0.1 +Port=9402 +Username= +Password= +AddressPrefix=50 +ScriptPrefix=55 +SecretPrefix=176 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=true +MinTxFee=1000000 +BlockTime=90 +FeePerByte=2000 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/monetaryunit--v2.0.2.conf b/blockchain-configuration-files/xbridge-confs/monetaryunit--v2.3.0.conf similarity index 91% rename from blockchain-configuration-files/xbridge-confs/monetaryunit--v2.0.2.conf rename to blockchain-configuration-files/xbridge-confs/monetaryunit--v2.3.0.conf index 3cf6e091..32a7b6f3 100644 --- a/blockchain-configuration-files/xbridge-confs/monetaryunit--v2.0.2.conf +++ b/blockchain-configuration-files/xbridge-confs/monetaryunit--v2.3.0.conf @@ -2,7 +2,7 @@ Title=MonetaryUnit Address= Ip=127.0.0.1 -Port=29683 +Port=19688 Username= Password= AddressPrefix=16 @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=40 FeePerByte=20 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/monoeci--v0.12.2.3.conf b/blockchain-configuration-files/xbridge-confs/monoeci--v0.12.2.3.conf index 03ccf14c..0942c285 100644 --- a/blockchain-configuration-files/xbridge-confs/monoeci--v0.12.2.3.conf +++ b/blockchain-configuration-files/xbridge-confs/monoeci--v0.12.2.3.conf @@ -1,21 +1,21 @@ -[XMCC] -Title=Monoeci -Address= -Ip=127.0.0.1 -Port=24156 -Username= -Password= -AddressPrefix=50 -ScriptPrefix=73 -SecretPrefix=77 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=2000 -BlockTime=120 -FeePerByte=4 -Confirmations=0 +[XMCC] +Title=Monoeci +Address= +Ip=127.0.0.1 +Port=24156 +Username= +Password= +AddressPrefix=50 +ScriptPrefix=73 +SecretPrefix=77 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=120 +FeePerByte=4 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/myriadcoin--v0.16.4.1.conf b/blockchain-configuration-files/xbridge-confs/myriadcoin--v0.16.4.1.conf new file mode 100644 index 00000000..1a7d6dec --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/myriadcoin--v0.16.4.1.conf @@ -0,0 +1,21 @@ +[XMY] +Title=Myriad +Address= +Ip=127.0.0.1 +Port=10889 +Username= +Password= +AddressPrefix=50 +ScriptPrefix=9 +SecretPrefix=178 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=20000 +BlockTime=60 +FeePerByte=40 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/namecoin--nc0.13.99-name-tab-beta1.conf b/blockchain-configuration-files/xbridge-confs/namecoin--nc0.13.99-name-tab-beta1.conf index ebb36376..883e2c81 100755 --- a/blockchain-configuration-files/xbridge-confs/namecoin--nc0.13.99-name-tab-beta1.conf +++ b/blockchain-configuration-files/xbridge-confs/namecoin--nc0.13.99-name-tab-beta1.conf @@ -1,21 +1,21 @@ -[NMC] -Title=Namecoin -Address= -Ip=127.0.0.1 -Port=8336 -Username= -Password= -AddressPrefix=52 -ScriptPrefix=13 -SecretPrefix=180 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=false -ImportWithNoScanSupported=true -MinTxFee=100000 -BlockTime=600 -FeePerByte=200 -Confirmations=0 +[NMC] +Title=Namecoin +Address= +Ip=127.0.0.1 +Port=8336 +Username= +Password= +AddressPrefix=52 +ScriptPrefix=13 +SecretPrefix=180 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=true +MinTxFee=100000 +BlockTime=600 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/nativecoin--1.2.conf b/blockchain-configuration-files/xbridge-confs/nativecoin--1.2.conf new file mode 100644 index 00000000..d54adb88 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/nativecoin--1.2.conf @@ -0,0 +1,21 @@ +[N8V] +Title=NativeCoin +Address= +Ip=127.0.0.1 +Port=16741 +Username= +Password= +AddressPrefix=53 +ScriptPrefix=122 +SecretPrefix=112 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=20000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/nix--v3.0.7.conf b/blockchain-configuration-files/xbridge-confs/nix--v3.0.7.conf new file mode 100644 index 00000000..9baddd34 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/nix--v3.0.7.conf @@ -0,0 +1,21 @@ +[NIX] +Title=NIX +Address= +Ip=127.0.0.1 +Port=6215 +Username= +Password= +AddressPrefix=38 +ScriptPrefix=53 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=120 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/nodium--3.0.6.conf b/blockchain-configuration-files/xbridge-confs/nodium--3.0.6.conf index 2bab50a6..11c7ba68 100644 --- a/blockchain-configuration-files/xbridge-confs/nodium--3.0.6.conf +++ b/blockchain-configuration-files/xbridge-confs/nodium--3.0.6.conf @@ -1,21 +1,21 @@ -[XN] -Title=Nodium -Address= -Ip=127.0.0.1 -Port=56000 -Username= -Password= -AddressPrefix=53 -ScriptPrefix=30 -SecretPrefix=212 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=10000 -BlockTime=60 -FeePerByte=20 -Confirmations=0 +[XN] +Title=Nodium +Address= +Ip=127.0.0.1 +Port=56000 +Username= +Password= +AddressPrefix=53 +ScriptPrefix=30 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/noir--v2.1.0.9.conf b/blockchain-configuration-files/xbridge-confs/noir--v2.1.0.9.conf new file mode 100644 index 00000000..c000b3ab --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/noir--v2.1.0.9.conf @@ -0,0 +1,21 @@ +[NOR] +Title=Noir +Address= +Ip=127.0.0.1 +Port=8822 +Username= +Password= +AddressPrefix=80 +ScriptPrefix=7 +SecretPrefix=208 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=100000 +BlockTime=150 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/northern--3.3.1.conf b/blockchain-configuration-files/xbridge-confs/northern--3.3.1.conf new file mode 100644 index 00000000..c2c553a6 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/northern--3.3.1.conf @@ -0,0 +1,21 @@ +[NORT] +Title=Northern +Address= +Ip=127.0.0.1 +Port=6943 +Username= +Password= +AddressPrefix=53 +ScriptPrefix=6 +SecretPrefix=46 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/nyerium--v1.0.3.conf b/blockchain-configuration-files/xbridge-confs/nyerium--v1.0.3.conf index a971a81f..b5ad90cd 100644 --- a/blockchain-configuration-files/xbridge-confs/nyerium--v1.0.3.conf +++ b/blockchain-configuration-files/xbridge-confs/nyerium--v1.0.3.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/nyx--v2.0.0.0.conf b/blockchain-configuration-files/xbridge-confs/nyx--v2.0.0.0.conf index 94c89deb..4b40c09a 100644 --- a/blockchain-configuration-files/xbridge-confs/nyx--v2.0.0.0.conf +++ b/blockchain-configuration-files/xbridge-confs/nyx--v2.0.0.0.conf @@ -1,21 +1,21 @@ -[NYX] -Title=NyxCoin -Address= -Ip=127.0.0.1 -Port=4331 -Username= -Password= -AddressPrefix=53 -ScriptPrefix=20 -SecretPrefix=139 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=2000 -BlockTime=120 -FeePerByte=4 -Confirmations=0 +[NYX] +Title=NyxCoin +Address= +Ip=127.0.0.1 +Port=4331 +Username= +Password= +AddressPrefix=53 +ScriptPrefix=20 +SecretPrefix=139 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=120 +FeePerByte=4 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/odin--v1.6.6.conf b/blockchain-configuration-files/xbridge-confs/odin--v1.6.6.conf new file mode 100644 index 00000000..3b105684 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/odin--v1.6.6.conf @@ -0,0 +1,21 @@ +[ODIN] +Title=Odin +Address= +Ip=127.0.0.1 +Port=22101 +Username= +Password= +AddressPrefix=115 +ScriptPrefix=57 +SecretPrefix=138 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/ohmc--2.4.0.0.conf b/blockchain-configuration-files/xbridge-confs/ohmc--2.4.0.0.conf new file mode 100644 index 00000000..78d34534 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/ohmc--2.4.0.0.conf @@ -0,0 +1,21 @@ +[OHMC] +Title=Ohmcoin +Address= +Ip=127.0.0.1 +Port=52021 +Username= +Password= +AddressPrefix=80 +ScriptPrefix=13 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=30 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/opcoinx--v2.0.0.conf b/blockchain-configuration-files/xbridge-confs/opcoinx--v2.0.0.conf index bb43c3f9..4770b485 100644 --- a/blockchain-configuration-files/xbridge-confs/opcoinx--v2.0.0.conf +++ b/blockchain-configuration-files/xbridge-confs/opcoinx--v2.0.0.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=5000000 BlockTime=60 FeePerByte=20000 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/pacglobal--v0.15-da839021c.conf b/blockchain-configuration-files/xbridge-confs/pacglobal--v0.15-da839021c.conf index 0660d458..87aaea68 100644 --- a/blockchain-configuration-files/xbridge-confs/pacglobal--v0.15-da839021c.conf +++ b/blockchain-configuration-files/xbridge-confs/pacglobal--v0.15-da839021c.conf @@ -13,11 +13,9 @@ MinimumAmount=0 TxVersion=1 DustAmount=0 CreateTxMethod=BTC -MinTxFee=25000000 -BlockTime=150 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=25000000 +BlockTime=150 FeePerByte=100000 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/particl--v0.19.2.5.conf b/blockchain-configuration-files/xbridge-confs/particl--v0.19.2.5.conf new file mode 100644 index 00000000..e060014a --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/particl--v0.19.2.5.conf @@ -0,0 +1,21 @@ +[PART] +Title=Particl +Address= +Ip=127.0.0.1 +Port=51735 +Username= +Password= +AddressPrefix=56 +ScriptPrefix=60 +SecretPrefix=108 +COIN=100000000 +MinimumAmount=0 +TxVersion=160 +DustAmount=0 +CreateTxMethod=PART +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=120 +FeePerByte=500 +Confirmations=0 diff --git a/blockchain-configuration-files/xbridge-confs/phore--v1.3.3.1.conf b/blockchain-configuration-files/xbridge-confs/phore--v1.7.1.conf similarity index 94% rename from blockchain-configuration-files/xbridge-confs/phore--v1.3.3.1.conf rename to blockchain-configuration-files/xbridge-confs/phore--v1.7.1.conf index a68f31ef..e2ef37e2 100644 --- a/blockchain-configuration-files/xbridge-confs/phore--v1.3.3.1.conf +++ b/blockchain-configuration-files/xbridge-confs/phore--v1.7.1.conf @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/pivx--v5.5.0.conf b/blockchain-configuration-files/xbridge-confs/pivx--v5.5.0.conf index 2955cea3..e02193aa 100644 --- a/blockchain-configuration-files/xbridge-confs/pivx--v5.5.0.conf +++ b/blockchain-configuration-files/xbridge-confs/pivx--v5.5.0.conf @@ -2,7 +2,7 @@ Title=PIVX Address= Ip=127.0.0.1 -Port=52473 +Port=51473 Username= Password= AddressPrefix=30 @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/placeh--2.0.30.5.conf b/blockchain-configuration-files/xbridge-confs/placeh--2.0.30.5.conf index 905c67e3..49620484 100644 --- a/blockchain-configuration-files/xbridge-confs/placeh--2.0.30.5.conf +++ b/blockchain-configuration-files/xbridge-confs/placeh--2.0.30.5.conf @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=5000 BlockTime=60 FeePerByte=20 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/pura--v1.3.7.conf b/blockchain-configuration-files/xbridge-confs/pura--v1.3.7.conf new file mode 100644 index 00000000..92aa8f25 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/pura--v1.3.7.conf @@ -0,0 +1,21 @@ +[PURA] +Title=Pura +Address= +Ip=127.0.0.1 +Port=55555 +Username= +Password= +AddressPrefix=55 +ScriptPrefix=16 +SecretPrefix=150 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=150 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/qbiccoin--v1.1.conf b/blockchain-configuration-files/xbridge-confs/qbiccoin--v1.1.conf new file mode 100644 index 00000000..24b07ec6 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/qbiccoin--v1.1.conf @@ -0,0 +1,21 @@ +[QBIC] +Title=Qbic +Address= +Ip=127.0.0.1 +Port=37196 +Username= +Password= +AddressPrefix=58 +ScriptPrefix=13 +SecretPrefix=251 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/qtum--mainnet-ignition-v0.19.1.conf b/blockchain-configuration-files/xbridge-confs/qtum--mainnet-ignition-v0.19.1.conf new file mode 100644 index 00000000..5ffda99d --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/qtum--mainnet-ignition-v0.19.1.conf @@ -0,0 +1,21 @@ +[QTUM] +Title=Qtum +Address= +Ip=127.0.0.1 +Port=3889 +Username= +Password= +AddressPrefix=58 +ScriptPrefix=50 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=true +MinTxFee=625000 +BlockTime=150 +FeePerByte=1250 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/rapids--v2.0.0.0-b784ecbf4d.conf b/blockchain-configuration-files/xbridge-confs/rapids--v2.0.0.0-b784ecbf4d.conf new file mode 100644 index 00000000..e4bc1464 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/rapids--v2.0.0.0-b784ecbf4d.conf @@ -0,0 +1,21 @@ +[RPD] +Title=Rapids +Address= +Ip=127.0.0.1 +Port=28731 +Username= +Password= +AddressPrefix=61 +ScriptPrefix=6 +SecretPrefix=46 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/rapture--v1.1.2.2.conf b/blockchain-configuration-files/xbridge-confs/rapture--v1.1.2.2.conf index 8eec9124..2bd330d4 100644 --- a/blockchain-configuration-files/xbridge-confs/rapture--v1.1.2.2.conf +++ b/blockchain-configuration-files/xbridge-confs/rapture--v1.1.2.2.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=120 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/raven--v0.15.99.0.conf b/blockchain-configuration-files/xbridge-confs/raven--v4.1.0.conf similarity index 80% rename from blockchain-configuration-files/xbridge-confs/raven--v0.15.99.0.conf rename to blockchain-configuration-files/xbridge-confs/raven--v4.1.0.conf index 56201e4a..295e7d3b 100644 --- a/blockchain-configuration-files/xbridge-confs/raven--v0.15.99.0.conf +++ b/blockchain-configuration-files/xbridge-confs/raven--v4.1.0.conf @@ -1,21 +1,21 @@ -[RVN] -Title=Ravencoin -Address= -Ip=127.0.0.1 -Port=8766 -Username= -Password= -AddressPrefix=60 -ScriptPrefix=122 -SecretPrefix=128 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=2000 -BlockTime=60 -FeePerByte=4 -Confirmations=0 +[RVN] +Title=Ravencoin +Address= +Ip=127.0.0.1 +Port=8766 +Username= +Password= +AddressPrefix=60 +ScriptPrefix=122 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=15000 +BlockTime=60 +FeePerByte=2500 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/reecore--v1.4.2.2.conf b/blockchain-configuration-files/xbridge-confs/reecore--v1.4.2.2.conf index 136a4028..ceb27719 100644 --- a/blockchain-configuration-files/xbridge-confs/reecore--v1.4.2.2.conf +++ b/blockchain-configuration-files/xbridge-confs/reecore--v1.4.2.2.conf @@ -13,11 +13,9 @@ MinimumAmount=0 TxVersion=1 DustAmount=0 CreateTxMethod=BTC -MinTxFee=5000 -BlockTime=60 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=5000 +BlockTime=60 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/scribe--v0.2.conf b/blockchain-configuration-files/xbridge-confs/scribe--v0.2.conf index bab88779..80e2b8d4 100644 --- a/blockchain-configuration-files/xbridge-confs/scribe--v0.2.conf +++ b/blockchain-configuration-files/xbridge-confs/scribe--v0.2.conf @@ -18,4 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=1000 BlockTime=90 FeePerByte=2 -Confirmations=0 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/securecloud--v2.5.1.1.conf b/blockchain-configuration-files/xbridge-confs/securecloud--v2.5.1.1.conf new file mode 100644 index 00000000..0a09f514 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/securecloud--v2.5.1.1.conf @@ -0,0 +1,21 @@ +[SCN] +Title=SecureCloudNet +Address= +Ip=127.0.0.1 +Port=9191 +Username= +Password= +AddressPrefix=125 +ScriptPrefix=6 +SecretPrefix=46 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/send--1.2.0.5.conf b/blockchain-configuration-files/xbridge-confs/send--1.2.0.5.conf new file mode 100644 index 00000000..51b39e11 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/send--1.2.0.5.conf @@ -0,0 +1,21 @@ +[SEND] +Title=SocialSend +Address= +Ip=127.0.0.1 +Port=50051 +Username= +Password= +AddressPrefix=63 +ScriptPrefix=13 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=30 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/sequence--v1.3.3.0.conf b/blockchain-configuration-files/xbridge-confs/sequence--v1.3.3.0.conf new file mode 100644 index 00000000..2a3368ea --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/sequence--v1.3.3.0.conf @@ -0,0 +1,21 @@ +[SEQ] +Title=Sequence +Address= +Ip=127.0.0.1 +Port=16663 +Username= +Password= +AddressPrefix=63 +ScriptPrefix=64 +SecretPrefix=170 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=200000 +BlockTime=64 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/phore--v1.3.0.conf b/blockchain-configuration-files/xbridge-confs/shekel--1.5.0.conf old mode 100755 new mode 100644 similarity index 74% rename from blockchain-configuration-files/xbridge-confs/phore--v1.3.0.conf rename to blockchain-configuration-files/xbridge-confs/shekel--1.5.0.conf index a7d14036..9e4552d9 --- a/blockchain-configuration-files/xbridge-confs/phore--v1.3.0.conf +++ b/blockchain-configuration-files/xbridge-confs/shekel--1.5.0.conf @@ -1,21 +1,21 @@ -[PHR] -Title=Phore -Address= -Ip=127.0.0.1 -Port=11772 -Username= -Password= -AddressPrefix=55 -ScriptPrefix=13 -SecretPrefix=212 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=10000 -BlockTime=60 -FeePerByte=20 -Confirmations=0 +[JEW] +Title=Shekel +Address= +Ip=127.0.0.1 +Port=5501 +Username= +Password= +AddressPrefix=43 +ScriptPrefix=13 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/sibcoin--v0.17.0.0.conf b/blockchain-configuration-files/xbridge-confs/sibcoin--v0.17.0.0.conf new file mode 100644 index 00000000..bcfb2ee6 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/sibcoin--v0.17.0.0.conf @@ -0,0 +1,21 @@ +[SIB] +Title=Sibcoin +Address= +Ip=127.0.0.1 +Port=1944 +Username= +Password= +AddressPrefix=63 +ScriptPrefix=40 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=150 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/sparks--v0.12.4.3.conf b/blockchain-configuration-files/xbridge-confs/sparks--v0.12.4.3.conf new file mode 100644 index 00000000..a397d86b --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/sparks--v0.12.4.3.conf @@ -0,0 +1,21 @@ +[SPK] +Title=Sparks +Address= +Ip=127.0.0.1 +Port=8892 +Username= +Password= +AddressPrefix=38 +ScriptPrefix=10 +SecretPrefix=198 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=2000 +BlockTime=120 +FeePerByte=4 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/stakecubecoin--v3.0.1.conf b/blockchain-configuration-files/xbridge-confs/stakecubecoin--v3.0.1.conf new file mode 100644 index 00000000..8ba80613 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/stakecubecoin--v3.0.1.conf @@ -0,0 +1,21 @@ +[SCC] +Title=StakeCubeCoin +Address= +Ip=127.0.0.1 +Port=39999 +Username= +Password= +AddressPrefix=125 +ScriptPrefix=117 +SecretPrefix=253 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=1000 +BlockTime=120 +FeePerByte=3 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/straks--1.14.7.5.conf b/blockchain-configuration-files/xbridge-confs/straks--1.14.7.5.conf new file mode 100644 index 00000000..70f5c1ee --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/straks--1.14.7.5.conf @@ -0,0 +1,21 @@ +[STAK] +Title=STRAKS +Address= +Ip=127.0.0.1 +Port=7574 +Username= +Password= +AddressPrefix=63 +ScriptPrefix=5 +SecretPrefix=204 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/swiftcash--3.0.5.conf b/blockchain-configuration-files/xbridge-confs/swiftcash--3.0.5.conf new file mode 100644 index 00000000..0f65ebf9 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/swiftcash--3.0.5.conf @@ -0,0 +1,21 @@ +[SWIFT] +Title=SwiftCash +Address= +Ip=127.0.0.1 +Port=8543 +Username= +Password= +AddressPrefix=63 +ScriptPrefix=18 +SecretPrefix=152 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +MinTxFee=100000 +BlockTime=600 +GetNewKeySupported=false +ImportWithNoScanSupported=true +FeePerByte=12 +Confirmations=1 diff --git a/blockchain-configuration-files/xbridge-confs/syscoin--v4.0.3.conf b/blockchain-configuration-files/xbridge-confs/syscoin--v4.4.2.conf similarity index 95% rename from blockchain-configuration-files/xbridge-confs/syscoin--v4.0.3.conf rename to blockchain-configuration-files/xbridge-confs/syscoin--v4.4.2.conf index 9539338b..d1ed4e85 100644 --- a/blockchain-configuration-files/xbridge-confs/syscoin--v4.0.3.conf +++ b/blockchain-configuration-files/xbridge-confs/syscoin--v4.4.2.conf @@ -13,9 +13,9 @@ MinimumAmount=0 TxVersion=1 DustAmount=0 CreateTxMethod=BTC -MinTxFee=20000 -BlockTime=60 GetNewKeySupported=true ImportWithNoScanSupported=true +MinTxFee=20000 +BlockTime=150 FeePerByte=40 Confirmations=0 diff --git a/blockchain-configuration-files/xbridge-confs/systest--v4.3.0.conf b/blockchain-configuration-files/xbridge-confs/systest--v4.3.0.conf new file mode 100644 index 00000000..a0da033f --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/systest--v4.3.0.conf @@ -0,0 +1,21 @@ +[TSYS] +Title=Syscoin Testnet +Address= +Ip=127.0.0.1 +Port=18370 +Username= +Password= +AddressPrefix=65 +ScriptPrefix=196 +SecretPrefix=239 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=20000 +BlockTime=150 +FeePerByte=40 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/terracoin--v0.12.2.4.conf b/blockchain-configuration-files/xbridge-confs/terracoin--v0.12.2.4.conf new file mode 100644 index 00000000..01ced6d2 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/terracoin--v0.12.2.4.conf @@ -0,0 +1,21 @@ +[TRC] +Title=Terracoin +Address= +Ip=127.0.0.1 +Port=13332 +Username= +Password= +AddressPrefix=0 +ScriptPrefix=5 +SecretPrefix=128 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=120 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/tribe--1.0.2.conf b/blockchain-configuration-files/xbridge-confs/tribe--1.0.2.conf new file mode 100644 index 00000000..8f559275 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/tribe--1.0.2.conf @@ -0,0 +1,21 @@ +[TRB] +Title=Tribe +Address= +Ip=127.0.0.1 +Port=9499 +Username= +Password= +AddressPrefix=30 +ScriptPrefix=16 +SecretPrefix=204 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=150 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/ufocoin--v0.18.0.conf b/blockchain-configuration-files/xbridge-confs/ufocoin--v0.18.0.conf new file mode 100644 index 00000000..f1493b61 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/ufocoin--v0.18.0.conf @@ -0,0 +1,21 @@ +[UFO] +Title=UniformFiscalObject +Address= +Ip=127.0.0.1 +Port=9888 +Username= +Password= +AddressPrefix=27 +ScriptPrefix=68 +SecretPrefix=155 +COIN=100000000 +MinimumAmount=0 +TxVersion=2 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=200000 +BlockTime=90 +FeePerByte=400 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/unobtanium--v0.10.1.1.conf b/blockchain-configuration-files/xbridge-confs/unobtanium--v0.11.0.conf similarity index 85% rename from blockchain-configuration-files/xbridge-confs/unobtanium--v0.10.1.1.conf rename to blockchain-configuration-files/xbridge-confs/unobtanium--v0.11.0.conf index 0ab5333d..784edc18 100644 --- a/blockchain-configuration-files/xbridge-confs/unobtanium--v0.10.1.1.conf +++ b/blockchain-configuration-files/xbridge-confs/unobtanium--v0.11.0.conf @@ -1,21 +1,21 @@ -[UNO] -Title=Unobtanium -Address= -Ip=127.0.0.1 -Port=65535 -Username= -Password= -AddressPrefix=130 -ScriptPrefix=30 -SecretPrefix=224 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=1000 -BlockTime=180 -FeePerByte=2 -Confirmations=0 +[UNO] +Title=Unobtanium +Address= +Ip=127.0.0.1 +Port=65535 +Username= +Password= +AddressPrefix=130 +ScriptPrefix=30 +SecretPrefix=224 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=1000 +BlockTime=180 +FeePerByte=3 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/vertcoin--0.14.0.conf b/blockchain-configuration-files/xbridge-confs/vertcoin--0.14.0.conf new file mode 100644 index 00000000..6fcb30b3 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/vertcoin--0.14.0.conf @@ -0,0 +1,21 @@ +[VTC] +Title=Vertcoin +Address= +Ip=127.0.0.1 +Port=5888 +Username= +Password= +AddressPrefix=71 +ScriptPrefix=5 +SecretPrefix=199 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=200000 +BlockTime=150 +FeePerByte=400 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/viacoin--v0.16.3.conf b/blockchain-configuration-files/xbridge-confs/viacoin--v0.16.3.conf new file mode 100644 index 00000000..883f84fe --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/viacoin--v0.16.3.conf @@ -0,0 +1,21 @@ +[VIA] +Title=Viacoin +Address= +Ip=127.0.0.1 +Port=5222 +Username= +Password= +AddressPrefix=71 +ScriptPrefix=33 +SecretPrefix=199 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=false +ImportWithNoScanSupported=false +MinTxFee=100000 +BlockTime=24 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/vitae--v4.4.0.3.conf b/blockchain-configuration-files/xbridge-confs/vitae--v4.4.0.3.conf new file mode 100644 index 00000000..a3942a95 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/vitae--v4.4.0.3.conf @@ -0,0 +1,21 @@ +[VITAE] +Title=Vitae +Address= +Ip=127.0.0.1 +Port=8764 +Username= +Password= +AddressPrefix=71 +ScriptPrefix=13 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=45 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/vivo--v0.12.1.17.conf b/blockchain-configuration-files/xbridge-confs/vivo--v0.12.1.17.conf new file mode 100644 index 00000000..c5321c83 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/vivo--v0.12.1.17.conf @@ -0,0 +1,21 @@ +[VIVO] +Title=VIVO +Address= +Ip=127.0.0.1 +Port=12846 +Username= +Password= +AddressPrefix=70 +ScriptPrefix=10 +SecretPrefix=198 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=120 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/vsync--v3.8.7.6.conf b/blockchain-configuration-files/xbridge-confs/vsync--v3.8.7.6.conf new file mode 100644 index 00000000..bbb111a8 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/vsync--v3.8.7.6.conf @@ -0,0 +1,21 @@ +[VSX] +Title=Vsync +Address= +Ip=127.0.0.1 +Port=65011 +Username= +Password= +AddressPrefix=70 +ScriptPrefix=13 +SecretPrefix=212 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/wagerr--v3.1.0.conf b/blockchain-configuration-files/xbridge-confs/wagerr--v3.1.0.conf new file mode 100644 index 00000000..df7b0237 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/wagerr--v3.1.0.conf @@ -0,0 +1,21 @@ +[WGR] +Title=Wagerr +Address= +Ip=127.0.0.1 +Port=55003 +Username= +Password= +AddressPrefix=73 +ScriptPrefix=63 +SecretPrefix=199 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=100000 +BlockTime=64 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/verge--v6.0.2.conf b/blockchain-configuration-files/xbridge-confs/xaya--v1.4.1.conf similarity index 56% rename from blockchain-configuration-files/xbridge-confs/verge--v6.0.2.conf rename to blockchain-configuration-files/xbridge-confs/xaya--v1.4.1.conf index 7d31f7cc..be76aca7 100644 --- a/blockchain-configuration-files/xbridge-confs/verge--v6.0.2.conf +++ b/blockchain-configuration-files/xbridge-confs/xaya--v1.4.1.conf @@ -1,25 +1,26 @@ -[XVG] -Title=Verge +[CHI] +Title=Xaya Address= Ip=127.0.0.1 -Port=20102 +Port=8396 Username= Password= -AddressPrefix=30 -ScriptPrefix=33 -SecretPrefix=158 -COIN=1000000 +AddressPrefix=28 +ScriptPrefix=30 +SecretPrefix=130 +COIN=100000000 MinimumAmount=0 -TxVersion=1 +TxVersion=2 DustAmount=0 CreateTxMethod=BTC GetNewKeySupported=true ImportWithNoScanSupported=true -MinTxFee=400000 +MinTxFee=32000 BlockTime=30 -FeePerByte=200 +FeePerByte=1000 Confirmations=0 -TxWithTimeField=true +TxWithTimeField=false LockCoinsSupported=false JSONVersion= ContentType= +CashAddrPrefix= diff --git a/blockchain-configuration-files/xbridge-confs/xcurrency--v3.0.05.conf b/blockchain-configuration-files/xbridge-confs/xcurrency--v3.0.05.conf index dd152163..21282a97 100755 --- a/blockchain-configuration-files/xbridge-confs/xcurrency--v3.0.05.conf +++ b/blockchain-configuration-files/xbridge-confs/xcurrency--v3.0.05.conf @@ -1,21 +1,21 @@ -[XC] -Title=XCurrency -Address= -Ip=127.0.0.1 -Port=14332 -Username= -Password= -AddressPrefix=75 -ScriptPrefix=8 -SecretPrefix=203 -COIN=100000000 -MinimumAmount=0 -TxVersion=1 -DustAmount=0 -CreateTxMethod=BTC -GetNewKeySupported=true -ImportWithNoScanSupported=true -MinTxFee=10000 -BlockTime=60 -FeePerByte=20 -Confirmations=0 +[XC] +Title=XCurrency +Address= +Ip=127.0.0.1 +Port=14332 +Username= +Password= +AddressPrefix=75 +ScriptPrefix=8 +SecretPrefix=203 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=10000 +BlockTime=60 +FeePerByte=20 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/zcoin--v0.14.0.1.conf b/blockchain-configuration-files/xbridge-confs/zcoin--v0.14.0.1.conf new file mode 100644 index 00000000..51c28f50 --- /dev/null +++ b/blockchain-configuration-files/xbridge-confs/zcoin--v0.14.0.1.conf @@ -0,0 +1,21 @@ +[XZC] +Title=ZCoin +Address= +Ip=127.0.0.1 +Port=8888 +Username= +Password= +AddressPrefix=82 +ScriptPrefix=7 +SecretPrefix=210 +COIN=100000000 +MinimumAmount=0 +TxVersion=1 +DustAmount=0 +CreateTxMethod=BTC +GetNewKeySupported=true +ImportWithNoScanSupported=true +MinTxFee=100000 +BlockTime=600 +FeePerByte=200 +Confirmations=0 \ No newline at end of file diff --git a/blockchain-configuration-files/xbridge-confs/cryptonodes--v1.4.3.conf b/blockchain-configuration-files/xbridge-confs/zenzo--v2.1.0.conf similarity index 68% rename from blockchain-configuration-files/xbridge-confs/cryptonodes--v1.4.3.conf rename to blockchain-configuration-files/xbridge-confs/zenzo--v2.1.0.conf index 6538201a..e3a012ca 100644 --- a/blockchain-configuration-files/xbridge-confs/cryptonodes--v1.4.3.conf +++ b/blockchain-configuration-files/xbridge-confs/zenzo--v2.1.0.conf @@ -1,23 +1,23 @@ -[CNMC] -Title=Cryptonodes +[ZNZ] +Title=ZENZOCore Address= Ip=127.0.0.1 -Port=34219 +Port=26211 Username= Password= -AddressPrefix=88 -ScriptPrefix=16 -SecretPrefix=81 +AddressPrefix=81 +ScriptPrefix=53 +SecretPrefix=215 COIN=100000000 MinimumAmount=0 TxVersion=1 DustAmount=0 CreateTxMethod=BTC +MinTxFee=0 +BlockTime=60 GetNewKeySupported=true ImportWithNoScanSupported=true -MinTxFee=10000 -BlockTime=60 -FeePerByte=20 +FeePerByte=25 Confirmations=0 TxWithTimeField=false LockCoinsSupported=false diff --git a/blockchain-configuration-files/xbridge-confs/zsub1x--1.4.0.conf b/blockchain-configuration-files/xbridge-confs/zsub1x--1.4.0.conf index ca3ef4e4..a4beeac0 100644 --- a/blockchain-configuration-files/xbridge-confs/zsub1x--1.4.0.conf +++ b/blockchain-configuration-files/xbridge-confs/zsub1x--1.4.0.conf @@ -18,6 +18,4 @@ ImportWithNoScanSupported=true MinTxFee=10000 BlockTime=60 FeePerByte=20 -Confirmations=0 -TxWithTimeField=false -LockCoinsSupported=false +Confirmations=0 \ No newline at end of file From d6d986a8f7acfd2e8992ce4de74064c25b9c85cf Mon Sep 17 00:00:00 2001 From: tryiou Date: Fri, 17 Nov 2023 16:53:34 +0100 Subject: [PATCH 9/9] enforce "--in-process-gpu" electron param for linux os --- index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 05cff3e7..aab68249 100644 --- a/index.js +++ b/index.js @@ -21,6 +21,7 @@ const { openUnverifiedAssetWindow } = require('./src-back/windows/unverified-ass const { openMessageBox } = require('./src-back/windows/message-box'); const { logger } = require('./src-back/logger'); const { RecursiveInterval } = require('./src-back/recursive-interval'); +const { app, BrowserWindow: ElectronBrowserWindow, Menu, ipcMain } = electron; const versionDirectories = [ blocknetDir4, @@ -54,7 +55,9 @@ math.config({ const md = new MarkdownIt(); -const { app, BrowserWindow: ElectronBrowserWindow, Menu, ipcMain } = electron; +if(process.platform === 'linux') { + app.commandLine.appendSwitch('--in-process-gpu'); +} autoUpdater.autoDownload = false; autoUpdater.autoInstallOnAppQuit = true;