forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbitok.conf
More file actions
134 lines (98 loc) · 3.41 KB
/
bitok.conf
File metadata and controls
134 lines (98 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Bitok Configuration File
# Place this file in your data directory:
# Linux (daemon): ~/.bitokd/bitok.conf
# macOS: ~/Library/Application Support/Bitok/bitok.conf
# Windows: %APPDATA%\Bitok\bitok.conf
# ======================
# General Settings
# ======================
# Specify data directory (command-line only: -datadir)
# Cannot be set in config file - use command line argument
# Enable debug output (0=off, 1=on)
#debug=0
# Print debug output to debugger (Windows)
#printtodebugger=0
# ======================
# Network Settings
# ======================
# NOTE: -daemon must be passed via command line, not config file
# Use: bitokd -daemon
# Accept command line and JSON-RPC commands
#server=1
# Enable IRC peer discovery (disabled by default, DNS seeds used instead)
#irc=0
# Connect through SOCKS4 proxy (ip:port)
#proxy=127.0.0.1:9050
# Add nodes to connect to (can specify multiple)
#addnode=192.168.1.100
#addnode=192.168.1.101
# Connect only to specified nodes (disables peer discovery)
# When set, only connects to these nodes
#connect=192.168.1.100
# ======================
# Mining Settings
# ======================
# Generate coins (0=off, 1=on)
#gen=0
# Limit mining to n processors (-1 = use all available)
#genproclimit=-1
# ======================
# Transaction Settings
# ======================
# Transaction fee (in BITOK)
#paytxfee=0.0001
# ======================
# RPC Server Settings
# ======================
# RPC server username (required for RPC)
#rpcuser=yourusername
# RPC server password (required for RPC)
#rpcpassword=yourpassword
# RPC server port (default: 8332)
#rpcport=8332
# RPC server bind address (default: 127.0.0.1)
# Set to 0.0.0.0 to accept connections from any IP (use with rpcallowip)
#rpcbind=127.0.0.1
# Allow RPC connections from specific IPs (can specify multiple)
# Use * for wildcard, e.g., 192.168.1.*
#rpcallowip=127.0.0.1
#rpcallowip=192.168.1.*
# RPC client connect host (for bitokd client mode)
#rpcconnect=127.0.0.1
# Enable CORS headers on the RPC server (for web wallet / browser access)
# Set to 1 to allow any origin, or combine with corsorigin to restrict
#cors=0
# Restrict CORS to a specific origin (only used when cors=1)
# Default is * (any origin). Set to your web wallet's URL to lock it down.
#corsorigin=http://localhost:5173
# ======================
# Wallet Settings
# ======================
# Disable wallet flushing (not recommended for production)
#noflushwallet=0
# ======================
# GUI Settings (bitok only, not bitokd)
# ======================
# Start minimized to tray (GUI only)
#min=0
# ======================
# Testing/Debug (Advanced)
# ======================
# Test mode - no peer connections, minimum difficulty
#testmode=0
# Print block index/tree and exit (diagnostic)
#printblockindex=0
#printblocktree=0
# Print specific block by hash prefix and exit
#printblock=000000
# Load block index test (diagnostic)
#loadblockindextest=0
# Drop messages test - 1 in N chance of dropping (testing only)
#dropmessagestest=0
# ======================
# Command-Line Only Parameters
# ======================
# The following parameters MUST be passed via command line:
# -daemon Run as background daemon
# -datadir=<dir> Specify data directory
# -recover Recover corrupted wallet/database