1414 * Available pools:
1515 * - SRI Community Pool: mainnet & testnet4
1616 * - Braiins Pool: mainnet (non-JD only)
17- * - Demand Pool: mainnet (JD or non-JD)
17+ * - DMND Pool: mainnet (JD or non-JD)
1818 */
1919
2020import { Wizard , WizardConfig } from "./components/ui/wizard-framework" ;
@@ -66,8 +66,7 @@ const POOL_CONNECTION_WIZARD_CONFIG: WizardConfig = {
6666 description : "Which network will your Bitcoin Node operate on?" ,
6767 options : [
6868 { id : 'opt_main' , label : "Mainnet" , subLabel : "Production Network" , value : "mainnet" , nextStepId : "bitcoin_guide_mainnet" , icon : Globe } ,
69- { id : 'opt_test' , label : "Testnet4" , subLabel : "Testing Network" , value : "testnet4" , nextStepId : "bitcoin_guide_testnet" , icon : Activity } ,
70- { id : 'opt_sig' , label : "Signet" , subLabel : "Developer Network" , value : "signet" , nextStepId : "bitcoin_guide_signet" , icon : Terminal , warning : "Coming soon" , disabled : true }
69+ { id : 'opt_test' , label : "Testnet4" , subLabel : "Testing Network" , value : "testnet4" , nextStepId : "bitcoin_guide_testnet" , icon : Activity }
7170 ]
7271 } ,
7372 bitcoin_guide_mainnet : {
@@ -84,13 +83,6 @@ const POOL_CONNECTION_WIZARD_CONFIG: WizardConfig = {
8483 nextStepId : 'select_pool_construct_testnet4' ,
8584 component : < BitcoinSetupContent network = "testnet4" showBitcoinConf = { false } />
8685 } ,
87- bitcoin_guide_signet : {
88- id : 'bitcoin_guide_signet' ,
89- type : 'instruction' ,
90- title : "Bitcoin Core Setup (Signet)" ,
91- nextStepId : 'select_pool_construct_mainnet' ,
92- component : < BitcoinSetupContent network = "signet" showBitcoinConf = { false } />
93- } ,
9486 select_pool_construct_mainnet : {
9587 id : 'select_pool_construct_mainnet' ,
9688 type : 'question' ,
@@ -107,20 +99,18 @@ const POOL_CONNECTION_WIZARD_CONFIG: WizardConfig = {
10799 iconUrl : getPoolConfig ( "community_sri" ) ?. iconUrl ,
108100 badge : "Testing" ,
109101 badgeColor : "blue" ,
110- warning : "Not for production use – rewards are not paid out. "
102+ warning : "Not for production use – any blocks found will be donated to the SRI project "
111103 } ,
112104 {
113105 id : 'pool_demand' ,
114- label : "DEMAND" ,
115- subLabel : "Work in progress" ,
106+ label : "DMND" ,
116107 value : "demand" ,
117108 nextStepId : "jd_client_configuration" ,
118109 icon : Zap ,
119110 iconUrl : getPoolConfig ( "demand" ) ?. iconUrl ,
120- badge : "Soon" ,
121- badgeColor : "orange" ,
122- warning : "This option is coming soon." ,
123- disabled : true
111+ warning : "Pool for registered businesses only at the moment" ,
112+ disabled : true ,
113+ url : "https://dmnd.work/"
124114 }
125115 ]
126116 } ,
@@ -140,7 +130,7 @@ const POOL_CONNECTION_WIZARD_CONFIG: WizardConfig = {
140130 iconUrl : getPoolConfig ( "community_sri" ) ?. iconUrl ,
141131 badge : "Testing" ,
142132 badgeColor : "blue" ,
143- warning : "Not for production use – rewards are not paid out. "
133+ warning : "Not for production use – any blocks found will be donated to the SRI project "
144134 }
145135 ]
146136 } ,
@@ -160,7 +150,7 @@ const POOL_CONNECTION_WIZARD_CONFIG: WizardConfig = {
160150 iconUrl : getPoolConfig ( "community_sri" ) ?. iconUrl ,
161151 badge : "Testing" ,
162152 badgeColor : "blue" ,
163- warning : "Not for production use – no share accounting / no payouts ."
153+ warning : "Not for production use – any blocks found will be donated to the SRI project ."
164154 } ,
165155 {
166156 id : 'pool_braiins' ,
@@ -173,16 +163,14 @@ const POOL_CONNECTION_WIZARD_CONFIG: WizardConfig = {
173163 } ,
174164 {
175165 id : 'pool_demand' ,
176- label : "DEMAND" ,
177- subLabel : "Work in progress" ,
166+ label : "DMND" ,
178167 value : "demand" ,
179168 nextStepId : "translator_proxy_configuration" ,
180169 icon : Zap ,
181170 iconUrl : getPoolConfig ( "demand" ) ?. iconUrl ,
182- badge : "Soon" ,
183- badgeColor : "orange" ,
184- warning : "Coming soon." ,
185- disabled : true
171+ warning : "Pool for registered businesses only at the moment" ,
172+ disabled : true ,
173+ url : "https://dmnd.work/"
186174 }
187175 ]
188176 } ,
@@ -199,9 +187,10 @@ const POOL_CONNECTION_WIZARD_CONFIG: WizardConfig = {
199187 value : "community_sri" ,
200188 nextStepId : "translator_proxy_configuration" ,
201189 icon : Globe ,
190+ iconUrl : getPoolConfig ( "community_sri" ) ?. iconUrl ,
202191 badge : "Testing" ,
203192 badgeColor : "blue" ,
204- warning : "Not for production use – no share accounting / no payouts. "
193+ warning : "Not for production use – any blocks found will be donated to the SRI project "
205194 }
206195 ]
207196 } ,
0 commit comments