UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.7 kB
/** * **github.com/10gic/vanitygen-plusplus** - A vanity address generator for BTC, ETH, LTC, TRX and 100+ more crypto currencies. * * @domain `github.com/10gic/vanitygen-plusplus` * @programs `vanitygen++`, `keyconv`, `oclvanitygen++`, `oclvanityminer` * @version `0.2.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/10gic/vanitygen-plusplus` * @dependencies `openssl.org^1.1`, `curl.se^8`, `pcre.org^8` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcom10gicvanitygenplusplus * console.log(pkg.name) // "github.com/10gic/vanitygen-plusplus" * console.log(pkg.description) // "A vanity address generator for BTC, ETH, LTC, T..." * console.log(pkg.programs) // ["vanitygen++", "keyconv", ...] * console.log(pkg.versions[0]) // "0.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/10gic/vanitygen-plusplus.md * @see https://ts-pkgx.netlify.app/usage */ export declare const githubcom10gicvanitygenplusplusPackage: { /** * The display name of this package. */ name: 'github.com/10gic/vanitygen-plusplus'; /** * The canonical domain name for this package. */ domain: 'github.com/10gic/vanitygen-plusplus'; /** * Brief description of what this package does. */ description: 'A vanity address generator for BTC, ETH, LTC, TRX and 100+ more crypto currencies.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/10gic/vanitygen-plusplus/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/10gic/vanitygen-plusplus'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['vanitygen++', 'keyconv', 'oclvanitygen++', 'oclvanityminer']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'curl.se^8', 'pcre.org^8']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/10gic/vanitygen-plusplus -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/10gic/vanitygen-plusplus' }; export type Githubcom10gicvanitygenplusplusPackage = typeof githubcom10gicvanitygenplusplusPackage