mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-04 02:54:00 +01:00
39 lines
1.7 KiB
Markdown
39 lines
1.7 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.4.0`, here is how you can use the dependencies in your projects:
|
|
|
|
```
|
|
libraryDependencies += "org.bitcoin-s" % "bitcoin-s-secp256k1jni" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-core" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-chain" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-bitcoind-rpc" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-eclair-rpc" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-key-manager" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-node" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-wallet" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-testkit" % "0.4.0"
|
|
|
|
libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-zmq" % "0.4.0"
|
|
|
|
```
|