mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-15 04:11:26 +01:00
* Fix typos * Collection minor fixes Removes redundant .headOption on options Replaces .exists(_ == ???) with .contains(???) Replaces option == None with option.isEmpty
47 lines
2 KiB
Markdown
47 lines
2 KiB
Markdown

|
|
[](https://github.com/bitcoin-s/bitcoin-s/actions) [](https://coveralls.io/github/bitcoin-s/bitcoin-s?branch=master) [](https://mvnrepository.com/artifact/org.bitcoin-s) [](https://gitter.im/bitcoin-s-core)
|
|
|
|
Feature-rich toolkit for making Bitcoin and Lightning applications
|
|
on the JVM.
|
|
|
|
For a complete guide on how to get started with Bitcoin-S, see our website at
|
|
[Bitcoin-S.org](https://bitcoin-s.org)
|
|
|
|
### Getting started
|
|
|
|
https://bitcoin-s.org/docs/getting-setup
|
|
|
|
### Adding bitcoin-s to your library
|
|
|
|
The latest release of bitcoin-s is `v0.5.0`, here is how you can use the dependencies in your projects:
|
|
|
|
```
|
|
libraryDependencies += "org.bitcoin-s" % "bitcoin-s-secp256k1jni" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-core" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-crypto" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-chain" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-dlc-oracle" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-db-commons" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-fee-provider" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-bitcoind-rpc" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-eclair-rpc" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-key-manager" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-node" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-wallet" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-testkit" % "0.5.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-zmq" % "0.5.0"
|
|
|
|
```
|