v0.0.1 - Up and running

This commit is contained in:
Your Name
2025-12-10 10:17:24 -04:00
parent d436a4927d
commit 60543cf7c4
11 changed files with 2552 additions and 2 deletions

33
config.example.json Normal file
View File

@@ -0,0 +1,33 @@
{
"thrower": {
"privateKey": "your_64_character_hex_private_key_here_replace_this_with_real_key",
"name": "My C Superball Thrower",
"description": "High-performance C implementation of Superball Thrower",
"maxDelay": 86460,
"refreshRate": 300,
"supportedSups": "1,2,3,4,5,6",
"software": "https://git.laantungir.net/laantungir/super_ball_thrower.git",
"version": "1.0.0"
},
"relays": [
{
"url": "wss://relay.laantungir.net",
"read": true,
"write": true
},
{
"url": "wss://relay.damus.io",
"read": true,
"write": true
},
{
"url": "wss://nos.lol",
"read": true,
"write": true
}
],
"daemon": {
"logLevel": "info",
"maxQueueSize": 1000
}
}