github.com/dominant-strategies/go-quai@v0.28.2/network.env.dist (about) 1 #Unique Coinbase addresses 2 3 ZONE_0_0_COINBASE=0x04a3e45aa16163F2663015b6695894D918866d19 4 ZONE_0_1_COINBASE=0x21c7650E65b164B2ab645eAF1141b569B2c82Bd7 5 ZONE_0_2_COINBASE=0x3e742F0AE63d62304153526A51EE8BF0531d1887 6 ZONE_1_0_COINBASE=0x72c871f639ed156De0b97C1b533e2617730b7ec2 7 ZONE_1_1_COINBASE=0x755c3603c5688CF3105F1a1AfC11fa0e1981b03B 8 ZONE_1_2_COINBASE=0x9fF7B1A33BB22b70F5fb78A420CEd9075C437c87 9 ZONE_2_0_COINBASE=0xb8094B2bc411942fd078D994Cc4e9418D6A5B071 10 ZONE_2_1_COINBASE=0xC83cb918dd9267a344B51f57e28e8cf977057E05 11 ZONE_2_2_COINBASE=0xF39E7d05B5A1a2F934cC43221383f29e4794c822 12 13 14 #Ports (TCP/UCP, HTTP, WS) 15 16 PRIME_PORT_TCP=30303 17 PRIME_PORT_HTTP=8546 18 PRIME_PORT_WS=8547 19 REGION_0_PORT_TCP=30304 20 REGION_0_PORT_HTTP=8578 21 REGION_0_PORT_WS=8579 22 REGION_1_PORT_TCP=30305 23 REGION_1_PORT_HTTP=8580 24 REGION_1_PORT_WS=8581 25 REGION_2_PORT_TCP=30306 26 REGION_2_PORT_HTTP=8582 27 REGION_2_PORT_WS=8583 28 ZONE_0_0_PORT_TCP=30307 29 ZONE_0_0_PORT_HTTP=8610 30 ZONE_0_0_PORT_WS=8611 31 ZONE_0_1_PORT_TCP=30308 32 ZONE_0_1_PORT_HTTP=8542 33 ZONE_0_1_PORT_WS=8643 34 ZONE_0_2_PORT_TCP=30309 35 ZONE_0_2_PORT_HTTP=8674 36 ZONE_0_2_PORT_WS=8675 37 ZONE_1_0_PORT_TCP=30310 38 ZONE_1_0_PORT_HTTP=8512 39 ZONE_1_0_PORT_WS=8613 40 ZONE_1_1_PORT_TCP=30311 41 ZONE_1_1_PORT_HTTP=8544 42 ZONE_1_1_PORT_WS=8645 43 ZONE_1_2_PORT_TCP=30312 44 ZONE_1_2_PORT_HTTP=8576 45 ZONE_1_2_PORT_WS=8677 46 ZONE_2_0_PORT_TCP=30313 47 ZONE_2_0_PORT_HTTP=8614 48 ZONE_2_0_PORT_WS=8615 49 ZONE_2_1_PORT_TCP=30314 50 ZONE_2_1_PORT_HTTP=8646 51 ZONE_2_1_PORT_WS=8647 52 ZONE_2_2_PORT_TCP=30315 53 ZONE_2_2_PORT_HTTP=8678 54 ZONE_2_2_PORT_WS=8679 55 56 # Dom websocket urls 57 REGION_0_DOM_URL=ws://127.0.0.1 58 REGION_1_DOM_URL=ws://127.0.0.1 59 REGION_2_DOM_URL=ws://127.0.0.1 60 ZONE_0_0_DOM_URL=ws://127.0.0.1 61 ZONE_0_1_DOM_URL=ws://127.0.0.1 62 ZONE_0_2_DOM_URL=ws://127.0.0.1 63 ZONE_1_0_DOM_URL=ws://127.0.0.1 64 ZONE_1_1_DOM_URL=ws://127.0.0.1 65 ZONE_1_2_DOM_URL=ws://127.0.0.1 66 ZONE_2_0_DOM_URL=ws://127.0.0.1 67 ZONE_2_1_DOM_URL=ws://127.0.0.1 68 ZONE_2_2_DOM_URL=ws://127.0.0.1 69 70 # Sub websocket urls 71 PRIME_SUB_URLS=ws://127.0.0.1:8579,ws://127.0.0.1:8581,ws://127.0.0.1:8583 72 REGION_0_SUB_URLS=ws://127.0.0.1:8611,ws://127.0.0.1:8643,ws://127.0.0.1:8675 73 REGION_1_SUB_URLS=ws://127.0.0.1:8613,ws://127.0.0.1:8645,ws://127.0.0.1:8677 74 REGION_2_SUB_URLS=ws://127.0.0.1:8615,ws://127.0.0.1:8647,ws://127.0.0.1:8679 75 76 # Slices that are running 77 SLICES="[0 0],[0 1],[0 2],[1 0],[1 1],[1 2],[2 0],[2 1],[2 2]" 78 79 #Boolean Variable Definition 80 #Enables or disables http porting 81 #Enables or disables websocket porting 82 ENABLE_HTTP=true 83 ENABLE_WS=true 84 ENABLE_UNLOCK=false 85 86 #Input Variable Definition 87 #http.addr options include 0.0.0.0 and 127.0.0.1 (local host) 88 #ws.addr options include 0.0.0.0 and 127.0.0.1 (local host) 89 #ws.api options include any blockchain compatible api 90 91 # WARNING: Only allow websocket connections (i.e. WS_ADDR) from a trusted 92 # network. At time of writing, no transport security is implemented, but this is 93 # a trusted communication channel. 94 HTTP_ADDR=localhost 95 WS_ADDR=localhost 96 WS_API=eth,quai 97 HTTP_API=quai 98 99 #Networking Variables 100 #Options include colosseum and garden 101 NETWORK=colosseum 102 NONCE=5926993 #Change this along with network 103 MAX_PEERS=50 104 ENABLE_NAT=false 105 # EXT_IP=Optional, enable if you have port forwarding 106 107 #Mining Variables 108 QUAI_MINING=true 109 110 #Bootnode Specific Variables 111 #Should only be used by bootnode operators, i.e. team developers 112 HTTP_CORSDOMAIN="*" 113 WS_ORIG="*" 114 BOOTNODE=false 115 CORS=false 116 117 # Verbosity variable 118 VERBOSITY=4 119 120 # Syncmode variable 121 SYNCMODE=full 122 NO_DISCOVER=false 123 124 # Stats information 125 QUAI_STATS=false 126 STATS_NAME= 127 STATS_PASS= 128 STATS_HOST= 129 130 # Output format variables 131 SHOW_COLORS=true 132 RUN_BLAKE3=false 133 DB_ENGINE=leveldb 134 135 # Optional set database directory 136 CUSTOM_DATA_DIR=false 137 DATA_DIR=