diff options
author | necrashter | 2022-04-23 17:04:00 +0300 |
---|---|---|
committer | Yigit Sever | 2022-04-23 18:10:12 +0300 |
commit | d53a714d603607b98febe129d10226a7319b7769 (patch) | |
tree | 4482b31256ba227d34a90377bb848a4f019f3b99 /testnet.yaml | |
parent | e687152db46f4f56d7c728b5b2b614ee8cb1f716 (diff) | |
download | gradecoin-d53a714d603607b98febe129d10226a7319b7769.tar.gz gradecoin-d53a714d603607b98febe129d10226a7319b7769.tar.bz2 gradecoin-d53a714d603607b98febe129d10226a7319b7769.zip |
Add another config for testnet
Diffstat (limited to 'testnet.yaml')
-rw-r--r-- | testnet.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testnet.yaml b/testnet.yaml new file mode 100644 index 0000000..1736e03 --- /dev/null +++ b/testnet.yaml | |||
@@ -0,0 +1,22 @@ | |||
1 | # Testnet playground | ||
2 | name: testnet | ||
3 | # URL Prefix for this network | ||
4 | # This will be served at "gradecoin.xyz/testnet" | ||
5 | url_prefix: "testnet" | ||
6 | # List of users who can register | ||
7 | # CSV file: userID,password | ||
8 | # First line is ignored | ||
9 | preapproved_users: "students.csv" | ||
10 | # Valid blocks should have this many transactions | ||
11 | block_transaction_count: 3 | ||
12 | # How many zero hexadecimal characters should a correct hash start with? | ||
13 | hash_zeros: 4 | ||
14 | # Bonus awarded after registration | ||
15 | register_bonus: 42 | ||
16 | # Coinbase reward | ||
17 | block_reward: 3 | ||
18 | # Transaction limits | ||
19 | tx_upper_limit: 5 | ||
20 | tx_lower_limit: 1 | ||
21 | # Transaction traffic reward | ||
22 | tx_traffic_reward: 1 | ||