|
1 | | -Bitcoin Core integration/staging tree |
| 1 | +Trezarcoin Core |
2 | 2 | ===================================== |
3 | 3 |
|
4 | | -[](https://travis-ci.org/bitcoin/bitcoin) |
5 | | - |
6 | | -https://bitcoincore.org |
7 | | - |
8 | | -What is Bitcoin? |
| 4 | +Trezarcoin (TZC) is a decentralised open source digital currency. |
| 5 | + |
| 6 | + - advanced hybrid proof-of-work (PoW) and proof-of-stake (PoS) |
| 7 | + - 400 million coins to be produced |
| 8 | + - block hashing is BLAKE2s |
| 9 | + - PoW hashing is NeoScrypt |
| 10 | + - PoS hashing is SHA-256d |
| 11 | + - 1 minute combined block target (1.5 minutes for PoW, 3 minutes for PoS) |
| 12 | + - retargets every block using Orbitcoin Super Shield (OSS) |
| 13 | + - time warp and instamining protection |
| 14 | + - advanced checkpointing against 51% attacks |
| 15 | + - transaction messaging supported |
| 16 | + - PoW and PoS blocks carry the same fixed reward of 100 TZC |
| 17 | + - 6 confirmations for regular transactions |
| 18 | + - 200 confirmations for minted coins |
| 19 | + - very low transaction fees (most transactions are free) |
| 20 | + - no destruction of transaction fees (all collected by a block finder) |
| 21 | + - the default P2P port is 17298, RPC port is 17299 |
| 22 | + - I2P/Tor ready |
| 23 | + |
| 24 | + |
| 25 | +Website: https://trezarcoin.com |
| 26 | + |
| 27 | +What is Trezarcoin? |
9 | 28 | ---------------- |
10 | 29 |
|
11 | | -Bitcoin is an experimental digital currency that enables instant payments to |
12 | | -anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate |
13 | | -with no central authority: managing transactions and issuing money are carried |
14 | | -out collectively by the network. Bitcoin Core is the name of open source |
| 30 | +Trezarcoin is a highly secure store of value with fast transaction times designed to be used as a currency. |
| 31 | +We implemented the newest Proof-of-Work algorithm, as well as Proof-of-Stake, to meet these stringent security standards. |
| 32 | + |
| 33 | +We promote a super secure and energy-efficient PoW/PoS Coin featuring the latest advanced 0% PoS by Ghostlander. |
| 34 | +Trezarcoin utilizes a multi-algo implementation to ensure the highest level security with NeoScrypt PoW, Sha256d PoS, and BLAKE2s for Block Hashing. |
| 35 | +Coins will be produced via PoW and PoS. Trezarcoin Core is the name of open source |
15 | 36 | software which enables the use of this currency. |
16 | 37 |
|
17 | 38 | For more information, as well as an immediately useable, binary version of |
18 | | -the Bitcoin Core software, see https://bitcoin.org/en/download, or read the |
19 | | -[original whitepaper](https://bitcoincore.org/bitcoin.pdf). |
20 | | - |
21 | | -License |
22 | | -------- |
23 | | - |
24 | | -Bitcoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more |
25 | | -information or see https://opensource.org/licenses/MIT. |
| 39 | +the Trezarcoin Core software, see https://trezarcoin.com/#wallets, or read the |
| 40 | +[original whitepaper](https://trezarcoin.com/whitepaper.pdf). |
26 | 41 |
|
27 | | -Development Process |
28 | | -------------------- |
| 42 | +Usecase TrezarTravels: |
| 43 | +-------- |
| 44 | +https://trezartravels.com |
29 | 45 |
|
30 | | -The `master` branch is regularly built and tested, but is not guaranteed to be |
31 | | -completely stable. [Tags](https://github.com/bitcoin/bitcoin/tags) are created |
32 | | -regularly to indicate new official, stable release versions of Bitcoin Core. |
| 46 | +Download |
| 47 | +-------- |
33 | 48 |
|
34 | | -The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md). |
| 49 | +Please visit https://github.com/TrezarCoin/TrezarCoin/releases or |
| 50 | +http://trezarcoin.com/#wallets if you need pre-compiled binaries. |
35 | 51 |
|
36 | | -The developer [mailing list](https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev) |
37 | | -should be used to discuss complicated or controversial changes before working |
38 | | -on a patch set. |
| 52 | +Support |
| 53 | +-------- |
| 54 | +Developer can be found via Slack, Discord or Telegram. https://trezarcoin.com/#social |
39 | 55 |
|
40 | | -Developer IRC can be found on Freenode at #bitcoin-core-dev. |
| 56 | +or |
41 | 57 |
|
42 | | -Testing |
43 | | -------- |
44 | | - |
45 | | -Testing and code review is the bottleneck for development; we get more pull |
46 | | -requests than we can review and test on short notice. Please be patient and help out by testing |
47 | | -other people's pull requests, and remember this is a security-critical project where any mistake might cost people |
48 | | -lots of money. |
| 58 | +See https://bitcointalk.org/index.php?topic=2140812.0 if you need advice. |
49 | 59 |
|
50 | | -### Automated Testing |
51 | 60 |
|
52 | | -Developers are strongly encouraged to write [unit tests](/doc/unit-tests.md) for new code, and to |
53 | | -submit new unit tests for old code. Unit tests can be compiled and run |
54 | | -(assuming they weren't disabled in configure) with: `make check` |
55 | | - |
56 | | -There are also [regression and integration tests](/qa) of the RPC interface, written |
57 | | -in Python, that are run automatically on the build server. |
58 | | -These tests can be run (if the [test dependencies](/qa) are installed) with: `qa/pull-tester/rpc-tests.py` |
| 61 | +Guides |
| 62 | +------------ |
59 | 63 |
|
60 | | -The Travis CI system makes sure that every pull request is built for Windows, Linux, and OS X, and that unit/sanity tests are run automatically. |
| 64 | +Raspbian: |
| 65 | +----- |
61 | 66 |
|
62 | | -### Manual Quality Assurance (QA) Testing |
| 67 | +-Stretch: |
| 68 | +https://github.com/TrezarCoin/TrezarCoin/wiki/Raspberry-Pi---Build-Guide |
63 | 69 |
|
64 | | -Changes should be tested by somebody other than the developer who wrote the |
65 | | -code. This is especially important for large or high-risk changes. It is useful |
66 | | -to add a test plan to the pull request description if testing the changes is |
67 | | -not straightforward. |
| 70 | +-Jessie: |
| 71 | +https://trezarcoin.com/wp-content/uploads/2017/09/TrezarCoins-Rasberry-Pi-Compile-Final.pdf |
68 | 72 |
|
69 | | -Translations |
70 | | ------------- |
| 73 | +Linux: |
| 74 | +----- |
| 75 | +https://github.com/Trezarcoin/Trezarcoin/blob/1.2.0/doc/build-unix.md |
71 | 76 |
|
72 | | -Changes to translations as well as new translations can be submitted to |
73 | | -[Bitcoin Core's Transifex page](https://www.transifex.com/projects/p/bitcoin/). |
| 77 | +MacOS: |
| 78 | +----- |
| 79 | +https://github.com/Trezarcoin/Trezarcoin/blob/1.2.0/doc/build-osx.md |
74 | 80 |
|
75 | | -Translations are periodically pulled from Transifex and merged into the git repository. See the |
76 | | -[translation process](doc/translation_process.md) for details on how this works. |
| 81 | +Windows: |
| 82 | +----- |
| 83 | +https://github.com/Trezarcoin/Trezarcoin/blob/1.2.0/doc/build-windows.md |
77 | 84 |
|
78 | | -**Important**: We do not accept translation changes as GitHub pull requests because the next |
79 | | -pull from Transifex would automatically overwrite them again. |
| 85 | +License |
| 86 | +------- |
80 | 87 |
|
81 | | -Translators should also subscribe to the [mailing list](https://groups.google.com/forum/#!forum/bitcoin-translators). |
| 88 | +Trezarcoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more |
| 89 | +information or see https://opensource.org/licenses/MIT. |
0 commit comments