diff --git "a/Burstcoin Pool\344\270\255\346\226\207\345\270\256\345\212\251.pdf" "b/Burstcoin Pool\344\270\255\346\226\207\345\270\256\345\212\251.pdf" new file mode 100644 index 00000000..565bd8d2 Binary files /dev/null and "b/Burstcoin Pool\344\270\255\346\226\207\345\270\256\345\212\251.pdf" differ diff --git a/pool.properties b/pool.properties index 038c6983..92e96c2c 100644 --- a/pool.properties +++ b/pool.properties @@ -1,78 +1,78 @@ -# Properties for Burstcoin Pool - -# The port to run the server on -serverPort = 80 - -# The address of the node to connect to. -# Make sure this uses the correct port -# for HTTP / gRPC, depending on which is -# selected. -nodeAddresses = grpc://localhost:6878; http://localhost:6876 - -# The name of the pool -poolName = My Awesome Pool - -# The passphrase of the pool account -passphrase = mysecretpassphrase - -# Database connection settings. Replace "pooldb" with your database name. -dbUrl=jdbc:mariadb://localhost:3306/pooldb -dbUsername=root -dbPassword= - -# Deadlines of the last nAvg blocks will be used to estimate capacity -nAvg = 360 - -# Minimum number of deadlines needed to get a share and be listed as a miner -nMin = 10 - -# Minimum block length in seconds for it to count towards miner estimated capacities -tMin = 30 - -# Maximum deadline accepted by the pool -maxDeadline = 1000000000 - -# The number of blocks behind the latest to process and, if necessary, reward. -# A higher value means more delayed rewards, a lower value means higher likelihood of problems due to -# short lived network forks. -processLag = 10 - -# Recipient of pool fees -feeRecipient=BURST-W5YR-ZZQC-KUBJ-G78KB -# Percentage of each block reward taken by pool (1 = 100%) -poolFeePercentage = 0.01 -# Percentage of each block reward (minus pool fees) taken by forger eg. 0 would be a 0-100 pool, 1 would be a 100-0 pool. -winnerRewardPercentage = 0 - -# Minimum number of Burst to payout by default. -# Changing this will only affect new miners -# This is also the minimum payout for the fee recipient -defaultMinimumPayout = 100 -# Minimum number of Burst a miner can set their minimum payout to -minimumMinimumPayout = 50 -# Minimum number of miners paid per transaction, including fee recipient. -# Pool pays out if every miner has reached minimum payout or if more than -# this many miners have reached minimum payout -minPayoutsPerTransaction = 10 -# Transaction fee for payouts. Will be deducted evenly from miners that are being paid. -transactionFee = 1 -# Number of times to retry making payout transaction if failed -payoutRetryCount = 3 -# Number of times to retry submitting nonce if failed -submitNonceRetryCount = 3 - -# The icon files for the website -site.icon.ico = icon.ico -site.icon.png = icon.png - -# The public node that the site will link to -site.nodeAddress = https://wallet.burst-alliance.org:8125/index.html - -# The software packages URL that the site will link to -site.softwarePackagesAddress = https://github.com/burst-apps-team - -# The discord URL that the site will link to -site.discord = https://discord.gg/ms6eagX - -# The title, as displayed on the site -site.title = Burst Pool +# Properties for Burstcoin Pool + +# The port to run the server on +serverPort = 80 + +# The address of the node to connect to. +# Make sure this uses the correct port +# for HTTP / gRPC, depending on which is +# selected.<--rpc端口设置 默认测试网-api v1 api v2> +nodeAddresses = grpc://localhost:6878; http://localhost:6876 + +# The name of the pool +poolName = My Awesome Pool + +# The passphrase of the pool account <--!矿池账户密码--> +passphrase = mysecretpassphrase + +# Database connection settings. Replace "pooldb" with your database name.<--!池数据库连接账户密码> +dbUrl=jdbc:mariadb://localhost:3306/pooldb +dbUsername=root +dbPassword= + +# Deadlines of the last nAvg blocks will be used to estimate capacity<--!容量确认轮--> +nAvg = 360 + +# Minimum number of deadlines needed to get a share and be listed as a miner<--!矿工确认区块--> +nMin = 1 + +# Minimum block length in seconds for it to count towards miner estimated capacities<--!最小统计秒区块--> +tMin = 30 + +# Maximum deadline accepted by the pool<--!池接收DL上限--> +maxDeadline = 1000000000 + +# The number of blocks behind the latest to process and, if necessary, reward. +# A higher value means more delayed rewards, a lower value means higher likelihood of problems due to +# short lived network forks.<--区块流程滞后--> +processLag = 10 + +# Recipient of pool fees<--池收费账户设置,可用数字ID--> +feeRecipient=BURST-W5YR-ZZQC-KUBJ-G78KB +# Percentage of each block reward taken by pool (1 = 100%)<--池费率--> +poolFeePercentage = 0.01 +# Percentage of each block reward (minus pool fees) taken by forger eg. 0 would be a 0-100 pool, 1 would be a 100-0 pool.<--默认0-100池--> +winnerRewardPercentage = 0 + +# Minimum number of Burst to payout by default. +# Changing this will only affect new miners +# This is also the minimum payout for the fee recipient +defaultMinimumPayout = 100 +# Minimum number of Burst a miner can set their minimum payout to +minimumMinimumPayout = 50 +# Minimum number of miners paid per transaction, including fee recipient. +# Pool pays out if every miner has reached minimum payout or if more than +# this many miners have reached minimum payout +minPayoutsPerTransaction = 10 +# Transaction fee for payouts. Will be deducted evenly from miners that are being paid. +transactionFee = 1 +# Number of times to retry making payout transaction if failed +payoutRetryCount = 3 +# Number of times to retry submitting nonce if failed +submitNonceRetryCount = 3 + +# The icon files for the website +site.icon.ico = icon.ico +site.icon.png = icon.png + +# The public node that the site will link to<--在线钱包地址设置--> +site.nodeAddress = https://wallet.burst-alliance.org:8125/index.html + +# The software packages URL that the site will link to<--默认挖掘开采工具下载地址设置--> +site.softwarePackagesAddress = https://github.com/burst-apps-team + +# The discord URL that the site will link to<--对应矿池绑定页面设置--> +site.discord = https://discord.gg/ms6eagX + +# The title, as displayed on the site<--池名称设置--> +site.title = Burst Pool diff --git a/settings.gradle b/settings.gradle index bee29c3e..709ac343 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1 @@ -rootProject.name = 'burstcoin-pool' +rootProject.name = 'burstpool-bate-1' diff --git a/src/main/resources/html/img/burst_B_blue.png b/src/main/resources/html/img/burst_B_blue.png new file mode 100644 index 00000000..7ebcbb04 Binary files /dev/null and b/src/main/resources/html/img/burst_B_blue.png differ diff --git a/src/main/resources/html/img/discord.png b/src/main/resources/html/img/discord.png index d6baf07f..6761fa06 100644 Binary files a/src/main/resources/html/img/discord.png and b/src/main/resources/html/img/discord.png differ diff --git a/src/main/resources/html/img/icon.png b/src/main/resources/html/img/icon.png new file mode 100644 index 00000000..708171e9 Binary files /dev/null and b/src/main/resources/html/img/icon.png differ diff --git a/src/main/resources/html/img/logo.png b/src/main/resources/html/img/logo.png new file mode 100644 index 00000000..10cb5984 Binary files /dev/null and b/src/main/resources/html/img/logo.png differ diff --git a/src/main/resources/html/index.html b/src/main/resources/html/index.html index c25d84e3..6a5613f0 100644 --- a/src/main/resources/html/index.html +++ b/src/main/resources/html/index.html @@ -1,352 +1,377 @@ - - -
- -Elapsed
-Loading...
-Best Deadline
-Loading...
-Best Miner
-Loading...
-Best Nonce
-Loading...
-Block Height
-Loading...
-Network Difficulty
-Loading...
-Miners
-Loading...
-Pool Capacity
-Loading...
-| Miner | -Current Deadline | -Pending Balance | -Effective Capacity | -Confirmed Deadlines | -Share | -Software | -
|---|---|---|---|---|---|---|
| Loading... | -||||||
Powered by the Burst Apps Team. Copyright © Harry Phillips 2019
-计时
+加载中...
+当前最佳截止日期
+加载中...
+当前最佳矿工
+加载中...
+当前最佳 Nonce
+加载中...
+当前区块高度
+加载中...
+基准目标
+加载中...
+矿工数量
+加载中...
+矿池预估容量
+加载中...
+当前全网容量
+加载中...
+| 矿工 | +当前DL | +待平衡 | +有效容量 | +确认DL | +收益占比 | +软件 | +
|---|---|---|---|---|---|---|
| 加载中... | +||||||
BURST团队技术支持. 版权所有 © Harry Phillips 2019
+