Bitcoin Implementation in Scala
Go to file
2020-05-26 15:33:27 -05:00
.github/ISSUE_TEMPLATE Update bug report template 2019-06-20 17:26:02 +02:00
app Add option to correctly use logback config (#1398) 2020-05-20 15:46:24 -05:00
app-commons TxBuilder Refactor (#1426) 2020-05-21 09:47:08 -05:00
bench Crypto Project Refactor (#1380) 2020-04-30 12:34:53 -05:00
bitcoin-s-docs Update stable version in doc.sbt, add getting started link to README.md (#1453) 2020-05-21 06:17:05 -05:00
bitcoind-rpc TxBuilder Refactor (#1426) 2020-05-21 09:47:08 -05:00
bitcoind-rpc-test Try and improve reliability of UpdateBloomFilterTest, also add getMem… (#1434) 2020-05-18 13:01:25 -05:00
chain Implement AppConfigFactory (#1462) 2020-05-25 14:43:37 -05:00
chain-test/src/test Add option to correctly use logback config (#1398) 2020-05-20 15:46:24 -05:00
core CryptoContext Refactor (#1469) 2020-05-26 13:05:21 -05:00
core-test Implement FeeUnit SatoshisPerKW (#1455) 2020-05-26 06:11:49 -05:00
crypto/src/main/scala/org/bitcoins/crypto CryptoContext Refactor (#1469) 2020-05-26 13:05:21 -05:00
crypto-test CryptoContext Refactor (#1469) 2020-05-26 13:05:21 -05:00
db-commons Implement AppConfigFactory (#1462) 2020-05-25 14:43:37 -05:00
db-commons-test/src/test/scala/org/bitcoins/db Add option to correctly use logback config (#1398) 2020-05-20 15:46:24 -05:00
docs Update docs pertaining to logging (#1471) 2020-05-26 15:33:27 -05:00
eclair-rpc TxBuilder Refactor (#1426) 2020-05-21 09:47:08 -05:00
eclair-rpc-test Move Json Reader, Writers, and Serializers to App Commons (#1328) 2020-04-10 14:33:37 -05:00
key-manager Crypto Project Refactor (#1380) 2020-04-30 12:34:53 -05:00
key-manager-test/src/test/scala/org/bitcoins/keymanager Increase Key Manager test coverage (#1465) 2020-05-26 06:13:01 -05:00
node Implement AppConfigFactory (#1462) 2020-05-25 14:43:37 -05:00
node-test/src/test/scala/org/bitcoins/node Add option to correctly use logback config (#1398) 2020-05-20 15:46:24 -05:00
project Implemented (lax) signature parsing in Bitcoin-S (#1446) 2020-05-21 15:13:17 -05:00
secp256k1@e0239255f1 Update Secp256k1 (#1310) 2020-04-14 15:42:58 -05:00
secp256k1jni CryptoContext Refactor (#1469) 2020-05-26 13:05:21 -05:00
testkit TxBuilder Refactor (#1426) 2020-05-21 09:47:08 -05:00
wallet Create a simplified version of the WalletApi.unmarkUTXOsAsReserved() that just takes in a tx and scans outpoints if they are in our wallet, also move the mark/unmark methods out of Wallet.scala and into UtxoHandling.scala (#1463) 2020-05-25 14:45:38 -05:00
wallet-test/src/test Create a simplified version of the WalletApi.unmarkUTXOsAsReserved() that just takes in a tx and scans outpoints if they are in our wallet, also move the mark/unmark methods out of Wallet.scala and into UtxoHandling.scala (#1463) 2020-05-25 14:45:38 -05:00
website InputInfo Refactor (#1400) 2020-05-15 11:14:15 -05:00
zmq TxBuilder Refactor (#1426) 2020-05-21 09:47:08 -05:00
.dockerignore WIP: Docusaurus website (#465) 2019-05-14 18:05:14 -05:00
.gitignore 2019 11 30 key manager (#904) 2019-12-04 07:43:29 -06:00
.gitmodules Update Secp256k1 (#1310) 2020-04-14 15:42:58 -05:00
.jvmopts Add hardcoded jvmopts file that starts with a 2g heap (#1436) 2020-05-20 07:31:58 -05:00
.scalafmt.conf Revert "Update scalafmt-core to 2.2.1 (#833)" (#839) 2019-10-27 17:21:15 -05:00
build.sbt Wallet Send with coin selection algorithim (#1409) 2020-05-18 11:26:39 -05:00
CONTRIBUTING.md WIP: Docusaurus website (#465) 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 (#465) 2019-05-14 18:05:14 -05:00
inThisBuild.sbt Bump scala version to 2.13.2 (#1360) 2020-04-23 07:38:20 -05:00
LICENSE updating license 2018-01-17 17:15:18 -06:00
README.md Update stable version in doc.sbt, add getting started link to README.md (#1453) 2020-05-21 06:17:05 -05:00
try-bitcoin-s.sh Update try-bitcoin-s.sh (#1165) 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.3.0, here is how you can use the dependencies in your projects:

libraryDependencies += "org.bitcoin-s" % "bitcoin-s-secp256k1jni" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-core" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-chain" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-bitcoind-rpc" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-eclair-rpc" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-key-manager" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-node" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-wallet" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-testkit" % "0.3.0"

libraryDependencies += "org.bitcoin-s" %% "bitcoin-s-zmq" % "0.3.0"