• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..08-Sep-2021-

man/H08-Sep-2021-2,0412,022

release-notes/H08-Sep-2021-17,94415,060

.gitignoreH A D08-Sep-20219 21

Doxyfile.inH A D08-Sep-2021104.8 KiB2,4621,913

JSON-RPC-interface.mdH A D08-Sep-20217.5 KiB142118

README.mdH A D08-Sep-20213.5 KiB8969

README_doxygen.mdH A D08-Sep-2021874 169

REST-interface.mdH A D08-Sep-20214.7 KiB12192

assets-attribution.mdH A D08-Sep-2021145 21

benchmarking.mdH A D08-Sep-20212 KiB6244

bips.mdH A D08-Sep-202113.5 KiB6058

bitcoin-conf.mdH A D08-Sep-20212.8 KiB6541

build-android.mdH A D08-Sep-2021431 127

build-freebsd.mdH A D08-Sep-20216 KiB13098

build-netbsd.mdH A D08-Sep-20211.9 KiB8263

build-openbsd.mdH A D08-Sep-20213.9 KiB12491

build-osx.mdH A D08-Sep-202110.8 KiB331224

build-unix.mdH A D08-Sep-202111.9 KiB339221

build-windows.mdH A D08-Sep-20217.1 KiB155110

dependencies.mdH A D08-Sep-20213.6 KiB4942

descriptors.mdH A D08-Sep-202115.6 KiB221182

developer-notes.mdH A D08-Sep-202152.9 KiB1,3361,004

dnsseed-policy.mdH A D08-Sep-20212.4 KiB5541

external-signer.mdH A D08-Sep-20216 KiB172114

files.mdH A D08-Sep-20219.5 KiB12989

fuzzing.mdH A D08-Sep-202114.9 KiB263216

gitian-building.mdH A D08-Sep-2021251 53

guix.mdH A D08-Sep-202194 42

i2p.mdH A D08-Sep-20214.5 KiB10780

init.mdH A D08-Sep-20216.4 KiB147105

multiprocess.mdH A D08-Sep-20215.9 KiB7356

productivity.mdH A D08-Sep-202110.2 KiB219150

psbt.mdH A D08-Sep-20218.1 KiB144124

reduce-memory.mdH A D08-Sep-20213.4 KiB5535

reduce-traffic.mdH A D08-Sep-20212.4 KiB5741

release-notes.mdH A D08-Sep-202177.7 KiB1,1641,090

release-process.mdH A D08-Sep-202116.1 KiB330227

shared-libraries.mdH A D08-Sep-20213.2 KiB5138

tor.mdH A D08-Sep-202110.1 KiB226162

translation_process.mdH A D08-Sep-20215.5 KiB10271

translation_strings_policy.mdH A D08-Sep-20214 KiB10163

zmq.mdH A D08-Sep-20216.6 KiB156118

README.md

1Bitcoin Core
2=============
3
4Setup
5---------------------
6Bitcoin Core is the original Bitcoin client and it builds the backbone of the network. It downloads and, by default, stores the entire history of Bitcoin transactions, which requires a few hundred gigabytes of disk space. Depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more.
7
8To download Bitcoin Core, visit [bitcoincore.org](https://bitcoincore.org/en/download/).
9
10Running
11---------------------
12The following are some helpful notes on how to run Bitcoin Core on your native platform.
13
14### Unix
15
16Unpack the files into a directory and run:
17
18- `bin/bitcoin-qt` (GUI) or
19- `bin/bitcoind` (headless)
20
21### Windows
22
23Unpack the files into a directory, and then run bitcoin-qt.exe.
24
25### macOS
26
27Drag Bitcoin Core to your applications folder, and then run Bitcoin Core.
28
29### Need Help?
30
31* See the documentation at the [Bitcoin Wiki](https://en.bitcoin.it/wiki/Main_Page)
32for help and more information.
33* Ask for help on [Bitcoin StackExchange](https://bitcoin.stackexchange.com).
34* Ask for help on #bitcoin on Libera Chat. If you don't have an IRC client, you can use [web.libera.chat](https://web.libera.chat/#bitcoin).
35* Ask for help on the [BitcoinTalk](https://bitcointalk.org/) forums, in the [Technical Support board](https://bitcointalk.org/index.php?board=4.0).
36
37Building
38---------------------
39The following are developer notes on how to build Bitcoin Core on your native platform. They are not complete guides, but include notes on the necessary libraries, compile flags, etc.
40
41- [Dependencies](dependencies.md)
42- [macOS Build Notes](build-osx.md)
43- [Unix Build Notes](build-unix.md)
44- [Windows Build Notes](build-windows.md)
45- [FreeBSD Build Notes](build-freebsd.md)
46- [OpenBSD Build Notes](build-openbsd.md)
47- [NetBSD Build Notes](build-netbsd.md)
48- [Android Build Notes](build-android.md)
49- [Gitian Building Guide (External Link)](https://github.com/bitcoin-core/docs/blob/master/gitian-building.md)
50
51Development
52---------------------
53The Bitcoin repo's [root README](/README.md) contains relevant information on the development process and automated testing.
54
55- [Developer Notes](developer-notes.md)
56- [Productivity Notes](productivity.md)
57- [Release Notes](release-notes.md)
58- [Release Process](release-process.md)
59- [Source Code Documentation (External Link)](https://doxygen.bitcoincore.org/)
60- [Translation Process](translation_process.md)
61- [Translation Strings Policy](translation_strings_policy.md)
62- [JSON-RPC Interface](JSON-RPC-interface.md)
63- [Unauthenticated REST Interface](REST-interface.md)
64- [Shared Libraries](shared-libraries.md)
65- [BIPS](bips.md)
66- [Dnsseed Policy](dnsseed-policy.md)
67- [Benchmarking](benchmarking.md)
68
69### Resources
70* Discuss on the [BitcoinTalk](https://bitcointalk.org/) forums, in the [Development & Technical Discussion board](https://bitcointalk.org/index.php?board=6.0).
71* Discuss project-specific development on #bitcoin-core-dev on Libera Chat. If you don't have an IRC client, you can use [web.libera.chat](https://web.libera.chat/#bitcoin-core-dev).
72
73### Miscellaneous
74- [Assets Attribution](assets-attribution.md)
75- [bitcoin.conf Configuration File](bitcoin-conf.md)
76- [Files](files.md)
77- [Fuzz-testing](fuzzing.md)
78- [I2P Support](i2p.md)
79- [Init Scripts (systemd/upstart/openrc)](init.md)
80- [PSBT support](psbt.md)
81- [Reduce Memory](reduce-memory.md)
82- [Reduce Traffic](reduce-traffic.md)
83- [Tor Support](tor.md)
84- [ZMQ](zmq.md)
85
86License
87---------------------
88Distributed under the [MIT software license](/COPYING).
89

README_doxygen.md

1\mainpage notitle
2
3\section intro_sec Introduction
4
5This is the developer documentation of the reference client for an experimental new digital currency called Bitcoin,
6which enables instant payments to anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate
7with no central authority: managing transactions and issuing money are carried out collectively by the network.
8
9The software is a community-driven open source project, released under the MIT license.
10
11See https://github.com/bitcoin/bitcoin and https://bitcoincore.org/ for further information about the project.
12
13\section Navigation
14Use <a href="modules.html"><code>Modules</code></a>, <a href="namespaces.html"><code>Namespaces</code></a>, <a href="classes.html"><code>Classes</code></a>, or <a href="files.html"><code>Files</code></a> at the top of the page to start navigating the code.
15
16