@@ -2,17 +2,15 @@ extern crate core;
2
2
3
3
use std:: { fs, path:: PathBuf , str:: FromStr } ;
4
4
5
- use base64:: { prelude:: BASE64_STANDARD , Engine } ;
6
5
use clap:: { Parser , Subcommand } ;
7
6
use jsonrpsee:: {
8
7
core:: { client:: Error , ClientError } ,
9
8
http_client:: { HttpClient , HttpClientBuilder } ,
10
9
} ;
11
10
use protocol:: {
12
11
bitcoin:: { Amount , FeeRate , OutPoint , Txid } ,
13
- hasher:: { KeyHasher , SpaceKey } ,
12
+ hasher:: { KeyHasher } ,
14
13
slabel:: SLabel ,
15
- Covenant , FullSpaceOut ,
16
14
} ;
17
15
use serde:: { Deserialize , Serialize } ;
18
16
use spaced:: {
@@ -31,14 +29,14 @@ use wallet::export::WalletExport;
31
29
pub struct Args {
32
30
/// Bitcoin network to use
33
31
#[ arg( long, env = "SPACED_CHAIN" ) ]
34
- chain : spaced :: config :: ExtendedNetwork ,
32
+ chain : ExtendedNetwork ,
35
33
/// Spaced RPC URL [default: based on specified chain]
36
34
#[ arg( long) ]
37
35
spaced_rpc_url : Option < String > ,
38
36
/// Specify wallet to use
39
37
#[ arg( long, short, global = true , default_value = "default" ) ]
40
38
wallet : String ,
41
- /// Custom dust amount in sat for auction outputs
39
+ /// Custom dust amount in sat for bid outputs
42
40
#[ arg( long, short, global = true ) ]
43
41
dust : Option < u64 > ,
44
42
/// Force invalid transaction (for testing only)
@@ -52,21 +50,15 @@ pub struct Args {
52
50
enum Commands {
53
51
/// Generate a new wallet
54
52
#[ command( name = "createwallet" ) ]
55
- CreateWallet {
56
- #[ arg( default_value = "default" ) ]
57
- name : String ,
58
- } ,
53
+ CreateWallet ,
59
54
/// Load a wallet
60
55
#[ command( name = "loadwallet" ) ]
61
- LoadWallet {
62
- #[ arg( default_value = "default" ) ]
63
- name : String ,
64
- } ,
56
+ LoadWallet ,
65
57
/// Export a wallet
66
58
#[ command( name = "exportwallet" ) ]
67
59
ExportWallet {
68
- # [ arg ( default_value = "default" ) ]
69
- name : String ,
60
+ // Destination path to export json file
61
+ path : PathBuf ,
70
62
} ,
71
63
/// Import a wallet
72
64
#[ command( name = "importwallet" ) ]
@@ -76,10 +68,7 @@ enum Commands {
76
68
} ,
77
69
/// Export a wallet
78
70
#[ command( name = "getwalletinfo" ) ]
79
- GetWalletInfo {
80
- #[ arg( default_value = "default" ) ]
81
- name : String ,
82
- } ,
71
+ GetWalletInfo ,
83
72
/// Export a wallet
84
73
#[ command( name = "getserverinfo" ) ]
85
74
GetServerInfo ,
@@ -163,8 +152,8 @@ enum Commands {
163
152
#[ command( name = "balance" ) ]
164
153
Balance ,
165
154
/// Pre-create outputs that can be auctioned off during the bidding process
166
- #[ command( name = "createauctionoutputs " ) ]
167
- CreateAuctionOutputs {
155
+ #[ command( name = "createbidouts " ) ]
156
+ CreateBidOuts {
168
157
/// Number of output pairs to create
169
158
/// Each pair can be used to make a bid
170
159
pairs : u8 ,
@@ -187,20 +176,21 @@ enum Commands {
187
176
outpoint : OutPoint ,
188
177
} ,
189
178
/// Get the estimated rollout batch for the specified interval
190
- #[ command( name = "getrolloutestimate " ) ]
191
- GetRolloutEstimate {
179
+ #[ command( name = "getrollout " ) ]
180
+ GetRollout {
192
181
// Get the estimated rollout for the target interval. Every ~144 blocks (a rollout interval),
193
182
// 10 spaces are released for auction. Specify 0 [default] for the coming interval, 1
194
183
// for the interval after and so on.
195
184
#[ arg( default_value = "0" ) ]
196
185
target_interval : usize ,
197
186
} ,
198
- /// Associate the specified data with a given space (experimental may be removed)
199
- #[ command( name = "setdata" ) ]
200
- SetData {
187
+ /// Associate the specified data with a given space (not recommended use Fabric instead)
188
+ /// If for whatever reason it's not possible to use other protocols, then you may use this.
189
+ #[ command( name = "setrawfallback" ) ]
190
+ SetRawFallback {
201
191
/// Space name
202
192
space : String ,
203
- /// Base64 encoded data
193
+ /// Hex encoded data
204
194
data : String ,
205
195
/// Fee rate to use in sat/vB
206
196
#[ arg( long, short) ]
@@ -212,8 +202,8 @@ enum Commands {
212
202
ListSpaces ,
213
203
/// List unspent auction outputs i.e. outputs that can be
214
204
/// auctioned off in the bidding process
215
- #[ command( name = "listauctionoutputs " ) ]
216
- ListAuctionOutputs ,
205
+ #[ command( name = "listbidouts " ) ]
206
+ ListBidOuts ,
217
207
/// List unspent coins owned by wallet
218
208
#[ command( name = "listunspent" ) ]
219
209
ListUnspent ,
@@ -225,19 +215,18 @@ enum Commands {
225
215
/// compatible with most bitcoin wallets
226
216
#[ command( name = "getnewaddress" ) ]
227
217
GetCoinAddress ,
228
- /// Calculate a spacehash from the specified space name
229
- #[ command( name = "spacehash" ) ]
230
- SpaceHash {
231
- /// The space name
232
- space : String ,
233
- } ,
234
218
/// Force spend an output owned by wallet (for testing only)
235
219
#[ command( name = "forcespend" ) ]
236
220
ForceSpend {
237
221
outpoint : OutPoint ,
238
222
#[ arg( long, short) ]
239
223
fee_rate : u64 ,
240
224
} ,
225
+ /// DNS encodes the space and calculates the SHA-256 hash
226
+ #[ command( name = "hashspace" ) ]
227
+ HashSpace {
228
+ space : String ,
229
+ } ,
241
230
}
242
231
243
232
struct SpaceCli {
@@ -376,89 +365,56 @@ async fn main() -> anyhow::Result<()> {
376
365
Ok ( ( ) )
377
366
}
378
367
379
- fn space_hash ( spaceish : & str ) -> anyhow:: Result < String > {
368
+ fn hash_space ( spaceish : & str ) -> anyhow:: Result < String > {
380
369
let space = normalize_space ( & spaceish) ;
381
370
let sname = SLabel :: from_str ( & space) ?;
382
- let spacehash = SpaceKey :: from ( Sha256 :: hash ( sname. as_ref ( ) ) ) ;
383
- Ok ( hex:: encode ( spacehash. as_slice ( ) ) )
371
+ Ok ( hex:: encode ( Sha256 :: hash ( sname. as_ref ( ) ) ) )
384
372
}
385
373
386
374
async fn handle_commands (
387
375
cli : & SpaceCli ,
388
376
command : Commands ,
389
377
) -> std:: result:: Result < ( ) , ClientError > {
390
378
match command {
391
- Commands :: GetRolloutEstimate {
379
+ Commands :: GetRollout {
392
380
target_interval : target,
393
381
} => {
394
- let hashes = cli. client . get_rollout ( target) . await ?;
395
- let mut spaceouts = Vec :: with_capacity ( hashes. len ( ) ) ;
396
- for ( priority, spacehash) in hashes {
397
- let outpoint = cli
398
- . client
399
- . get_space_owner ( & hex:: encode ( spacehash. as_slice ( ) ) )
400
- . await ?;
401
-
402
- if let Some ( outpoint) = outpoint {
403
- if let Some ( spaceout) = cli. client . get_spaceout ( outpoint) . await ? {
404
- spaceouts. push ( (
405
- priority,
406
- FullSpaceOut {
407
- txid : outpoint. txid ,
408
- spaceout,
409
- } ,
410
- ) ) ;
411
- }
412
- }
413
- }
414
-
415
- let data: Vec < _ > = spaceouts
416
- . into_iter ( )
417
- . map ( |( priority, spaceout) | {
418
- let space = spaceout. spaceout . space . unwrap ( ) ;
419
- (
420
- space. name . to_string ( ) ,
421
- match space. covenant {
422
- Covenant :: Bid { .. } => priority,
423
- _ => 0 ,
424
- } ,
425
- )
426
- } )
427
- . collect ( ) ;
428
-
382
+ let data = cli. client . get_rollout ( target) . await ?;
429
383
println ! ( "{}" , serde_json:: to_string_pretty( & data) ?) ;
430
384
}
431
385
Commands :: EstimateBid { target } => {
432
386
let response = cli. client . estimate_bid ( target) . await ?;
433
387
println ! ( "{} sat" , Amount :: from_sat( response) . to_string( ) ) ;
434
388
}
435
389
Commands :: GetSpace { space } => {
436
- let space_hash = space_hash ( & space) . map_err ( |e| ClientError :: Custom ( e. to_string ( ) ) ) ?;
390
+ let space_hash = hash_space ( & space) . map_err ( |e| ClientError :: Custom ( e. to_string ( ) ) ) ?;
437
391
let response = cli. client . get_space ( & space_hash) . await ?;
438
392
println ! ( "{}" , serde_json:: to_string_pretty( & response) ?) ;
439
393
}
440
394
Commands :: GetSpaceOut { outpoint } => {
441
395
let response = cli. client . get_spaceout ( outpoint) . await ?;
442
396
println ! ( "{}" , serde_json:: to_string_pretty( & response) ?) ;
443
397
}
444
- Commands :: CreateWallet { name } => {
445
- cli. client . wallet_create ( & name ) . await ?;
398
+ Commands :: CreateWallet => {
399
+ cli. client . wallet_create ( & cli . wallet ) . await ?;
446
400
}
447
- Commands :: LoadWallet { name } => {
448
- cli. client . wallet_load ( & name ) . await ?;
401
+ Commands :: LoadWallet => {
402
+ cli. client . wallet_load ( & cli . wallet ) . await ?;
449
403
}
450
404
Commands :: ImportWallet { path } => {
451
405
let content =
452
406
fs:: read_to_string ( path) . map_err ( |e| ClientError :: Custom ( e. to_string ( ) ) ) ?;
453
407
let wallet: WalletExport = serde_json:: from_str ( & content) ?;
454
408
cli. client . wallet_import ( wallet) . await ?;
455
409
}
456
- Commands :: ExportWallet { name } => {
457
- let result = cli. client . wallet_export ( & name) . await ?;
458
- println ! ( "{}" , serde_json:: to_string_pretty( & result) . expect( "result" ) ) ;
410
+ Commands :: ExportWallet { path } => {
411
+ let result = cli. client . wallet_export ( & cli. wallet ) . await ?;
412
+ let content = serde_json:: to_string_pretty ( & result) . expect ( "result" ) ;
413
+ fs:: write ( path, content) . map_err ( |e|
414
+ ClientError :: Custom ( format ! ( "Could not save to path: {}" , e. to_string( ) ) ) ) ?;
459
415
}
460
- Commands :: GetWalletInfo { name } => {
461
- let result = cli. client . wallet_get_info ( & name ) . await ?;
416
+ Commands :: GetWalletInfo => {
417
+ let result = cli. client . wallet_get_info ( & cli . wallet ) . await ?;
462
418
println ! ( "{}" , serde_json:: to_string_pretty( & result) . expect( "result" ) ) ;
463
419
}
464
420
Commands :: GetServerInfo => {
@@ -495,7 +451,7 @@ async fn handle_commands(
495
451
)
496
452
. await ?
497
453
}
498
- Commands :: CreateAuctionOutputs { pairs, fee_rate } => {
454
+ Commands :: CreateBidOuts { pairs, fee_rate } => {
499
455
cli. send_request ( None , Some ( pairs) , fee_rate) . await ?
500
456
}
501
457
Commands :: Register {
@@ -544,17 +500,17 @@ async fn handle_commands(
544
500
)
545
501
. await ?
546
502
}
547
- Commands :: SetData {
503
+ Commands :: SetRawFallback {
548
504
mut space,
549
505
data,
550
506
fee_rate,
551
507
} => {
552
508
space = normalize_space ( & space) ;
553
- let data = match BASE64_STANDARD . decode ( data) {
509
+ let data = match hex :: decode ( data) {
554
510
Ok ( data) => data,
555
511
Err ( e) => {
556
512
return Err ( ClientError :: Custom ( format ! (
557
- "Could not base64 decode data: {}" ,
513
+ "Could not hex decode data: {}" ,
558
514
e
559
515
) ) )
560
516
}
@@ -576,7 +532,7 @@ async fn handle_commands(
576
532
let spaces = cli. client . wallet_list_unspent ( & cli. wallet ) . await ?;
577
533
println ! ( "{}" , serde_json:: to_string_pretty( & spaces) ?) ;
578
534
}
579
- Commands :: ListAuctionOutputs => {
535
+ Commands :: ListBidOuts => {
580
536
let spaces = cli. client . wallet_list_auction_outputs ( & cli. wallet ) . await ?;
581
537
println ! ( "{}" , serde_json:: to_string_pretty( & spaces) ?) ;
582
538
}
@@ -610,12 +566,6 @@ async fn handle_commands(
610
566
. await ?;
611
567
println ! ( "{}" , serde_json:: to_string_pretty( & response) ?) ;
612
568
}
613
- Commands :: SpaceHash { space } => {
614
- println ! (
615
- "{}" ,
616
- space_hash( & space) . map_err( |e| ClientError :: Custom ( e. to_string( ) ) ) ?
617
- ) ;
618
- }
619
569
Commands :: ForceSpend { outpoint, fee_rate } => {
620
570
let result = cli
621
571
. client
@@ -627,6 +577,12 @@ async fn handle_commands(
627
577
. await ?;
628
578
println ! ( "{}" , serde_json:: to_string_pretty( & result) . expect( "result" ) ) ;
629
579
}
580
+ Commands :: HashSpace { space } => {
581
+ println ! (
582
+ "{}" ,
583
+ hash_space( & space) . map_err( |e| ClientError :: Custom ( e. to_string( ) ) ) ?
584
+ ) ;
585
+ }
630
586
}
631
587
632
588
Ok ( ( ) )
0 commit comments