· 6 years ago · Sep 11, 2019, 07:36 AM
1# Waves node settins
2waves {
3 max-cache-size = 10
4
5 # Blockchain settings
6 blockchain {
7 type = CUSTOM
8 custom {
9 address-scheme-character = "D"
10 functionality {
11 feature-check-blocks-period = 5
12 blocks-for-feature-activation = 4
13 allow-temporary-negative-until = 1477958400000
14 allow-invalid-payment-transactions-by-timestamp = 1477958400000
15 require-sorted-transactions-after = 1477958400000
16 generation-balance-depth-from-50-to-1000-after-height = 0
17 minimal-generating-balance-after = 0
18 allow-transactions-from-future-until = 0
19 allow-unissued-assets-until = 1479416400000
20 require-payment-unique-id-after = 0
21 allow-invalid-reissue-in-same-block-until-timestamp = 0
22 allow-multiple-lease-cancel-transaction-until-timestamp = 1492128000000
23 reset-effective-balances-at-height = 4650
24 block-version-3-after-height = 0
25 pre-activated-features {
26 1 = 0
27 2 = 0
28 3 = 0
29 4 = 0
30 5 = 0
31 6 = 0
32 7 = 0
33 8 = 0
34 9 = 0
35 10 = 0
36 }
37 double-features-periods-after-height = 1000000000
38 max-transaction-time-back-offset = 120m
39 max-transaction-time-forward-offset = 90m
40 }
41genesis {
42 average-block-delay = 60000ms
43 initial-base-target = 100
44 timestamp = 1489352400000
45 block-timestamp = 1489352400000
46 signature = "5ASUNefZs2dLRroid7LPS24PL85K5Y6WZqA1bfQGCHxkfhLK39jHDUpmFzELKQ66AHCm7ZhQVwpF6G95tat3xfpr"
47 initial-balance = 7700000000000000
48 transactions = [
49 {recipient = "3FR3MyuXumwBj1bLC8xnW38iHtwm9Ugdm8K", amount = 2500000000000000},
50 {recipient = "3FgScYB6MNdnN8m4xXddQe1Bjkwmd3U7YtM", amount = 200000000000000},
51 {recipient = "3FWXhvWq2r8m54MmCEZ3YZkLg2qUdGWbU3V", amount = 1000000000000000},
52 {recipient = "3FkBWsgT9T3snZ4ZpzzQCJWQngJBLdDEPfU", amount = 500000000000000},
53 {recipient = "3FeeqPbaEUQ8h3eQ4ZX9WcqzqskGbfTqM2a", amount = 1500000000000000},
54 {recipient = "3FcSgww3tKZ7feQVmcnPFmRxsjqBodYz63x", amount = 2000000000000000}
55 ]
56 }
57 }
58 }
59
60 # P2P Network settings
61 network {
62 # Network address
63 bind-address = "0.0.0.0"
64
65 # Port number
66 port = 6864
67
68 known-peers = ["34.251.200.245:6864", "35.157.212.173:6864", "13.229.61.140:6864"]
69
70 # Node name to send during handshake. Comment this string out to set random node name.
71 node-name = "My DEVNET node"
72
73 # String with IP address and port to send as external address during handshake. Could be set automatically if uPnP is enabled.
74 declared-address = "127.0.0.1:6864"
75
76 }
77
78 # Wallet settings
79 wallet {
80
81 file = null
82
83 # Wallet seed as BASE58 string
84 seed ="58o17civ6brknu3trxbu34fkntsiu34huxEUGBHUWgefhjc"
85 }
86
87 # Node's REST API settings
88 rest-api {
89 # Enable/disable node's REST API
90 enable = yes
91
92 # Network address to bind to
93 bind-address = "0.0.0.0"
94
95 # Port to listen to REST API requests
96 port = 6869
97
98 # Hash of API key string
99 api-key-hash = "7B74gZMpdzQSB45A7KRwKW6mDUYaWhFY8kWh5qiLRRoA"
100
101 api-key-different-host = yes
102 }