1
0
Fork 0
mirror of https://github.com/bitcoin-s/bitcoin-s.git synced 2025-03-25 09:02:11 +01:00
Bitcoin Implementation in Scala
Find a file
2021-02-12 13:32:43 -06:00
.github Bump Eclair version () 2021-01-22 10:47:19 -06:00
app Update scalafmt () 2021-02-03 16:37:12 -06:00
app-commons Update scalafmt () 2021-02-03 16:37:12 -06:00
app-commons-test/src/test/scala/org/bitcoins/commons 2020 12 19 enable test compileropts () 2020-12-20 07:09:07 -06:00
bench Update scalafmt () 2021-02-03 16:37:12 -06:00
bitcoin-s-docs Change versions in readme () 2020-09-27 08:16:59 -05:00
bitcoind-rpc Fix/typos () 2021-02-07 15:00:25 -06:00
bitcoind-rpc-test Fix/typos () 2021-02-07 15:00:25 -06:00
chain Fix/typos () 2021-02-07 15:00:25 -06:00
chain-test/src/test Fix/typos () 2021-02-07 15:00:25 -06:00
core Use specific functions for Oracle Signing version () 2021-02-12 13:31:37 -06:00
core-test Refactor HDCoinType to be ADT () 2021-02-12 09:53:43 -06:00
crypto Update scalafmt () 2021-02-03 16:37:12 -06:00
crypto-test Fix/typos () 2021-02-07 15:00:25 -06:00
db-commons Refactor HDCoinType to be ADT () 2021-02-12 09:53:43 -06:00
db-commons-test/src/test/scala/org/bitcoins/db 2021 01 27 conectionpool () 2021-01-28 09:44:03 -06:00
dlc-oracle/src/main Update scalafmt () 2021-02-03 16:37:12 -06:00
dlc-oracle-test/src/test/scala/org/bitcoins/dlc/oracle Implement OracleAttestmentV0TLV, save outcome to db () 2021-01-22 09:45:45 -06:00
docs 2021 02 10 Website fixes () 2021-02-11 09:53:45 -06:00
eclair-rpc Update scalafmt () 2021-02-03 16:37:12 -06:00
eclair-rpc-test Fix/typos () 2021-02-07 15:00:25 -06:00
fee-provider/src/main/scala/org/bitcoins/feeprovider 2020 12 18 enable lint options () 2021-01-03 08:01:26 -06:00
fee-provider-test/src/test/scala/org/bitcoins/feeprovider Create more of a project structure in org.bitcoins.core.api, move DbR… () 2020-08-12 06:13:23 -05:00
key-manager Update scalafmt () 2021-02-03 16:37:12 -06:00
key-manager-test/src/test/scala/org/bitcoins/keymanager Make KeyManager return better error messages () 2021-01-04 12:43:55 -06:00
node Fix/typos () 2021-02-07 15:00:25 -06:00
node-test/src/test/scala/org/bitcoins/node Update scalafmt () 2021-02-03 16:37:12 -06:00
project Update javafx-base, javafx-controls, ... to 16-ea+7 () 2021-02-12 13:32:43 -06:00
release-notes v0.5.0 release notes () 2021-02-03 17:59:11 -06:00
secp256k1@e2e7cf2fba Update secp branch with synced java files () 2020-12-30 17:34:27 -06:00
secp256k1jni Windows Secp Update & fix for parsing Windows paths () 2020-12-21 16:34:53 -06:00
testkit Update scalafmt () 2021-02-03 16:37:12 -06:00
wallet Fix/typos () 2021-02-07 15:00:25 -06:00
wallet-test/src/test Fix/typos () 2021-02-07 15:00:25 -06:00
website 2021 02 10 Website fixes () 2021-02-11 09:53:45 -06:00
zmq Fix/typos () 2021-02-07 15:00:25 -06:00
.dockerignore WIP: Docusaurus website () 2019-05-14 18:05:14 -05:00
.gitignore Refactor HDCoinType to be ADT () 2021-02-12 09:53:43 -06:00
.gitmodules Update Secp256k1 () 2020-04-14 15:42:58 -05:00
.jvmopts Add hardcoded jvmopts file that starts with a 2g heap () 2020-05-20 07:31:58 -05:00
.scalafmt.conf Update scalafmt () 2021-02-03 16:37:12 -06:00
build.sbt 2020 12 18 enable lint options () 2021-01-03 08:01:26 -06:00
CONTRIBUTING.md WIP: Docusaurus website () 2019-05-14 18:05:14 -05:00
docker-compose.yml Docs: removes blog from website 2019-06-11 12:59:58 +02:00
Dockerfile WIP: Docusaurus website () 2019-05-14 18:05:14 -05:00
inThisBuild.sbt Get Scala 2.13.4 compiling () 2020-11-28 07:36:07 -06:00
LICENSE Update LICENSE year () 2021-01-06 06:41:18 -06:00
README.md Fix/typos () 2021-02-07 15:00:25 -06:00
try-bitcoin-s.sh Update try-bitcoin-s.sh () 2020-02-26 07:50:17 -06:00

Bitcoin-S logo Build Status Coverage Status Maven Central Gitter chat

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

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"