proxy test ver

This commit is contained in:
lzx
2025-07-31 10:34:17 +08:00
commit cfda4d8425
10 changed files with 330 additions and 0 deletions

6
cmd/config.json Normal file
View File

@@ -0,0 +1,6 @@
{
"coin": "alph",
"zmqAddr": "tcp://127.0.0.1:39001",
"tcpAddr": "0.0.0.0:39002",
"proxyAddr": "stratum+tcp://alph.m2pool.com:33390"
}

BIN
cmd/proxy Normal file

Binary file not shown.

9
cmd/proxy.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
server "proxy/internal"
)
func main() {
server.StartProxy()
}