/** * **elementsproject** - Open Source implementation of advanced blockchain features extending the Bitcoin protocol * * @domain `elementsproject.org` * @programs `bench_bitcoin`, `elements-cli`, `elements-tx`, `elements-util`, `elements-wallet`, ... (+2 more) * @version `23.3.1` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install elementsproject.org` * @dependencies `boost.org^1.64`, `libevent.org`, `oracle.com/berkeley-db` * @buildDependencies `gnu.org/automake`, `gnu.org/autoconf`, `gnu.org/libtool` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.elementsprojectorg * console.log(pkg.name) // "elementsproject" * console.log(pkg.description) // "Open Source implementation of advanced blockcha..." * console.log(pkg.programs) // ["bench_bitcoin", "elements-cli", ...] * console.log(pkg.versions[0]) // "23.3.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/elementsproject-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const elementsprojectorgPackage: { /** * The display name of this package. */ name: 'elementsproject'; /** * The canonical domain name for this package. */ domain: 'elementsproject.org'; /** * Brief description of what this package does. */ description: 'Open Source implementation of advanced blockchain features extending the Bitcoin protocol'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/elementsproject.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/ElementsProject/elements'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install elementsproject.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +elementsproject.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install elementsproject.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bench_bitcoin', 'elements-cli', 'elements-tx', 'elements-util', 'elements-wallet', 'elementsd', 'test_bitcoin']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['boost.org^1.64', 'libevent.org', 'oracle.com/berkeley-db']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/automake', 'gnu.org/autoconf', 'gnu.org/libtool']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['23.3.1', '23.3.0', '23.2.7', '23.2.6', '23.2.5', '23.2.4', '23.2.3', '23.2.2', '23.2.1', '22.1.1']; aliases: readonly [] }; export type ElementsprojectorgPackage = typeof elementsprojectorgPackage