Bitcoin Implementation in Scala
Go to file
Ben Carman f7671a4f99 Add wallet function to bump fee with CPFP (#2399)
* Add wallet function to bump fee with CPFP

* Add bump fee integration tests
2020-12-21 07:04:01 -06:00
.github Move CI into indiviual workflows (#2353) 2020-12-14 06:37:09 -06:00
app Import Seed cli commands (#2376) 2020-12-21 06:53:20 -06:00
app-commons Import Seed cli commands (#2376) 2020-12-21 06:53:20 -06:00
app-commons-test/src/test/scala/org/bitcoins/commons 2020 12 19 enable test compileropts (#2400) 2020-12-20 07:09:07 -06:00
bench 2020 11 02 cleanup (#2233) 2020-11-03 11:07:04 -06:00
bitcoin-s-docs Change versions in readme (#2065) 2020-09-27 08:16:59 -05:00
bitcoind-rpc Fix getPeerInfo for v0.20 (#2402) 2020-12-20 07:19:35 -06:00
bitcoind-rpc-test Fix getPeerInfo for v0.20 (#2402) 2020-12-20 07:19:35 -06:00
chain Multi Wallet support (#2345) 2020-12-16 17:27:56 -06:00
chain-test/src/test 2020 12 19 enable test compileropts (#2400) 2020-12-20 07:09:07 -06:00
core Add wallet function to bump fee with CPFP (#2399) 2020-12-21 07:04:01 -06:00
core-test 2020 12 19 enable test compileropts (#2400) 2020-12-20 07:09:07 -06:00
crypto/src/main/scala/org/bitcoins/crypto DLC Data Structures on Master Cleanup (#2375) 2020-12-17 09:09:57 -06:00
crypto-test 2020 11 02 cleanup (#2233) 2020-11-03 11:07:04 -06:00
db-commons DLC Data Structures on Master Cleanup (#2375) 2020-12-17 09:09:57 -06:00
db-commons-test/src/test/scala/org/bitcoins/db Fix TLV parsing for non-standard strings (#2312) 2020-12-03 12:30:17 -06:00
dlc-oracle/src/main Add ability to store ExtPrivateKey instead of Mnemonic (#2372) 2020-12-17 13:25:04 -06:00
dlc-oracle-test/src/test/scala/org/bitcoins/dlc/oracle DLC Data Structures on Master Cleanup (#2375) 2020-12-17 09:09:57 -06:00
docs Import Seed cli commands (#2376) 2020-12-21 06:53:20 -06:00
eclair-rpc Upgrade to scalac 2.13.3 (#2115) 2020-10-04 07:42:44 -05:00
eclair-rpc-test 2020 12 19 enable test compileropts (#2400) 2020-12-20 07:09:07 -06:00
fee-provider/src/main/scala/org/bitcoins/feeprovider Fix BitGo fee provider parser (#2381) 2020-12-17 11:47:31 -06:00
fee-provider-test/src/test/scala/org/bitcoins/feeprovider Create more of a project structure in org.bitcoins.core.api, move DbR… (#1799) 2020-08-12 06:13:23 -05:00
key-manager Import Seed cli commands (#2376) 2020-12-21 06:53:20 -06:00
key-manager-test/src/test/scala/org/bitcoins/keymanager Add ability to store ExtPrivateKey instead of Mnemonic (#2372) 2020-12-17 13:25:04 -06:00
node Fail broadcasting transaction when disconnected (#2336) 2020-12-17 13:28:32 -06:00
node-test/src/test/scala/org/bitcoins/node 2020 12 19 enable test compileropts (#2400) 2020-12-20 07:09:07 -06:00
project Update scala-collection-compat to 2.3.2 (#2401) 2020-12-20 07:36:19 -06:00
secp256k1@c9bab11ef0 Add low R signing (#1342) 2020-07-29 15:03:18 -05:00
secp256k1jni Remove autoScalaLibrary := false, this was not being used correctly and now is hindering builds on intellij (#2397) 2020-12-18 18:52:37 -06:00
testkit Fail broadcasting transaction when disconnected (#2336) 2020-12-17 13:28:32 -06:00
wallet Add wallet function to bump fee with CPFP (#2399) 2020-12-21 07:04:01 -06:00
wallet-test/src/test Add wallet function to bump fee with CPFP (#2399) 2020-12-21 07:04:01 -06:00
website Bump ini from 1.3.5 to 1.3.7 in /website (#2349) 2020-12-11 06:53:38 -06:00
zmq 2020 11 02 cleanup (#2233) 2020-11-03 11:07:04 -06:00
.dockerignore
.gitignore PostgreSQL support (#1315) 2020-06-02 16:37:48 -05: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 Update scalafmt-core to 2.6.4 (#1686) 2020-08-24 14:24:16 -05:00
build.sbt 2020 12 20 root dependson (#2404) 2020-12-21 06:47:04 -06:00
CONTRIBUTING.md
docker-compose.yml
Dockerfile
inThisBuild.sbt Get Scala 2.13.4 compiling (#2294) 2020-11-28 07:36:07 -06:00
LICENSE
README.md Change CI Status to use Github Actions badge (#2364) 2020-12-15 12:16:14 -06: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.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"