1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
// Bitcoin Dev Kit
// Written in 2020 by Alekos Filini <alekos.filini@gmail.com>
//
// Copyright (c) 2020-2025 Bitcoin Dev Kit Developers
//
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
// You may not use this file except in accordance with one or both of these
// licenses.
//! Wallet
//!
//! This module defines the [`Wallet`].
use alloc::{
boxed::Box,
string::{String, ToString},
sync::Arc,
vec::Vec,
};
use core::fmt::{Debug, Display};
use core::{cmp::Ordering, fmt, mem, ops::Deref};
use bdk_chain::{
indexed_tx_graph,
indexer::keychain_txout::KeychainTxOutIndex,
local_chain::{ApplyHeaderError, CannotConnectError, CheckPoint, CheckPointIter, LocalChain},
spk_client::{
FullScanRequest, FullScanRequestBuilder, FullScanResponse, SyncRequest, SyncRequestBuilder,
SyncResponse,
},
tx_graph::{CalculateFeeError, CanonicalTx, TxGraph, TxUpdate},
BlockId, CanonicalizationParams, ChainPosition, ConfirmationBlockTime, DescriptorExt,
FullTxOut, Indexed, IndexedTxGraph, Indexer, Merge,
};
use bitcoin::{
absolute,
consensus::encode::serialize,
constants::genesis_block,
psbt,
secp256k1::Secp256k1,
sighash::{EcdsaSighashType, TapSighashType},
transaction, Address, Amount, Block, FeeRate, Network, NetworkKind, OutPoint, Psbt, ScriptBuf,
Sequence, SignedAmount, Transaction, TxOut, Txid, Weight, Witness,
};
use miniscript::{
descriptor::KeyMap,
psbt::{PsbtExt, PsbtInputExt, PsbtInputSatisfier},
};
use rand_core::RngCore;
mod changeset;
pub mod coin_selection;
pub mod error;
mod event;
pub mod export;
pub mod locked_outpoints;
#[cfg(feature = "rusqlite")]
pub mod migration;
mod params;
mod persisted;
pub mod signer;
pub mod tx_builder;
pub(crate) mod utils;
use crate::collections::{BTreeMap, HashMap, HashSet};
use crate::descriptor::{
check_wallet_descriptor, error::Error as DescriptorError, policy::BuildSatisfaction,
DerivedDescriptor, DescriptorMeta, ExtendedDescriptor, ExtractPolicy, IntoWalletDescriptor,
Policy, XKeyUtils,
};
use crate::psbt::PsbtUtils;
use crate::types::*;
use crate::wallet::{
coin_selection::{DefaultCoinSelectionAlgorithm, Excess, InsufficientFunds},
error::{BuildFeeBumpError, CreateTxError, MiniscriptPsbtError},
signer::{SignOptions, SignerError, SignerOrdering, SignersContainer, TransactionSigner},
tx_builder::{FeePolicy, TxBuilder, TxParams},
utils::{check_nsequence_rbf, After, Older, SecpCtx},
};
// re-exports
pub use bdk_chain::Balance;
pub use changeset::ChangeSet;
pub use error::{LoadError, LoadMismatch};
pub use event::*;
pub use params::*;
pub use persisted::*;
pub use utils::IsDust;
pub use utils::TxDetails;
/// A Bitcoin wallet
///
/// The `Wallet` acts as a way of coherently interfacing with output descriptors and related
/// transactions. Its main components are:
///
/// 1. output *descriptors* from which it can derive addresses.
/// 2. [`signer`]s that can contribute signatures to addresses instantiated from the descriptors.
///
/// The user is responsible for loading and writing wallet changes which are represented as
/// [`ChangeSet`]s (see [`take_staged`]). Also see individual functions and example for instructions
/// on when [`Wallet`] state needs to be persisted.
///
/// The `Wallet` descriptor (external) and change descriptor (internal) must not derive the same
/// script pubkeys. See [`KeychainTxOutIndex::insert_descriptor()`] for more details.
///
/// [`signer`]: crate::signer
/// [`take_staged`]: Wallet::take_staged
#[derive(Debug)]
pub struct Wallet {
signers: Arc<SignersContainer>,
change_signers: Arc<SignersContainer>,
chain: LocalChain,
tx_graph: IndexedTxGraph<ConfirmationBlockTime, KeychainTxOutIndex<KeychainKind>>,
stage: ChangeSet,
network: Network,
secp: SecpCtx,
locked_outpoints: HashSet<OutPoint>,
}
/// An update to [`Wallet`].
///
/// It updates [`KeychainTxOutIndex`], [`bdk_chain::TxGraph`] and [`LocalChain`] atomically.
#[derive(Debug, Clone, Default)]
pub struct Update {
/// Contains the last active derivation indices per keychain (`K`), which is used to update the
/// [`KeychainTxOutIndex`].
pub last_active_indices: BTreeMap<KeychainKind, u32>,
/// Update for the wallet's internal [`TxGraph`].
pub tx_update: TxUpdate<ConfirmationBlockTime>,
/// Update for the wallet's internal [`LocalChain`].
pub chain: Option<CheckPoint>,
}
impl From<FullScanResponse<KeychainKind>> for Update {
fn from(value: FullScanResponse<KeychainKind>) -> Self {
Self {
last_active_indices: value.last_active_indices,
tx_update: value.tx_update,
chain: value.chain_update,
}
}
}
impl From<SyncResponse> for Update {
fn from(value: SyncResponse) -> Self {
Self {
last_active_indices: BTreeMap::new(),
tx_update: value.tx_update,
chain: value.chain_update,
}
}
}
/// A derived address and the index it was found at.
/// For convenience this automatically derefs to `Address`
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct AddressInfo {
/// Child index of this address
pub index: u32,
/// Address
pub address: Address,
/// Type of keychain
pub keychain: KeychainKind,
}
impl Deref for AddressInfo {
type Target = Address;
fn deref(&self) -> &Self::Target {
&self.address
}
}
impl fmt::Display for AddressInfo {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.address)
}
}
/// A `CanonicalTx` managed by a `Wallet`.
pub type WalletTx<'a> = CanonicalTx<'a, Arc<Transaction>, ConfirmationBlockTime>;
impl Wallet {
/// Build a new single descriptor [`Wallet`].
///
/// If you have previously created a wallet, use [`load`](Self::load) instead.
///
/// # Note
///
/// Only use this method when creating a wallet designed to be used with a single
/// descriptor and keychain. Otherwise the recommended way to construct a new wallet is
/// by using [`Wallet::create`]. It's worth noting that not all features are available
/// with single descriptor wallets, for example setting a [`change_policy`] on [`TxBuilder`]
/// and related methods such as [`do_not_spend_change`]. This is because all payments are
/// received on the external keychain (including change), and without a change keychain
/// BDK lacks enough information to distinguish between change and outside payments.
///
/// Additionally because this wallet has no internal (change) keychain, all methods that
/// require a [`KeychainKind`] as input, e.g. [`reveal_next_address`] should only be called
/// using the [`External`] variant. In most cases passing [`Internal`] is treated as the
/// equivalent of [`External`] but this behavior must not be relied on.
///
/// # Example
///
/// ```rust
/// # use bdk_wallet::Wallet;
/// # use bitcoin::Network;
/// # const EXTERNAL_DESC: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)";
/// # let temp_dir = tempfile::tempdir().expect("must create tempdir");
/// # let file_path = temp_dir.path().join("store.db");
/// // Create a wallet that is persisted to SQLite database.
/// use bdk_wallet::rusqlite::Connection;
/// let mut conn = Connection::open(file_path)?;
/// let wallet = Wallet::create_single(EXTERNAL_DESC)
/// .network(Network::Testnet)
/// .create_wallet(&mut conn)?;
/// # Ok::<_, anyhow::Error>(())
/// ```
/// [`change_policy`]: TxBuilder::change_policy
/// [`do_not_spend_change`]: TxBuilder::do_not_spend_change
/// [`External`]: KeychainKind::External
/// [`Internal`]: KeychainKind::Internal
/// [`reveal_next_address`]: Self::reveal_next_address
pub fn create_single<D>(descriptor: D) -> CreateParams
where
D: IntoWalletDescriptor + Send + Clone + 'static,
{
CreateParams::new_single(descriptor)
}
/// Build a new [`Wallet`].
///
/// If you have previously created a wallet, use [`load`](Self::load) instead.
///
/// # Synopsis
///
/// ```rust
/// # use bdk_wallet::Wallet;
/// # use bitcoin::Network;
/// # fn main() -> anyhow::Result<()> {
/// # const EXTERNAL_DESC: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)";
/// # const INTERNAL_DESC: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)";
/// // Create a non-persisted wallet.
/// let wallet = Wallet::create(EXTERNAL_DESC, INTERNAL_DESC)
/// .network(Network::Testnet)
/// .create_wallet_no_persist()?;
///
/// // Create a wallet that is persisted to SQLite database.
/// # let temp_dir = tempfile::tempdir().expect("must create tempdir");
/// # let file_path = temp_dir.path().join("store.db");
/// use bdk_wallet::rusqlite::Connection;
/// let mut conn = Connection::open(file_path)?;
/// let wallet = Wallet::create(EXTERNAL_DESC, INTERNAL_DESC)
/// .network(Network::Testnet)
/// .create_wallet(&mut conn)?;
/// # Ok(())
/// # }
/// ```
pub fn create<D>(descriptor: D, change_descriptor: D) -> CreateParams
where
D: IntoWalletDescriptor + Send + Clone + 'static,
{
CreateParams::new(descriptor, change_descriptor)
}
/// Build a new [`Wallet`] from a two-path descriptor.
///
/// This function parses a multipath descriptor with exactly 2 paths and creates a wallet
/// using the existing receive and change wallet creation logic. Note that you can only use this
/// method with public extended keys (`xpub` prefix) to create watch-only wallets.
///
/// Multipath descriptors follow [BIP 389] and allow defining both receive and change
/// derivation paths in a single descriptor using the `<0;1>` syntax.
///
/// If you have previously created a wallet, use [`load`](Self::load) instead.
///
/// # Errors
/// Returns an error if the descriptor is invalid, not a 2-path multipath descriptor, or if
/// the descriptor provided contains an extended private key (`xprv` prefix).
///
/// # Synopsis
///
/// ```rust
/// # use bdk_wallet::Wallet;
/// # use bitcoin::Network;
/// # use bdk_wallet::KeychainKind;
/// # const TWO_PATH_DESC: &str = "wpkh([9a6a2580/84'/1'/0']tpubDDnGNapGEY6AZAdQbfRJgMg9fvz8pUBrLwvyvUqEgcUfgzM6zc2eVK4vY9x9L5FJWdX8WumXuLEDV5zDZnTfbn87vLe9XceCFwTu9so9Kks/<0;1>/*)";
/// let wallet = Wallet::create_from_two_path_descriptor(TWO_PATH_DESC)
/// .network(Network::Testnet)
/// .create_wallet_no_persist()
/// .unwrap();
///
/// // The multipath descriptor automatically creates separate receive and change descriptors
/// let receive_addr = wallet.peek_address(KeychainKind::External, 0); // Uses path /0/*
/// let change_addr = wallet.peek_address(KeychainKind::Internal, 0); // Uses path /1/*
/// assert_ne!(receive_addr.address, change_addr.address);
/// ```
///
/// [BIP 389]: https://github.com/bitcoin/bips/blob/master/bip-0389.mediawiki
pub fn create_from_two_path_descriptor<D>(two_path_descriptor: D) -> CreateParams
where
D: IntoWalletDescriptor + Send + Clone + 'static,
{
CreateParams::new_two_path(two_path_descriptor)
}
/// Create a new [`Wallet`] with given `params`.
///
/// Refer to [`Wallet::create`] for more.
pub fn create_with_params(params: CreateParams) -> Result<Self, DescriptorError> {
let secp = SecpCtx::new();
let network = params.network;
let network_kind = NetworkKind::from(network);
let genesis_hash = params
.genesis_hash
.unwrap_or(genesis_block(network).block_hash());
let (chain, chain_changeset) = LocalChain::from_genesis_hash(genesis_hash);
let (descriptor, mut descriptor_keymap) = (params.descriptor)(&secp, network_kind)?;
check_wallet_descriptor(&descriptor)?;
descriptor_keymap.extend(params.descriptor_keymap);
let signers = Arc::new(SignersContainer::build(
descriptor_keymap,
&descriptor,
&secp,
));
let (change_descriptor, change_signers) = match params.change_descriptor {
Some(make_desc) => {
let (change_descriptor, mut internal_keymap) = make_desc(&secp, network_kind)?;
check_wallet_descriptor(&change_descriptor)?;
internal_keymap.extend(params.change_descriptor_keymap);
let change_signers = Arc::new(SignersContainer::build(
internal_keymap,
&change_descriptor,
&secp,
));
(Some(change_descriptor), change_signers)
}
None => (None, Arc::new(SignersContainer::new())),
};
let locked_outpoints = HashSet::new();
let mut stage = ChangeSet {
descriptor: Some(descriptor.clone()),
change_descriptor: change_descriptor.clone(),
local_chain: chain_changeset,
network: Some(network),
..Default::default()
};
let tx_graph = make_indexed_graph(
&mut stage,
Default::default(),
Default::default(),
descriptor,
change_descriptor,
params.lookahead,
params.use_spk_cache,
)?;
Ok(Wallet {
signers,
change_signers,
network,
chain,
tx_graph,
stage,
secp,
locked_outpoints,
})
}
/// Build [`Wallet`] by loading from persistence or [`ChangeSet`].
///
/// Note that the descriptor secret keys are not persisted to the db. You can add
/// signers after-the-fact with [`Wallet::add_signer`] or [`Wallet::set_keymap`]. You
/// can also add keys when building the wallet by using [`LoadParams::keymap`]. Finally
/// you can check the wallet's descriptors are what you expect with [`LoadParams::descriptor`]
/// which will try to populate signers if [`LoadParams::extract_keys`] is enabled.
///
/// # Synopsis
///
/// ```rust,no_run
/// # use bdk_wallet::{Wallet, ChangeSet, KeychainKind};
/// # use bitcoin::{BlockHash, Network, hashes::Hash};
/// # fn main() -> anyhow::Result<()> {
/// # const EXTERNAL_DESC: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)";
/// # const INTERNAL_DESC: &str = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)";
/// # let changeset = ChangeSet::default();
/// // Load a wallet from changeset (no persistence).
/// let wallet = Wallet::load()
/// .load_wallet_no_persist(changeset)?
/// .expect("must have data to load wallet");
///
/// // Load a wallet that is persisted to SQLite database.
/// # let temp_dir = tempfile::tempdir().expect("must create tempdir");
/// # let file_path = temp_dir.path().join("store.db");
/// # let external_keymap = Default::default();
/// # let internal_keymap = Default::default();
/// # let genesis_hash = BlockHash::all_zeros();
/// let mut conn = bdk_wallet::rusqlite::Connection::open(file_path)?;
/// let mut wallet = Wallet::load()
/// // check loaded descriptors matches these values and extract private keys
/// .descriptor(KeychainKind::External, Some(EXTERNAL_DESC))
/// .descriptor(KeychainKind::Internal, Some(INTERNAL_DESC))
/// .extract_keys()
/// // you can also manually add private keys
/// .keymap(KeychainKind::External, external_keymap)
/// .keymap(KeychainKind::Internal, internal_keymap)
/// // ensure loaded wallet's genesis hash matches this value
/// .check_genesis_hash(genesis_hash)
/// // set a lookahead for our indexer
/// .lookahead(101)
/// .load_wallet(&mut conn)?
/// .expect("must have data to load wallet");
/// # Ok(())
/// # }
/// ```
pub fn load() -> LoadParams {
LoadParams::new()
}
/// Load [`Wallet`] from the given previously persisted [`ChangeSet`] and `params`.
///
/// Returns `Ok(None)` if the changeset is empty. Refer to [`Wallet::load`] for more.
pub fn load_with_params(
changeset: ChangeSet,
params: LoadParams,
) -> Result<Option<Self>, LoadError> {
if changeset.is_empty() {
return Ok(None);
}
let secp = Secp256k1::new();
let network = changeset.network.ok_or(LoadError::MissingNetwork)?;
let network_kind = NetworkKind::from(network);
let chain = LocalChain::from_changeset(changeset.local_chain)
.map_err(|_| LoadError::MissingGenesis)?;
if let Some(exp_network) = params.check_network {
if network != exp_network {
return Err(LoadError::Mismatch(LoadMismatch::Network {
loaded: network,
expected: exp_network,
}));
}
}
if let Some(exp_genesis_hash) = params.check_genesis_hash {
if chain.genesis_hash() != exp_genesis_hash {
return Err(LoadError::Mismatch(LoadMismatch::Genesis {
loaded: chain.genesis_hash(),
expected: exp_genesis_hash,
}));
}
}
let descriptor = changeset
.descriptor
.ok_or(LoadError::MissingDescriptor(KeychainKind::External))?;
check_wallet_descriptor(&descriptor).map_err(LoadError::Descriptor)?;
let mut external_keymap = params.descriptor_keymap;
if let Some(expected) = params.check_descriptor {
if let Some(make_desc) = expected {
let (exp_desc, keymap) =
make_desc(&secp, network_kind).map_err(LoadError::Descriptor)?;
if descriptor.descriptor_id() != exp_desc.descriptor_id() {
return Err(LoadError::Mismatch(LoadMismatch::Descriptor {
keychain: KeychainKind::External,
loaded: Some(Box::new(descriptor)),
expected: Some(Box::new(exp_desc)),
}));
}
if params.extract_keys {
external_keymap.extend(keymap);
}
} else {
return Err(LoadError::Mismatch(LoadMismatch::Descriptor {
keychain: KeychainKind::External,
loaded: Some(Box::new(descriptor)),
expected: None,
}));
}
}
let signers = Arc::new(SignersContainer::build(external_keymap, &descriptor, &secp));
let mut change_descriptor = None;
let mut internal_keymap = params.change_descriptor_keymap;
match (changeset.change_descriptor, params.check_change_descriptor) {
// Empty signer.
(None, None) => {}
(None, Some(expect)) => {
// Expected descriptor, but none is loaded.
if let Some(make_desc) = expect {
let (exp_desc, _) =
make_desc(&secp, network_kind).map_err(LoadError::Descriptor)?;
return Err(LoadError::Mismatch(LoadMismatch::Descriptor {
keychain: KeychainKind::Internal,
loaded: None,
expected: Some(Box::new(exp_desc)),
}));
}
}
// Nothing expected.
(Some(desc), None) => {
check_wallet_descriptor(&desc).map_err(LoadError::Descriptor)?;
change_descriptor = Some(desc);
}
(Some(desc), Some(expect)) => match expect {
// Expected none for existing.
None => {
return Err(LoadError::Mismatch(LoadMismatch::Descriptor {
keychain: KeychainKind::Internal,
loaded: Some(Box::new(desc)),
expected: None,
}))
}
// Parameters must match.
Some(make_desc) => {
check_wallet_descriptor(&desc).map_err(LoadError::Descriptor)?;
let (exp_desc, keymap) =
make_desc(&secp, network_kind).map_err(LoadError::Descriptor)?;
if desc.descriptor_id() != exp_desc.descriptor_id() {
return Err(LoadError::Mismatch(LoadMismatch::Descriptor {
keychain: KeychainKind::Internal,
loaded: Some(Box::new(desc)),
expected: Some(Box::new(exp_desc)),
}));
}
if params.extract_keys {
internal_keymap.extend(keymap);
}
change_descriptor = Some(desc);
}
},
}
let change_signers = match change_descriptor {
Some(ref change_descriptor) => Arc::new(SignersContainer::build(
internal_keymap,
change_descriptor,
&secp,
)),
None => Arc::new(SignersContainer::new()),
};
// Apply locked outpoints
let locked_outpoints = changeset.locked_outpoints.outpoints;
let locked_outpoints = locked_outpoints
.into_iter()
.filter(|&(_op, is_locked)| is_locked)
.map(|(op, _)| op)
.collect();
let mut stage = ChangeSet::default();
let tx_graph = make_indexed_graph(
&mut stage,
changeset.tx_graph,
changeset.indexer,
descriptor,
change_descriptor,
params.lookahead,
params.use_spk_cache,
)
.map_err(LoadError::Descriptor)?;
Ok(Some(Wallet {
signers,
change_signers,
chain,
tx_graph,
stage,
network,
secp,
locked_outpoints,
}))
}
/// Get the [`Network`] the wallet is using.
pub fn network(&self) -> Network {
self.network
}
/// Iterator over all keychains in this wallet
pub fn keychains(&self) -> impl Iterator<Item = (KeychainKind, &ExtendedDescriptor)> {
self.tx_graph.index.keychains()
}
/// Peek an address of the given `keychain` at `index` without revealing it.
///
/// For non-wildcard descriptors this returns the same address at every provided index.
///
/// # Panics
///
/// This panics when the caller requests for an address of derivation index greater than the
/// [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) max index.
pub fn peek_address(&self, keychain: KeychainKind, mut index: u32) -> AddressInfo {
let keychain = self.map_keychain(keychain);
let mut spk_iter = self
.tx_graph
.index
.unbounded_spk_iter(keychain)
.expect("keychain must exist");
if !spk_iter.descriptor().has_wildcard() {
index = 0;
}
let (index, spk) = spk_iter
.nth(index as usize)
.expect("derivation index is out of bounds");
AddressInfo {
index,
address: Address::from_script(&spk, self.network).expect("must have address form"),
keychain,
}
}
/// Attempt to reveal the next address of the given `keychain`.
///
/// This will increment the keychain's derivation index. If the keychain's descriptor doesn't
/// contain a wildcard or every address is already revealed up to the maximum derivation
/// index defined in [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki),
/// then the last revealed address will be returned.
///
/// **WARNING**: To avoid address reuse you must persist the changes resulting from one or more
/// calls to this method before closing the wallet. For example:
///
/// ```rust,no_run
/// # use bdk_wallet::{LoadParams, ChangeSet, KeychainKind};
/// use bdk_chain::rusqlite::Connection;
/// let mut conn = Connection::open_in_memory().expect("must open connection");
/// let mut wallet = LoadParams::new()
/// .load_wallet(&mut conn)
/// .expect("database is okay")
/// .expect("database has data");
/// let next_address = wallet.reveal_next_address(KeychainKind::External);
/// wallet.persist(&mut conn).expect("write is okay");
///
/// // Now it's safe to show the user their next address!
/// println!("Next address: {}", next_address.address);
/// # Ok::<(), anyhow::Error>(())
/// ```
pub fn reveal_next_address(&mut self, keychain: KeychainKind) -> AddressInfo {
let keychain = self.map_keychain(keychain);
let index = &mut self.tx_graph.index;
let stage = &mut self.stage;
let ((index, spk), index_changeset) = index
.reveal_next_spk(keychain)
.expect("keychain must exist");
stage.merge(index_changeset.into());
AddressInfo {
index,
address: Address::from_script(spk.as_script(), self.network)
.expect("must have address form"),
keychain,
}
}
/// Reveal addresses up to and including the target `index` and return an iterator
/// of newly revealed addresses.
///
/// If the target `index` is unreachable, we make a best effort to reveal up to the last
/// possible index. If all addresses up to the given `index` are already revealed, then
/// no new addresses are returned.
///
/// **WARNING**: To avoid address reuse you must persist the changes resulting from one or more
/// calls to this method before closing the wallet. See [`Wallet::reveal_next_address`].
pub fn reveal_addresses_to(
&mut self,
keychain: KeychainKind,
index: u32,
) -> impl Iterator<Item = AddressInfo> + '_ {
let keychain = self.map_keychain(keychain);
let (spks, index_changeset) = self
.tx_graph
.index
.reveal_to_target(keychain, index)
.expect("keychain must exist");
self.stage.merge(index_changeset.into());
spks.into_iter().map(move |(index, spk)| AddressInfo {
index,
address: Address::from_script(&spk, self.network).expect("must have address form"),
keychain,
})
}
/// Get the next unused address for the given `keychain`, i.e. the address with the lowest
/// derivation index that hasn't been used in a transaction.
///
/// This will attempt to reveal a new address if all previously revealed addresses have
/// been used, in which case the returned address will be the same as calling
/// [`Wallet::reveal_next_address`].
///
/// **WARNING**: To avoid address reuse you must persist the changes resulting from one or more
/// calls to this method before closing the wallet. See [`Wallet::reveal_next_address`].
pub fn next_unused_address(&mut self, keychain: KeychainKind) -> AddressInfo {
let keychain = self.map_keychain(keychain);
let index = &mut self.tx_graph.index;
let ((index, spk), index_changeset) = index
.next_unused_spk(keychain)
.expect("keychain must exist");
self.stage
.merge(indexed_tx_graph::ChangeSet::from(index_changeset).into());
AddressInfo {
index,
address: Address::from_script(spk.as_script(), self.network)
.expect("must have address form"),
keychain,
}
}
/// Marks an address used of the given `keychain` at `index`.
///
/// Returns whether the given index was present and then removed from the unused set.
pub fn mark_used(&mut self, keychain: KeychainKind, index: u32) -> bool {
self.tx_graph.index.mark_used(keychain, index)
}
/// Undoes the effect of [`mark_used`] and returns whether the `index` was inserted
/// back into the unused set.
///
/// Since this is only a superficial marker, it will have no effect if the address at the given
/// `index` was actually used, i.e. the wallet has previously indexed a tx output for the
/// derived spk.
///
/// [`mark_used`]: Self::mark_used
pub fn unmark_used(&mut self, keychain: KeychainKind, index: u32) -> bool {
self.tx_graph.index.unmark_used(keychain, index)
}
/// List addresses that are revealed but unused.
///
/// Note if the returned iterator is empty you can reveal more addresses
/// by using [`reveal_next_address`](Self::reveal_next_address) or
/// [`reveal_addresses_to`](Self::reveal_addresses_to).
pub fn list_unused_addresses(
&self,
keychain: KeychainKind,
) -> impl DoubleEndedIterator<Item = AddressInfo> + '_ {
self.tx_graph
.index
.unused_keychain_spks(self.map_keychain(keychain))
.map(move |(index, spk)| AddressInfo {
index,
address: Address::from_script(spk.as_script(), self.network)
.expect("must have address form"),
keychain,
})
}
/// Return whether or not a `script` is part of this wallet (either internal or external)
pub fn is_mine(&self, script: ScriptBuf) -> bool {
self.tx_graph.index.index_of_spk(script).is_some()
}
/// Finds how the wallet derived the script pubkey `spk`.
///
/// Will only return `Some(_)` if the wallet has given out the spk.
pub fn derivation_of_spk(&self, spk: ScriptBuf) -> Option<(KeychainKind, u32)> {
self.tx_graph.index.index_of_spk(spk).cloned()
}
/// Return the list of unspent outputs of this wallet
pub fn list_unspent(&self) -> impl Iterator<Item = LocalOutput> + '_ {
self.tx_graph
.graph()
.filter_chain_unspents(
&self.chain,
self.chain.tip().block_id(),
CanonicalizationParams::default(),
self.tx_graph.index.outpoints().iter().cloned(),
)
.map(|((k, i), full_txo)| new_local_utxo(k, i, full_txo))
}
/// Get the [`TxDetails`] of a wallet transaction.
///
/// If the transaction with txid [`Txid`] cannot be found in the wallet's transactions, `None`
/// is returned.
pub fn tx_details(&self, txid: Txid) -> Option<TxDetails> {
let tx: WalletTx = self.transactions().find(|c| c.tx_node.txid == txid)?;
let (sent, received) = self.sent_and_received(&tx.tx_node.tx);
let fee: Option<Amount> = self.calculate_fee(&tx.tx_node.tx).ok();
let fee_rate: Option<FeeRate> = self.calculate_fee_rate(&tx.tx_node.tx).ok();
let balance_delta: SignedAmount = self.tx_graph.index.net_value(&tx.tx_node.tx, ..);
let chain_position = tx.chain_position;
let tx_details: TxDetails = TxDetails {
txid,
received,
sent,
fee,
fee_rate,
balance_delta,
chain_position,
tx: tx.tx_node.tx,
};
Some(tx_details)
}
/// List all relevant outputs (includes both spent and unspent, confirmed and unconfirmed).
///
/// To list only unspent outputs (UTXOs), use [`Wallet::list_unspent`] instead.
pub fn list_output(&self) -> impl Iterator<Item = LocalOutput> + '_ {
self.tx_graph
.graph()
.filter_chain_txouts(
&self.chain,
self.chain.tip().block_id(),
CanonicalizationParams::default(),
self.tx_graph.index.outpoints().iter().cloned(),
)
.map(|((k, i), full_txo)| new_local_utxo(k, i, full_txo))
}
/// Get all the checkpoints the wallet is currently storing indexed by height.
pub fn checkpoints(&self) -> CheckPointIter {
self.chain.iter_checkpoints()
}
/// Returns the latest checkpoint.
pub fn latest_checkpoint(&self) -> CheckPoint {
self.chain.tip()
}
/// Get unbounded script pubkey iterators for both `Internal` and `External` keychains.
///
/// This is intended to be used when doing a full scan of your addresses (e.g. after restoring
/// from seed words). You pass the `BTreeMap` of iterators to a blockchain data source (e.g.
/// electrum server) which will go through each address until it reaches a *stop gap*.
///
/// Note carefully that iterators go over **all** script pubkeys on the keychains (not what
/// script pubkeys the wallet is storing internally).
pub fn all_unbounded_spk_iters(
&self,
) -> BTreeMap<KeychainKind, impl Iterator<Item = Indexed<ScriptBuf>> + Clone> {
self.tx_graph.index.all_unbounded_spk_iters()
}
/// Get an unbounded script pubkey iterator for the given `keychain`.
///
/// See [`all_unbounded_spk_iters`] for more documentation
///
/// [`all_unbounded_spk_iters`]: Self::all_unbounded_spk_iters
pub fn unbounded_spk_iter(
&self,
keychain: KeychainKind,
) -> impl Iterator<Item = Indexed<ScriptBuf>> + Clone {
self.tx_graph
.index
.unbounded_spk_iter(self.map_keychain(keychain))
.expect("keychain must exist")
}
/// Returns the utxo owned by this wallet corresponding to `outpoint` if it exists in the
/// wallet's database.
pub fn get_utxo(&self, op: OutPoint) -> Option<LocalOutput> {
let ((keychain, index), _) = self.tx_graph.index.txout(op)?;
self.tx_graph
.graph()
.filter_chain_unspents(
&self.chain,
self.chain.tip().block_id(),
CanonicalizationParams::default(),
core::iter::once(((), op)),
)
.map(|(_, full_txo)| new_local_utxo(keychain, index, full_txo))
.next()
}
/// Inserts a [`TxOut`] at [`OutPoint`] into the wallet's transaction graph.
///
/// This is used for providing a previous output's value so that we can use [`calculate_fee`]
/// or [`calculate_fee_rate`] on a given transaction. Outputs inserted with this method will
/// not be returned in [`list_unspent`] or [`list_output`].
///
/// **WARNINGS:** This should only be used to add `TxOut`s that the wallet does not own. Only
/// insert `TxOut`s that you trust the values for!
///
/// You must persist the changes resulting from one or more calls to this method if you need
/// the inserted `TxOut` data to be reloaded after closing the wallet.
/// See [`Wallet::reveal_next_address`].
///
/// [`calculate_fee`]: Self::calculate_fee
/// [`calculate_fee_rate`]: Self::calculate_fee_rate
/// [`list_unspent`]: Self::list_unspent
/// [`list_output`]: Self::list_output
pub fn insert_txout(&mut self, outpoint: OutPoint, txout: TxOut) {
let additions = self.tx_graph.insert_txout(outpoint, txout);
self.stage.merge(additions.into());
}
/// Calculates the fee of a given transaction. Returns [`Amount::ZERO`] if `tx` is a coinbase
/// transaction.
///
/// To calculate the fee for a [`Transaction`] with inputs not owned by this wallet you must
/// manually insert the TxOut(s) into the tx graph using the [`insert_txout`] function.
///
/// Note `tx` does not have to be in the graph for this to work.
///
/// # Examples
///
/// ```rust, no_run
/// # use bitcoin::Txid;
/// # use bdk_wallet::Wallet;
/// # let mut wallet: Wallet = todo!();
/// # let txid:Txid = todo!();
/// let tx = wallet.get_tx(txid).expect("transaction").tx_node.tx;
/// let fee = wallet.calculate_fee(&tx).expect("fee");
/// ```
///
/// ```rust, no_run
/// # use bitcoin::Psbt;
/// # use bdk_wallet::Wallet;
/// # let mut wallet: Wallet = todo!();
/// # let mut psbt: Psbt = todo!();
/// let tx = &psbt.clone().extract_tx().expect("tx");
/// let fee = wallet.calculate_fee(tx).expect("fee");
/// ```
/// [`insert_txout`]: Self::insert_txout
pub fn calculate_fee(&self, tx: &Transaction) -> Result<Amount, CalculateFeeError> {
self.tx_graph.graph().calculate_fee(tx)
}
/// Calculate the [`FeeRate`] for a given transaction.
///
/// To calculate the fee rate for a [`Transaction`] with inputs not owned by this wallet you
/// must manually insert the TxOut(s) into the tx graph using the [`insert_txout`] function.
///
/// Note `tx` does not have to be in the graph for this to work.
///
/// # Examples
///
/// ```rust, no_run
/// # use bitcoin::Txid;
/// # use bdk_wallet::Wallet;
/// # let mut wallet: Wallet = todo!();
/// # let txid:Txid = todo!();
/// let tx = wallet.get_tx(txid).expect("transaction").tx_node.tx;
/// let fee_rate = wallet.calculate_fee_rate(&tx).expect("fee rate");
/// ```
///
/// ```rust, no_run
/// # use bitcoin::Psbt;
/// # use bdk_wallet::Wallet;
/// # let mut wallet: Wallet = todo!();
/// # let mut psbt: Psbt = todo!();
/// let tx = &psbt.clone().extract_tx().expect("tx");
/// let fee_rate = wallet.calculate_fee_rate(tx).expect("fee rate");
/// ```
/// [`insert_txout`]: Self::insert_txout
pub fn calculate_fee_rate(&self, tx: &Transaction) -> Result<FeeRate, CalculateFeeError> {
self.calculate_fee(tx).map(|fee| fee / tx.weight())
}
/// Compute the `tx`'s sent and received [`Amount`]s.
///
/// This method returns a tuple `(sent, received)`. Sent is the sum of the txin amounts
/// that spend from previous txouts tracked by this wallet. Received is the summation
/// of this tx's outputs that send to script pubkeys tracked by this wallet.
///
/// # Examples
///
/// ```rust, no_run
/// # use bitcoin::Txid;
/// # use bdk_wallet::Wallet;
/// # let mut wallet: Wallet = todo!();
/// # let txid:Txid = todo!();
/// let tx = wallet.get_tx(txid).expect("tx exists").tx_node.tx;
/// let (sent, received) = wallet.sent_and_received(&tx);
/// ```
///
/// ```rust, no_run
/// # use bitcoin::Psbt;
/// # use bdk_wallet::Wallet;
/// # let mut wallet: Wallet = todo!();
/// # let mut psbt: Psbt = todo!();
/// let tx = &psbt.clone().extract_tx().expect("tx");
/// let (sent, received) = wallet.sent_and_received(tx);
/// ```
pub fn sent_and_received(&self, tx: &Transaction) -> (Amount, Amount) {
self.tx_graph.index.sent_and_received(tx, ..)
}
/// Get a single transaction from the wallet as a [`WalletTx`] (if the transaction exists).
///
/// `WalletTx` contains the full transaction alongside meta-data such as:
/// * Blocks that the transaction is [`Anchor`]ed in. These may or may not be blocks that exist
/// in the best chain.
/// * The [`ChainPosition`] of the transaction in the best chain - whether the transaction is
/// confirmed or unconfirmed. If the transaction is confirmed, the anchor which proves the
/// confirmation is provided. If the transaction is unconfirmed, the unix timestamp of when
/// the transaction was last seen in the mempool is provided.
///
/// ```rust, no_run
/// use bdk_chain::Anchor;
/// use bdk_wallet::{chain::ChainPosition, Wallet};
/// # let wallet: Wallet = todo!();
/// # let my_txid: bitcoin::Txid = todo!();
///
/// let wallet_tx = wallet.get_tx(my_txid).expect("panic if tx does not exist");
///
/// // get reference to full transaction
/// println!("my tx: {:#?}", wallet_tx.tx_node.tx);
///
/// // list all transaction anchors
/// for anchor in wallet_tx.tx_node.anchors {
/// println!(
/// "tx is anchored by block of hash {}",
/// anchor.anchor_block().hash
/// );
/// }
///
/// // get confirmation status of transaction
/// match wallet_tx.chain_position {
/// ChainPosition::Confirmed {
/// anchor,
/// transitively: None,
/// } => println!(
/// "tx is confirmed at height {}, we know this since {}:{} is in the best chain",
/// anchor.block_id.height, anchor.block_id.height, anchor.block_id.hash,
/// ),
/// ChainPosition::Confirmed {
/// anchor,
/// transitively: Some(_),
/// } => println!(
/// "tx is an ancestor of a tx anchored in {}:{}",
/// anchor.block_id.height, anchor.block_id.hash,
/// ),
/// ChainPosition::Unconfirmed { first_seen, last_seen } => println!(
/// "tx is first seen at {:?}, last seen at {:?}, it is unconfirmed as it is not anchored in the best chain",
/// first_seen, last_seen
/// ),
/// }
/// ```
///
/// [`Anchor`]: bdk_chain::Anchor
pub fn get_tx(&self, txid: Txid) -> Option<WalletTx<'_>> {
let graph = self.tx_graph.graph();
graph
.list_canonical_txs(
&self.chain,
self.chain.tip().block_id(),
CanonicalizationParams::default(),
)
.find(|tx| tx.tx_node.txid == txid)
}
/// Iterate over relevant and canonical transactions in the wallet.
///
/// A transaction is relevant when it spends from or spends to at least one tracked output. A
/// transaction is canonical when it is confirmed in the best chain, or does not conflict
/// with any transaction confirmed in the best chain.
///
/// To iterate over all transactions, including those that are irrelevant and not canonical, use
/// [`TxGraph::full_txs`].
///
/// To iterate over all canonical transactions, including those that are irrelevant, use
/// [`TxGraph::list_canonical_txs`].
pub fn transactions(&self) -> impl Iterator<Item = WalletTx<'_>> + '_ {
let tx_graph = self.tx_graph.graph();
let tx_index = &self.tx_graph.index;
tx_graph
.list_canonical_txs(
&self.chain,
self.chain.tip().block_id(),
CanonicalizationParams::default(),
)
.filter(|c_tx| tx_index.is_tx_relevant(&c_tx.tx_node.tx))
}
/// Array of relevant and canonical transactions in the wallet sorted with a comparator
/// function.
///
/// This is a helper method equivalent to collecting the result of [`Wallet::transactions`]
/// into a [`Vec`] and then sorting it.
///
/// # Example
///
/// ```rust,no_run
/// # use bdk_wallet::{LoadParams, Wallet, WalletTx};
/// # let mut wallet:Wallet = todo!();
/// // Transactions by chain position: first unconfirmed then descending by confirmed height.
/// let sorted_txs: Vec<WalletTx> =
/// wallet.transactions_sort_by(|tx1, tx2| tx2.chain_position.cmp(&tx1.chain_position));
/// # Ok::<(), anyhow::Error>(())
/// ```
pub fn transactions_sort_by<F>(&self, compare: F) -> Vec<WalletTx<'_>>
where
F: FnMut(&WalletTx, &WalletTx) -> Ordering,
{
let mut txs: Vec<WalletTx> = self.transactions().collect();
txs.sort_unstable_by(compare);
txs
}
/// Return the balance, separated into available, trusted-pending, untrusted-pending, and
/// immature values.
pub fn balance(&self) -> Balance {
self.tx_graph.graph().balance(
&self.chain,
self.chain.tip().block_id(),
CanonicalizationParams::default(),
self.tx_graph.index.outpoints().iter().cloned(),
|&(k, _), _| k == KeychainKind::Internal,
)
}
/// Add an external signer
///
/// See [the `signer` module](signer) for an example.
pub fn add_signer(
&mut self,
keychain: KeychainKind,
ordering: SignerOrdering,
signer: Arc<dyn TransactionSigner>,
) {
let signers = match keychain {
KeychainKind::External => Arc::make_mut(&mut self.signers),
KeychainKind::Internal => Arc::make_mut(&mut self.change_signers),
};
signers.add_external(signer.id(&self.secp), ordering, signer);
}
/// Set the keymap for a given keychain.
///
/// Note this does nothing if the given keychain has no descriptor because we won't
/// know the context (segwit, taproot, etc) in which to create signatures.
pub fn set_keymap(&mut self, keychain: KeychainKind, keymap: KeyMap) {
let wallet_signers = match keychain {
KeychainKind::External => Arc::make_mut(&mut self.signers),
KeychainKind::Internal => Arc::make_mut(&mut self.change_signers),
};
if let Some(descriptor) = self.tx_graph.index.get_descriptor(keychain) {
*wallet_signers = SignersContainer::build(keymap, descriptor, &self.secp)
}
}
/// Set the keymap for each keychain.
pub fn set_keymaps(&mut self, keymaps: impl IntoIterator<Item = (KeychainKind, KeyMap)>) {
for (keychain, keymap) in keymaps {
self.set_keymap(keychain, keymap);
}
}
/// Get the signers
///
/// ## Example
///
/// ```
/// # use bdk_wallet::{Wallet, KeychainKind};
/// # use bdk_wallet::bitcoin::Network;
/// let descriptor = "wpkh(tprv8ZgxMBicQKsPe73PBRSmNbTfbcsZnwWhz5eVmhHpi31HW29Z7mc9B4cWGRQzopNUzZUT391DeDJxL2PefNunWyLgqCKRMDkU1s2s8bAfoSk/84'/1'/0'/0/*)";
/// let change_descriptor = "wpkh(tprv8ZgxMBicQKsPe73PBRSmNbTfbcsZnwWhz5eVmhHpi31HW29Z7mc9B4cWGRQzopNUzZUT391DeDJxL2PefNunWyLgqCKRMDkU1s2s8bAfoSk/84'/1'/0'/1/*)";
/// let wallet = Wallet::create(descriptor, change_descriptor)
/// .network(Network::Testnet)
/// .create_wallet_no_persist()?;
/// for secret_key in wallet.get_signers(KeychainKind::External).signers().iter().filter_map(|s| s.descriptor_secret_key()) {
/// // secret_key: tprv8ZgxMBicQKsPe73PBRSmNbTfbcsZnwWhz5eVmhHpi31HW29Z7mc9B4cWGRQzopNUzZUT391DeDJxL2PefNunWyLgqCKRMDkU1s2s8bAfoSk/84'/0'/0'/0/*
/// println!("secret_key: {}", secret_key);
/// }
///
/// Ok::<(), Box<dyn core::error::Error>>(())
/// ```
pub fn get_signers(&self, keychain: KeychainKind) -> Arc<SignersContainer> {
match keychain {
KeychainKind::External => Arc::clone(&self.signers),
KeychainKind::Internal => Arc::clone(&self.change_signers),
}
}
/// Start building a transaction.
///
/// This returns a blank [`TxBuilder`] from which you can specify the parameters for the
/// transaction.
///
/// ## Example
///
/// ```
/// # use std::str::FromStr;
/// # use bitcoin::*;
/// # use bdk_wallet::*;
/// # use bdk_wallet::ChangeSet;
/// # use bdk_wallet::error::CreateTxError;
/// # use anyhow::Error;
/// # let descriptor = "wpkh(tpubD6NzVbkrYhZ4Xferm7Pz4VnjdcDPFyjVu5K4iZXQ4pVN8Cks4pHVowTBXBKRhX64pkRyJZJN5xAKj4UDNnLPb5p2sSKXhewoYx5GbTdUFWq/*)";
/// # let mut wallet = doctest_wallet!();
/// # let to_address = Address::from_str("2N4eQYCbKUHCCTUjBJeHcJp9ok6J2GZsTDt").unwrap().assume_checked();
/// let psbt = {
/// let mut builder = wallet.build_tx();
/// builder
/// .add_recipient(to_address.script_pubkey(), Amount::from_sat(50_000));
/// builder.finish()?
/// };
///
/// // sign and broadcast ...
/// # Ok::<(), anyhow::Error>(())
/// ```
///
/// [`TxBuilder`]: crate::TxBuilder
pub fn build_tx(&mut self) -> TxBuilder<'_, DefaultCoinSelectionAlgorithm> {
TxBuilder {
wallet: self,
params: TxParams::default(),
coin_selection: DefaultCoinSelectionAlgorithm::default(),
}
}
pub(crate) fn create_tx<Cs: coin_selection::CoinSelectionAlgorithm>(
&mut self,
coin_selection: Cs,
params: TxParams,
rng: &mut impl RngCore,
) -> Result<Psbt, CreateTxError> {
let keychains: BTreeMap<_, _> = self.tx_graph.index.keychains().collect();
let external_descriptor = keychains.get(&KeychainKind::External).expect("must exist");
let internal_descriptor = keychains.get(&KeychainKind::Internal);
let external_policy = external_descriptor
.extract_policy(&self.signers, BuildSatisfaction::None, &self.secp)?
.unwrap();
let internal_policy = internal_descriptor
.map(|desc| {
Ok::<_, CreateTxError>(
desc.extract_policy(&self.change_signers, BuildSatisfaction::None, &self.secp)?
.unwrap(),
)
})
.transpose()?;
// The policy allows spending external outputs, but it requires a policy path that hasn't
// been provided
if params.change_policy != tx_builder::ChangeSpendPolicy::OnlyChange
&& external_policy.requires_path()
&& params.external_policy_path.is_none()
{
return Err(CreateTxError::SpendingPolicyRequired(
KeychainKind::External,
));
};
// Same for the internal_policy path
if let Some(internal_policy) = &internal_policy {
if params.change_policy != tx_builder::ChangeSpendPolicy::ChangeForbidden
&& internal_policy.requires_path()
&& params.internal_policy_path.is_none()
{
return Err(CreateTxError::SpendingPolicyRequired(
KeychainKind::Internal,
));
};
}
let external_requirements = external_policy.get_condition(
params
.external_policy_path
.as_ref()
.unwrap_or(&BTreeMap::new()),
)?;
let internal_requirements = internal_policy
.map(|policy| {
Ok::<_, CreateTxError>(
policy.get_condition(
params
.internal_policy_path
.as_ref()
.unwrap_or(&BTreeMap::new()),
)?,
)
})
.transpose()?;
let requirements =
external_requirements.merge(&internal_requirements.unwrap_or_default())?;
let version = match params.version {
Some(transaction::Version(0)) => return Err(CreateTxError::Version0),
Some(transaction::Version::ONE) if requirements.csv.is_some() => {
return Err(CreateTxError::Version1Csv)
}
Some(v) => v,
None => transaction::Version::TWO,
};
// We use a match here instead of a unwrap_or_else as it's way more readable :)
let current_height = match params.current_height {
// If they didn't tell us the current height, we assume it's the latest sync height.
None => {
let tip_height = self.chain.tip().height();
absolute::LockTime::from_height(tip_height).expect("invalid height")
}
Some(h) => h,
};
let lock_time = match params.locktime {
// When no `nLockTime` is specified, we try to prevent fee sniping, if possible.
None => {
// Fee sniping can be partially prevented by setting the timelock
// to current_height. If we don't know the current_height,
// we default to 0.
let fee_sniping_height = current_height;
// We choose the biggest between the required nlocktime and the fee sniping
// height.
match requirements.timelock {
// No requirement, just use the fee_sniping_height.
None => fee_sniping_height,
// There's a block-based requirement, but the value is lower than the
// fee_sniping_height.
Some(value @ absolute::LockTime::Blocks(_)) if value < fee_sniping_height => {
fee_sniping_height
}
// There's a time-based requirement or a block-based requirement greater
// than the fee_sniping_height use that value.
Some(value) => value,
}
}
// Specific nLockTime required and we have no constraints, so just set to that value.
Some(x) if requirements.timelock.is_none() => x,
// Specific nLockTime required and it's compatible with the constraints.
Some(x)
if requirements.timelock.unwrap().is_same_unit(x)
&& x >= requirements.timelock.unwrap() =>
{
x
}
// Invalid nLockTime required.
Some(x) => {
return Err(CreateTxError::LockTime {
requested: x,
required: requirements.timelock.unwrap(),
})
}
};
// nSequence value for inputs.
// When not explicitly specified, it defaults to 0xFFFFFFFD, meaning RBF signaling is
// enabled.
let n_sequence = match (params.sequence, requirements.csv) {
// Enable RBF by default.
(None, None) => Sequence::ENABLE_RBF_NO_LOCKTIME,
// None requested, use required.
(None, Some(csv)) => csv,
// Requested sequence is incompatible with requirements.
(Some(sequence), Some(csv)) if !check_nsequence_rbf(sequence, csv) => {
return Err(CreateTxError::RbfSequenceCsv { sequence, csv })
}
// Use requested nSequence value.
(Some(sequence), _) => sequence,
};
let (fee_rate, mut fee_amount) = match params.fee_policy.unwrap_or_default() {
//FIXME: see https://github.com/bitcoindevkit/bdk/issues/256
FeePolicy::FeeAmount(fee) => {
if let Some(previous_fee) = params.bumping_fee {
if fee < previous_fee.absolute {
return Err(CreateTxError::FeeTooLow {
required: previous_fee.absolute,
});
}
}
(FeeRate::ZERO, fee)
}
FeePolicy::FeeRate(rate) => {
if let Some(previous_fee) = params.bumping_fee {
let required_feerate = FeeRate::from_sat_per_kwu(
previous_fee.rate.to_sat_per_kwu()
+ FeeRate::BROADCAST_MIN.to_sat_per_kwu(), // +1 sat/vb
);
if rate < required_feerate {
return Err(CreateTxError::FeeRateTooLow {
required: required_feerate,
});
}
}
(rate, Amount::ZERO)
}
};
let mut tx = Transaction {
version,
lock_time,
input: vec![],
output: vec![],
};
if params.manually_selected_only && params.utxos.is_empty() {
return Err(CreateTxError::NoUtxosSelected);
}
let mut outgoing = Amount::ZERO;
let recipients = params.recipients.iter().map(|(r, v)| (r, *v));
for (index, (script_pubkey, value)) in recipients.enumerate() {
if !params.allow_dust && value.is_dust(script_pubkey) && !script_pubkey.is_op_return() {
return Err(CreateTxError::OutputBelowDustLimit(index));
}
let new_out = TxOut {
script_pubkey: script_pubkey.clone(),
value,
};
tx.output.push(new_out);
outgoing += value;
}
fee_amount += fee_rate * tx.weight();
let (required_utxos, optional_utxos) = {
// NOTE: manual selection overrides unspendable
let mut required: Vec<WeightedUtxo> = params.utxos.clone();
let optional = self.filter_utxos(¶ms, current_height.to_consensus_u32());
// If `drain_wallet` is true, all UTxOs are required.
if params.drain_wallet {
required.extend(optional);
(required, vec![])
} else {
(required, optional)
}
};
// Get drain script.
let mut drain_index = Option::<(KeychainKind, u32)>::None;
let drain_script = match params.drain_to {
Some(ref drain_recipient) => drain_recipient.clone(),
None => {
let change_keychain = self.map_keychain(KeychainKind::Internal);
let (index, spk) = self
.tx_graph
.index
.unused_keychain_spks(change_keychain)
.next()
.unwrap_or_else(|| {
let (next_index, _) = self
.tx_graph
.index
.next_index(change_keychain)
.expect("keychain must exist");
let spk = self
.peek_address(change_keychain, next_index)
.script_pubkey();
(next_index, spk)
});
drain_index = Some((change_keychain, index));
spk
}
};
let coin_selection = coin_selection
.coin_select(
required_utxos,
optional_utxos,
fee_rate,
outgoing + fee_amount,
&drain_script,
rng,
)
.map_err(CreateTxError::CoinSelection)?;
let excess = &coin_selection.excess;
tx.input = coin_selection
.selected
.iter()
.map(|u| bitcoin::TxIn {
previous_output: u.outpoint(),
script_sig: ScriptBuf::default(),
sequence: u.sequence().unwrap_or(n_sequence),
witness: Witness::new(),
})
.collect();
if tx.output.is_empty() {
// Uh oh, our transaction has no outputs.
// We allow this when:
// - We have a drain_to address and the utxos we must spend (this happens,
// for example, when we RBF).
// - We have a drain_to address and drain_wallet set.
// Otherwise, we don't know who we should send the funds to, and how much
// we should send!
if params.drain_to.is_some() && (params.drain_wallet || !params.utxos.is_empty()) {
if let Excess::NoChange {
dust_threshold,
remaining_amount,
change_fee,
} = excess
{
return Err(CreateTxError::CoinSelection(InsufficientFunds {
needed: *dust_threshold,
available: remaining_amount
.checked_sub(*change_fee)
.unwrap_or_default(),
}));
}
} else {
return Err(CreateTxError::NoRecipients);
}
}
// If there's change, create and add a change output.
if let Excess::Change { amount, .. } = excess {
// Create drain output.
let drain_output = TxOut {
value: *amount,
script_pubkey: drain_script,
};
// TODO: We should pay attention when adding a new output: this might increase
// the length of the "number of vouts" parameter by 2 bytes, potentially making
// our feerate too low.
tx.output.push(drain_output);
}
// Sort inputs/outputs according to the chosen algorithm.
params.ordering.sort_tx_with_aux_rand(&mut tx, rng);
let psbt = self.complete_transaction(tx, coin_selection.selected, params)?;
// Recording changes to the change keychain.
if let (Excess::Change { .. }, Some((keychain, index))) = (excess, drain_index) {
if let Some((_, index_changeset)) =
self.tx_graph.index.reveal_to_target(keychain, index)
{
self.stage.merge(index_changeset.into());
self.mark_used(keychain, index);
}
}
Ok(psbt)
}
/// Bump the fee of a transaction previously created with this wallet.
///
/// Returns an error if the transaction is already confirmed or doesn't explicitly signal
/// *replace by fee* (RBF). If the transaction can be fee bumped then it returns a [`TxBuilder`]
/// pre-populated with the inputs and outputs of the original transaction.
///
/// ## Example
///
/// ```no_run
/// # // TODO: remove norun -- bumping fee seems to need the tx in the wallet database first.
/// # use std::str::FromStr;
/// # use bitcoin::*;
/// # use bdk_wallet::*;
/// # use bdk_wallet::ChangeSet;
/// # use bdk_wallet::error::CreateTxError;
/// # use anyhow::Error;
/// # let descriptor = "wpkh(tpubD6NzVbkrYhZ4Xferm7Pz4VnjdcDPFyjVu5K4iZXQ4pVN8Cks4pHVowTBXBKRhX64pkRyJZJN5xAKj4UDNnLPb5p2sSKXhewoYx5GbTdUFWq/*)";
/// # let mut wallet = doctest_wallet!();
/// # let to_address = Address::from_str("2N4eQYCbKUHCCTUjBJeHcJp9ok6J2GZsTDt").unwrap().assume_checked();
/// let mut psbt = {
/// let mut builder = wallet.build_tx();
/// builder
/// .add_recipient(to_address.script_pubkey(), Amount::from_sat(50_000));
/// builder.finish()?
/// };
/// let _ = wallet.sign(&mut psbt, SignOptions::default())?;
/// let tx = psbt.clone().extract_tx().expect("tx");
/// // broadcast tx but it's taking too long to confirm so we want to bump the fee
/// let mut psbt = {
/// let mut builder = wallet.build_fee_bump(tx.compute_txid())?;
/// builder
/// .fee_rate(FeeRate::from_sat_per_vb(5).expect("valid feerate"));
/// builder.finish()?
/// };
///
/// let _ = wallet.sign(&mut psbt, SignOptions::default())?;
/// let fee_bumped_tx = psbt.extract_tx();
/// // broadcast fee_bumped_tx to replace original
/// # Ok::<(), anyhow::Error>(())
/// ```
// TODO: support for merging multiple transactions while bumping the fees
pub fn build_fee_bump(
&mut self,
txid: Txid,
) -> Result<TxBuilder<'_, DefaultCoinSelectionAlgorithm>, BuildFeeBumpError> {
let tx_graph = self.tx_graph.graph();
let txout_index = &self.tx_graph.index;
let chain_tip = self.chain.tip().block_id();
let chain_positions: HashMap<Txid, ChainPosition<_>> = tx_graph
.list_canonical_txs(&self.chain, chain_tip, CanonicalizationParams::default())
.map(|canon_tx| (canon_tx.tx_node.txid, canon_tx.chain_position))
.collect();
let mut tx = tx_graph
.get_tx(txid)
.ok_or(BuildFeeBumpError::TransactionNotFound(txid))?
.as_ref()
.clone();
if chain_positions
.get(&txid)
.ok_or(BuildFeeBumpError::TransactionNotFound(txid))?
.is_confirmed()
{
return Err(BuildFeeBumpError::TransactionConfirmed(txid));
}
if !tx
.input
.iter()
.any(|txin| txin.sequence.to_consensus_u32() <= 0xFFFFFFFD)
{
return Err(BuildFeeBumpError::IrreplaceableTransaction(
tx.compute_txid(),
));
}
let fee = self
.calculate_fee(&tx)
.map_err(|_| BuildFeeBumpError::FeeRateUnavailable)?;
let fee_rate = fee / tx.weight();
// Remove the inputs from the tx and process them.
let utxos: Vec<WeightedUtxo> = tx
.input
.drain(..)
.map(|txin| -> Result<_, BuildFeeBumpError> {
let outpoint = txin.previous_output;
let prev_txout = tx_graph
.get_txout(outpoint)
.cloned()
.ok_or(BuildFeeBumpError::UnknownUtxo(outpoint))?;
match txout_index.index_of_spk(prev_txout.script_pubkey.clone()) {
Some(&(keychain, derivation_index)) => {
let txout = prev_txout;
let chain_position = chain_positions
.get(&outpoint.txid)
.cloned()
.ok_or(BuildFeeBumpError::TransactionNotFound(outpoint.txid))?;
Ok(WeightedUtxo {
satisfaction_weight: self
.public_descriptor(keychain)
.max_weight_to_satisfy()
.expect("descriptor should be satisfiable"),
utxo: Utxo::Local(LocalOutput {
outpoint,
txout,
keychain,
is_spent: true,
derivation_index,
chain_position,
}),
})
}
None => Ok(WeightedUtxo {
satisfaction_weight: Weight::from_wu_usize(
serialize(&txin.script_sig).len() * 4 + serialize(&txin.witness).len(),
),
utxo: Utxo::Foreign {
outpoint,
sequence: txin.sequence,
psbt_input: Box::new(psbt::Input {
witness_utxo: prev_txout
.script_pubkey
.witness_version()
.map(|_| prev_txout),
non_witness_utxo: tx_graph
.get_tx(outpoint.txid)
.map(|tx| tx.as_ref().clone()),
..Default::default()
}),
},
}),
}
})
.collect::<Result<_, _>>()?;
if tx.output.len() > 1 {
let mut change_index = None;
for (index, txout) in tx.output.iter().enumerate() {
let change_keychain = self.map_keychain(KeychainKind::Internal);
match txout_index.index_of_spk(txout.script_pubkey.clone()) {
Some((keychain, _)) if *keychain == change_keychain => {
change_index = Some(index)
}
_ => {}
}
}
if let Some(change_index) = change_index {
tx.output.remove(change_index);
}
}
let params = TxParams {
version: Some(tx.version),
recipients: tx
.output
.into_iter()
.map(|txout| (txout.script_pubkey, txout.value))
.collect(),
utxos,
bumping_fee: Some(tx_builder::PreviousFee {
absolute: fee,
rate: fee_rate,
}),
..Default::default()
};
Ok(TxBuilder {
wallet: self,
params,
coin_selection: DefaultCoinSelectionAlgorithm::default(),
})
}
/// Sign a transaction with all the wallet's signers, in the order specified by every signer's
/// [`SignerOrdering`]. This function returns the `Result` type with an encapsulated `bool` that
/// has the value true if the PSBT was finalized, or false otherwise.
///
/// The [`SignOptions`] can be used to tweak the behavior of the software signers, and the way
/// the transaction is finalized at the end. Note that it can't be guaranteed that *every*
/// signers will follow the options, but the "software signers" (WIF keys and `xprv`) defined
/// in this library will.
///
/// ## Example
///
/// ```
/// # use std::str::FromStr;
/// # use bitcoin::*;
/// # use bdk_wallet::*;
/// # use bdk_wallet::ChangeSet;
/// # use bdk_wallet::error::CreateTxError;
/// # let descriptor = "wpkh(tpubD6NzVbkrYhZ4Xferm7Pz4VnjdcDPFyjVu5K4iZXQ4pVN8Cks4pHVowTBXBKRhX64pkRyJZJN5xAKj4UDNnLPb5p2sSKXhewoYx5GbTdUFWq/*)";
/// # let mut wallet = doctest_wallet!();
/// # let to_address = Address::from_str("2N4eQYCbKUHCCTUjBJeHcJp9ok6J2GZsTDt").unwrap().assume_checked();
/// let mut psbt = {
/// let mut builder = wallet.build_tx();
/// builder.add_recipient(to_address.script_pubkey(), Amount::from_sat(50_000));
/// builder.finish()?
/// };
/// let finalized = wallet.sign(&mut psbt, SignOptions::default())?;
/// assert!(finalized, "we should have signed all the inputs");
/// # Ok::<(),anyhow::Error>(())
pub fn sign(&self, psbt: &mut Psbt, sign_options: SignOptions) -> Result<bool, SignerError> {
// This adds all the PSBT metadata for the inputs, which will help us later figure out how
// to derive our keys.
self.update_psbt_with_descriptor(psbt)
.map_err(SignerError::MiniscriptPsbt)?;
// If we aren't allowed to use `witness_utxo`, ensure that every input (except p2tr and
// finalized ones) has the `non_witness_utxo`.
if !sign_options.trust_witness_utxo
&& psbt
.inputs
.iter()
.filter(|i| i.final_script_witness.is_none() && i.final_script_sig.is_none())
.filter(|i| i.tap_internal_key.is_none() && i.tap_merkle_root.is_none())
.any(|i| i.non_witness_utxo.is_none())
{
return Err(SignerError::MissingNonWitnessUtxo);
}
// If the user hasn't explicitly opted-in, refuse to sign the transaction unless every input
// is using `SIGHASH_ALL` or `SIGHASH_DEFAULT` for Taproot.
if !sign_options.allow_all_sighashes
&& !psbt.inputs.iter().all(|i| {
i.sighash_type.is_none()
|| i.sighash_type == Some(EcdsaSighashType::All.into())
|| i.sighash_type == Some(TapSighashType::All.into())
|| i.sighash_type == Some(TapSighashType::Default.into())
})
{
return Err(SignerError::NonStandardSighash);
}
for signer in self
.signers
.signers()
.iter()
.chain(self.change_signers.signers().iter())
{
signer.sign_transaction(psbt, &sign_options, &self.secp)?;
}
// Attempt to finalize.
if sign_options.try_finalize {
self.finalize_psbt(psbt, sign_options)
} else {
Ok(false)
}
}
/// Return the spending policies for the wallet's descriptor.
pub fn policies(&self, keychain: KeychainKind) -> Result<Option<Policy>, DescriptorError> {
let signers = match keychain {
KeychainKind::External => &self.signers,
KeychainKind::Internal => &self.change_signers,
};
self.public_descriptor(keychain).extract_policy(
signers,
BuildSatisfaction::None,
&self.secp,
)
}
/// Returns the descriptor used to create addresses for a particular `keychain`.
///
/// It's the "public" version of the wallet's descriptor, meaning a new descriptor that has
/// the same structure but with the all secret keys replaced by their corresponding public key.
/// This can be used to build a watch-only version of a wallet.
pub fn public_descriptor(&self, keychain: KeychainKind) -> &ExtendedDescriptor {
self.tx_graph
.index
.get_descriptor(self.map_keychain(keychain))
.expect("keychain must exist")
}
/// Finalize a PSBT, i.e., for each input determine if sufficient data is available to pass
/// validation and construct the respective `scriptSig` or `scriptWitness`. Please refer to
/// [BIP174](https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki#Input_Finalizer),
/// and [BIP371](https://github.com/bitcoin/bips/blob/master/bip-0371.mediawiki)
/// for further information.
///
/// Returns `true` if the PSBT could be finalized, and `false` otherwise.
///
/// The [`SignOptions`] can be used to tweak the behavior of the finalizer.
pub fn finalize_psbt(
&self,
psbt: &mut Psbt,
sign_options: SignOptions,
) -> Result<bool, SignerError> {
let tx = &psbt.unsigned_tx;
let chain_tip = self.chain.tip().block_id();
let prev_txids = tx
.input
.iter()
.map(|txin| txin.previous_output.txid)
.collect::<HashSet<Txid>>();
let confirmation_heights = self
.tx_graph
.graph()
.list_canonical_txs(&self.chain, chain_tip, CanonicalizationParams::default())
.filter(|canon_tx| prev_txids.contains(&canon_tx.tx_node.txid))
// This is for a small performance gain. Although `.filter` filters out excess txs, it
// will still consume the internal `CanonicalIter` entirely. Having a `.take` here
// allows us to stop further unnecessary canonicalization.
.take(prev_txids.len())
.map(|canon_tx| {
let txid = canon_tx.tx_node.txid;
match canon_tx.chain_position {
ChainPosition::Confirmed { anchor, .. } => (txid, anchor.block_id.height),
ChainPosition::Unconfirmed { .. } => (txid, u32::MAX),
}
})
.collect::<HashMap<Txid, u32>>();
let mut finished = true;
for (n, input) in tx.input.iter().enumerate() {
let psbt_input = &psbt
.inputs
.get(n)
.ok_or(IndexOutOfBoundsError::new(n, psbt.inputs.len()))?;
if psbt_input.final_script_sig.is_some() || psbt_input.final_script_witness.is_some() {
continue;
}
let confirmation_height = confirmation_heights
.get(&input.previous_output.txid)
.copied();
let current_height = sign_options
.assume_height
.unwrap_or_else(|| self.chain.tip().height());
// - Try to derive the descriptor by looking at the txout. If it's in our database, we
// know exactly which `keychain` to use, and which derivation index it is.
// - If that fails, try to derive it by looking at the psbt input: the complete logic is
// in `src/descriptor/mod.rs`, but it will basically look at `bip32_derivation`,
// `redeem_script` and `witness_script` to determine the right derivation.
// - If that also fails, it will try it on the internal descriptor, if present.
let desc = psbt
.get_utxo_for(n)
.and_then(|txout| self.get_descriptor_for_txout(&txout))
.or_else(|| {
self.tx_graph.index.keychains().find_map(|(_, desc)| {
desc.derive_from_psbt_input(psbt_input, psbt.get_utxo_for(n), &self.secp)
})
});
match desc {
Some(desc) => {
let mut tmp_input = bitcoin::TxIn::default();
match desc.satisfy(
&mut tmp_input,
(
PsbtInputSatisfier::new(psbt, n),
After::new(Some(current_height), false),
Older::new(Some(current_height), confirmation_height, false),
),
) {
Ok(_) => {
let length = psbt.inputs.len();
// Set the UTXO fields, final script_sig and witness
// and clear everything else.
let psbt_input = psbt
.inputs
.get_mut(n)
.ok_or(IndexOutOfBoundsError::new(n, length))?;
let original = mem::take(psbt_input);
psbt_input.non_witness_utxo = original.non_witness_utxo;
psbt_input.witness_utxo = original.witness_utxo;
if !tmp_input.script_sig.is_empty() {
psbt_input.final_script_sig = Some(tmp_input.script_sig);
}
if !tmp_input.witness.is_empty() {
psbt_input.final_script_witness = Some(tmp_input.witness);
}
}
Err(_) => finished = false,
}
}
None => finished = false,
}
}
// Clear derivation paths from outputs.
if finished {
for output in &mut psbt.outputs {
output.bip32_derivation.clear();
output.tap_key_origins.clear();
}
}
Ok(finished)
}
/// Return the secp256k1 context used for all signing operations.
pub fn secp_ctx(&self) -> &SecpCtx {
&self.secp
}
/// The derivation index of this wallet. It will return `None` if it has not derived any
/// addresses. Otherwise, it will return the index of the highest address it has derived.
pub fn derivation_index(&self, keychain: KeychainKind) -> Option<u32> {
self.tx_graph.index.last_revealed_index(keychain)
}
/// The index of the next address that you would get if you were to ask the wallet for a new
/// address.
pub fn next_derivation_index(&self, keychain: KeychainKind) -> u32 {
self.tx_graph
.index
.next_index(self.map_keychain(keychain))
.expect("keychain must exist")
.0
}
fn get_descriptor_for_txout(&self, txout: &TxOut) -> Option<DerivedDescriptor> {
let &(keychain, child) = self
.tx_graph
.index
.index_of_spk(txout.script_pubkey.clone())?;
let descriptor = self.public_descriptor(keychain);
descriptor.at_derivation_index(child).ok()
}
/// Given the options returns the list of utxos that must be used to form the
/// transaction and any further that may be used if needed.
fn filter_utxos(&self, params: &TxParams, current_height: u32) -> Vec<WeightedUtxo> {
if params.manually_selected_only {
vec![]
// Only process optional UTxOs if manually_selected_only is false.
} else {
let manually_selected_outpoints = params
.utxos
.iter()
.map(|wutxo| wutxo.utxo.outpoint())
.collect::<HashSet<OutPoint>>();
self.tx_graph
.graph()
// Get all unspent UTxOs from wallet.
// NOTE: the UTxOs returned by the following method already belong to wallet as the
// call chain uses get_tx_node infallibly.
.filter_chain_unspents(
&self.chain,
self.chain.tip().block_id(),
CanonicalizationParams::default(),
self.tx_graph.index.outpoints().iter().cloned(),
)
// Filter out locked outpoints.
.filter(|(_, txo)| !self.is_outpoint_locked(txo.outpoint))
// Only create LocalOutput if UTxO is mature.
.filter_map(move |((k, i), full_txo)| {
full_txo
.is_mature(current_height)
.then(|| new_local_utxo(k, i, full_txo))
})
// only process UTXOs not selected manually, they will be considered later in the
// chain
// NOTE: this avoid UTXOs in both required and optional list
.filter(|may_spend| !manually_selected_outpoints.contains(&may_spend.outpoint))
// only add to optional UTxOs those which satisfy the change policy if we reuse
// change
.filter(|local_output| {
self.keychains().count() == 1
|| params.change_policy.is_satisfied_by(local_output)
})
// Only add to optional UTxOs those marked as spendable.
.filter(|local_output| !params.unspendable.contains(&local_output.outpoint))
// If bumping fees only add to optional UTxOs those confirmed.
.filter(|local_output| {
params.bumping_fee.is_none() || local_output.chain_position.is_confirmed()
})
.map(|utxo| WeightedUtxo {
satisfaction_weight: self
.public_descriptor(utxo.keychain)
.max_weight_to_satisfy()
.unwrap(),
utxo: Utxo::Local(utxo),
})
.collect()
}
}
fn complete_transaction(
&self,
tx: Transaction,
selected: Vec<Utxo>,
params: TxParams,
) -> Result<Psbt, CreateTxError> {
let mut psbt = Psbt::from_unsigned_tx(tx)?;
if params.add_global_xpubs {
let all_xpubs = self
.keychains()
.flat_map(|(_, desc)| desc.get_extended_keys())
.collect::<Vec<_>>();
for xpub in all_xpubs {
let origin = match xpub.origin {
Some(origin) => origin,
None if xpub.xkey.depth == 0 => {
(xpub.root_fingerprint(&self.secp), vec![].into())
}
_ => return Err(CreateTxError::MissingKeyOrigin(xpub.xkey.to_string())),
};
psbt.xpub.insert(xpub.xkey, origin);
}
}
let mut lookup_output = selected
.into_iter()
.map(|utxo| (utxo.outpoint(), utxo))
.collect::<HashMap<_, _>>();
// Add metadata for the inputs.
for (psbt_input, input) in psbt.inputs.iter_mut().zip(psbt.unsigned_tx.input.iter()) {
let utxo = match lookup_output.remove(&input.previous_output) {
Some(utxo) => utxo,
None => continue,
};
match utxo {
Utxo::Local(utxo) => {
*psbt_input =
match self.get_psbt_input(utxo, params.sighash, params.only_witness_utxo) {
Ok(psbt_input) => psbt_input,
Err(e) => match e {
CreateTxError::UnknownUtxo => psbt::Input {
sighash_type: params.sighash,
..psbt::Input::default()
},
_ => return Err(e),
},
}
}
Utxo::Foreign {
outpoint,
psbt_input: foreign_psbt_input,
..
} => {
let is_taproot = foreign_psbt_input
.witness_utxo
.as_ref()
.map(|txout| txout.script_pubkey.is_p2tr())
.unwrap_or(false);
if !is_taproot
&& !params.only_witness_utxo
&& foreign_psbt_input.non_witness_utxo.is_none()
{
return Err(CreateTxError::MissingNonWitnessUtxo(outpoint));
}
*psbt_input = *foreign_psbt_input;
}
}
}
self.update_psbt_with_descriptor(&mut psbt)?;
Ok(psbt)
}
/// Get the corresponding PSBT Input for a [`LocalOutput`].
pub fn get_psbt_input(
&self,
utxo: LocalOutput,
sighash_type: Option<psbt::PsbtSighashType>,
only_witness_utxo: bool,
) -> Result<psbt::Input, CreateTxError> {
// Try to find the prev_script in our db to figure out if this is internal or external,
// and the derivation index.
let &(keychain, child) = self
.tx_graph
.index
.index_of_spk(utxo.txout.script_pubkey)
.ok_or(CreateTxError::UnknownUtxo)?;
let mut psbt_input = psbt::Input {
sighash_type,
..psbt::Input::default()
};
let desc = self.public_descriptor(keychain);
let derived_descriptor = desc
.at_derivation_index(child)
.expect("child can't be hardened");
psbt_input
.update_with_descriptor_unchecked(&derived_descriptor)
.map_err(MiniscriptPsbtError::Conversion)?;
let prev_output = utxo.outpoint;
if let Some(prev_tx) = self.tx_graph.graph().get_tx(prev_output.txid) {
// We want to check that the prevout actually exists in the transaction before
// continuing.
let prevout = prev_tx.output.get(prev_output.vout as usize).ok_or(
MiniscriptPsbtError::UtxoUpdate(miniscript::psbt::UtxoUpdateError::UtxoCheck),
)?;
if desc.is_witness() || desc.is_taproot() {
psbt_input.witness_utxo = Some(prevout.clone());
}
if !desc.is_taproot() && (!desc.is_witness() || !only_witness_utxo) {
psbt_input.non_witness_utxo = Some(prev_tx.as_ref().clone());
}
}
Ok(psbt_input)
}
fn update_psbt_with_descriptor(&self, psbt: &mut Psbt) -> Result<(), MiniscriptPsbtError> {
// We need to borrow `psbt` mutably within the loops, so we have to allocate a vec for all
// the input utxos and outputs.
let utxos = (0..psbt.inputs.len())
.filter_map(|i| psbt.get_utxo_for(i).map(|utxo| (true, i, utxo)))
.chain(
psbt.unsigned_tx
.output
.iter()
.enumerate()
.map(|(i, out)| (false, i, out.clone())),
)
.collect::<Vec<_>>();
// Try to figure out the keychain and derivation for every input and output.
for (is_input, index, out) in utxos.into_iter() {
if let Some(&(keychain, child)) = self.tx_graph.index.index_of_spk(out.script_pubkey) {
let desc = self.public_descriptor(keychain);
let desc = desc
.at_derivation_index(child)
.expect("child can't be hardened");
if is_input {
psbt.update_input_with_descriptor(index, &desc)
.map_err(MiniscriptPsbtError::UtxoUpdate)?;
} else {
psbt.update_output_with_descriptor(index, &desc)
.map_err(MiniscriptPsbtError::OutputUpdate)?;
}
}
}
Ok(())
}
/// Return the checksum of the public descriptor associated to the `keychain`.
///
/// Internally calls [`Self::public_descriptor`] to fetch the right descriptor.
pub fn descriptor_checksum(&self, keychain: KeychainKind) -> String {
self.public_descriptor(keychain)
.to_string()
.split_once('#')
.unwrap()
.1
.to_string()
}
/// Applies an update to the wallet and stages the changes (but does not persist them).
///
/// Usually you create an `update` by interacting with some blockchain data source and inserting
/// transactions related to your wallet into it.
///
/// After applying updates you should persist the staged wallet changes. For an example of how
/// to persist staged wallet changes see [`Wallet::reveal_next_address`].
pub fn apply_update(&mut self, update: impl Into<Update>) -> Result<(), CannotConnectError> {
let update = update.into();
let mut changeset = match update.chain {
Some(chain_update) => ChangeSet::from(self.chain.apply_update(chain_update)?),
None => ChangeSet::default(),
};
let index_changeset = self
.tx_graph
.index
.reveal_to_target_multi(&update.last_active_indices);
changeset.merge(index_changeset.into());
changeset.merge(self.tx_graph.apply_update(update.tx_update).into());
self.stage.merge(changeset);
Ok(())
}
/// Applies an update to the wallet, stages the changes, and returns events.
///
/// Usually you create an `update` by interacting with some blockchain data source and inserting
/// transactions related to your wallet into it. Staged changes are NOT persisted.
///
/// After applying updates you should process the events in your app before persisting the
/// staged wallet changes. For an example of how to persist staged wallet changes see
/// [`Wallet::reveal_next_address`].
///
/// ```rust,no_run
/// # use bitcoin::*;
/// # use bdk_wallet::*;
/// use bdk_wallet::WalletEvent;
/// # let wallet_update = Update::default();
/// # let mut wallet = doctest_wallet!();
/// let events = wallet.apply_update_events(wallet_update)?;
/// // Handle wallet relevant events from this update.
/// events.iter().for_each(|event| {
/// match event {
/// // The chain tip changed.
/// WalletEvent::ChainTipChanged { old_tip, new_tip } => {
/// todo!() // handle event
/// }
/// // An unconfirmed tx is now confirmed in a block.
/// WalletEvent::TxConfirmed {
/// txid,
/// tx,
/// block_time,
/// old_block_time: None,
/// } => {
/// todo!() // handle event
/// }
/// // A confirmed tx is now confirmed in a new block (reorg).
/// WalletEvent::TxConfirmed {
/// txid,
/// tx,
/// block_time,
/// old_block_time: Some(old_block_time),
/// } => {
/// todo!() // handle event
/// }
/// // A new unconfirmed tx was seen in the mempool.
/// WalletEvent::TxUnconfirmed {
/// txid,
/// tx,
/// old_block_time: None,
/// } => {
/// todo!() // handle event
/// }
/// // A previously confirmed tx in now unconfirmed in the mempool (reorg).
/// WalletEvent::TxUnconfirmed {
/// txid,
/// tx,
/// old_block_time: Some(old_block_time),
/// } => {
/// todo!() // handle event
/// }
/// // An unconfirmed tx was replaced in the mempool (RBF or double spent input).
/// WalletEvent::TxReplaced {
/// txid,
/// tx,
/// conflicts,
/// } => {
/// todo!() // handle event
/// }
/// // An unconfirmed tx was dropped from the mempool (fee too low).
/// WalletEvent::TxDropped { txid, tx } => {
/// todo!() // handle event
/// }
/// _ => {
/// // unexpected event, do nothing
/// }
/// }
/// // take staged wallet changes
/// let staged = wallet.take_staged();
/// // persist staged changes
/// });
/// # Ok::<(), anyhow::Error>(())
/// ```
/// [`TxBuilder`]: crate::TxBuilder
pub fn apply_update_events(
&mut self,
update: impl Into<Update>,
) -> Result<Vec<WalletEvent>, CannotConnectError> {
self.events_helper(|wallet| wallet.apply_update(update))
}
/// Get a reference of the staged [`ChangeSet`] that is yet to be committed (if any).
pub fn staged(&self) -> Option<&ChangeSet> {
if self.stage.is_empty() {
None
} else {
Some(&self.stage)
}
}
/// Get a mutable reference of the staged [`ChangeSet`] that is yet to be committed (if any).
pub fn staged_mut(&mut self) -> Option<&mut ChangeSet> {
if self.stage.is_empty() {
None
} else {
Some(&mut self.stage)
}
}
/// Take the staged [`ChangeSet`] to be persisted now (if any).
pub fn take_staged(&mut self) -> Option<ChangeSet> {
self.stage.take()
}
/// Get a reference to the inner [`TxGraph`].
pub fn tx_graph(&self) -> &TxGraph<ConfirmationBlockTime> {
self.tx_graph.graph()
}
/// Get a reference to the inner [`KeychainTxOutIndex`].
pub fn spk_index(&self) -> &KeychainTxOutIndex<KeychainKind> {
&self.tx_graph.index
}
/// Get a reference to the inner [`LocalChain`].
pub fn local_chain(&self) -> &LocalChain {
&self.chain
}
/// List the locked outpoints.
pub fn list_locked_outpoints(&self) -> impl Iterator<Item = OutPoint> + '_ {
self.locked_outpoints.iter().copied()
}
/// List unspent outpoints that are currently locked.
pub fn list_locked_unspent(&self) -> impl Iterator<Item = OutPoint> + '_ {
self.list_unspent()
.filter(|output| self.is_outpoint_locked(output.outpoint))
.map(|output| output.outpoint)
}
/// Whether the `outpoint` is locked. See [`Wallet::lock_outpoint`] for more.
pub fn is_outpoint_locked(&self, outpoint: OutPoint) -> bool {
self.locked_outpoints.contains(&outpoint)
}
/// Lock a wallet output identified by the given `outpoint`.
///
/// A locked UTXO will not be selected as an input to fund a transaction. This is useful
/// for excluding or reserving candidate inputs during transaction creation.
///
/// **You must persist the staged change for the lock status to be persistent**. To unlock a
/// previously locked outpoint, see [`Wallet::unlock_outpoint`].
pub fn lock_outpoint(&mut self, outpoint: OutPoint) {
if self.locked_outpoints.insert(outpoint) {
let changeset = locked_outpoints::ChangeSet {
outpoints: [(outpoint, true)].into(),
};
self.stage.merge(changeset.into());
}
}
/// Unlock the wallet output of the specified `outpoint`.
///
/// **You must persist the staged change for the lock status to be persistent**.
pub fn unlock_outpoint(&mut self, outpoint: OutPoint) {
if self.locked_outpoints.remove(&outpoint) {
let changeset = locked_outpoints::ChangeSet {
outpoints: [(outpoint, false)].into(),
};
self.stage.merge(changeset.into());
}
}
/// Introduces a `block` of `height` to the wallet, and tries to connect it to the
/// `prev_blockhash` of the block's header.
///
/// This is a convenience method that is equivalent to calling [`apply_block_connected_to`]
/// with `prev_blockhash` and `height-1` as the `connected_to` parameter.
///
/// [`apply_block_connected_to`]: Self::apply_block_connected_to
pub fn apply_block(&mut self, block: &Block, height: u32) -> Result<(), CannotConnectError> {
let connected_to = match height.checked_sub(1) {
Some(prev_height) => BlockId {
height: prev_height,
hash: block.header.prev_blockhash,
},
None => BlockId {
height,
hash: block.block_hash(),
},
};
self.apply_block_connected_to(block, height, connected_to)
.map_err(|err| match err {
ApplyHeaderError::InconsistentBlocks => {
unreachable!("connected_to is derived from the block so must be consistent")
}
ApplyHeaderError::CannotConnect(err) => err,
})
}
/// Introduces a `block` of `height` to the wallet, and tries to connect it to the
/// `prev_blockhash` of the block's header and returns events.
///
/// This is a convenience method that is equivalent to calling
/// [`apply_block_connected_to_events`] with `prev_blockhash` and `height-1` as the
/// `connected_to` parameter.
///
/// See [`apply_update_events`] for more information on the returned [`WalletEvent`]s.
///
/// [`apply_block_connected_to_events`]: Self::apply_block_connected_to_events
/// [`apply_update_events`]: Self::apply_update_events
pub fn apply_block_events(
&mut self,
block: &Block,
height: u32,
) -> Result<Vec<WalletEvent>, CannotConnectError> {
self.events_helper(|wallet| wallet.apply_block(block, height))
}
/// Applies relevant transactions from `block` of `height` to the wallet, and connects the
/// block to the internal chain.
///
/// The `connected_to` parameter informs the wallet how this block connects to the internal
/// [`LocalChain`]. Relevant transactions are filtered from the `block` and inserted into the
/// internal [`TxGraph`].
///
/// **WARNING**: You must persist the changes resulting from one or more calls to this method
/// if you need the inserted block data to be reloaded after closing the wallet.
/// See [`Wallet::reveal_next_address`].
pub fn apply_block_connected_to(
&mut self,
block: &Block,
height: u32,
connected_to: BlockId,
) -> Result<(), ApplyHeaderError> {
let mut changeset = ChangeSet::default();
changeset.merge(
self.chain
.apply_header_connected_to(&block.header, height, connected_to)?
.into(),
);
changeset.merge(self.tx_graph.apply_block_relevant(block, height).into());
self.stage.merge(changeset);
Ok(())
}
/// Applies relevant transactions from `block` of `height` to the wallet, connects the
/// block to the internal chain and returns events.
///
/// See [`apply_block_connected_to`] for more information.
///
/// See [`apply_update_events`] for more information on the returned [`WalletEvent`]s.
///
/// [`apply_block_connected_to`]: Self::apply_block_connected_to
/// [`apply_update_events`]: Self::apply_update_events
pub fn apply_block_connected_to_events(
&mut self,
block: &Block,
height: u32,
connected_to: BlockId,
) -> Result<Vec<WalletEvent>, ApplyHeaderError> {
self.events_helper(|wallet| wallet.apply_block_connected_to(block, height, connected_to))
}
/// Apply relevant unconfirmed transactions to the wallet.
///
/// Transactions that are not relevant are filtered out.
///
/// This method takes in an iterator of `(tx, last_seen)` where `last_seen` is the timestamp of
/// when the transaction was last seen in the mempool. This is used for conflict resolution
/// when there are conflicting unconfirmed transactions in the mempool. The transaction with the
/// later `last_seen` is prioritized.
///
/// **WARNING**: You must persist the changes resulting from one or more calls to this method
/// if you need the applied unconfirmed transactions to be reloaded after closing the wallet.
/// See [`Wallet::reveal_next_address`].
pub fn apply_unconfirmed_txs<T: Into<Arc<Transaction>>>(
&mut self,
unconfirmed_txs: impl IntoIterator<Item = (T, u64)>,
) {
let indexed_graph_changeset = self
.tx_graph
.batch_insert_relevant_unconfirmed(unconfirmed_txs);
self.stage.merge(indexed_graph_changeset.into());
}
/// Apply relevant unconfirmed transactions to the wallet and returns events.
///
/// See [`apply_unconfirmed_txs`] for more information.
///
/// See [`apply_update_events`] for more information on the returned [`WalletEvent`]s.
///
/// [`apply_unconfirmed_txs`]: Self::apply_unconfirmed_txs
/// [`apply_update_events`]: Self::apply_update_events
pub fn apply_unconfirmed_txs_events<T: Into<Arc<Transaction>>>(
&mut self,
unconfirmed_txs: impl IntoIterator<Item = (T, u64)>,
) -> Vec<WalletEvent> {
self.events_helper::<_, _, core::convert::Infallible>(|wallet| {
wallet.apply_unconfirmed_txs(unconfirmed_txs);
Ok(())
})
.expect("`apply_unconfirmed_txs` should not fail")
}
/// Apply evictions of the given transaction IDs with their associated timestamps.
///
/// This function is used to mark specific unconfirmed transactions as evicted from the mempool.
/// Eviction means that these transactions are not considered canonical by default, and will
/// no longer be part of the wallet's [`transactions`] set. This can happen for example when
/// a transaction is dropped from the mempool due to low fees or conflicts with another
/// transaction.
///
/// Only transactions that are currently unconfirmed and canonical are considered for eviction.
/// Transactions that are not relevant to the wallet are ignored. Note that an evicted
/// transaction can become canonical again if it is later observed on-chain or seen in the
/// mempool with a higher priority (e.g., due to a fee bump).
///
/// ## Parameters
///
/// `evicted_txs`: An iterator of `(Txid, u64)` tuples, where:
/// - `Txid`: The transaction ID of the transaction to be evicted.
/// - `u64`: The timestamp indicating when the transaction was evicted from the mempool. This
/// will usually correspond to the time of the latest chain sync. See docs for
/// [`start_sync_with_revealed_spks`].
///
/// ## Notes
///
/// - Not all blockchain backends support automatic mempool eviction handling - this method may
/// be used in such cases. It can also be used to negate the effect of
/// [`apply_unconfirmed_txs`] for a particular transaction without the need for an additional
/// sync.
/// - The changes are staged in the wallet's internal state and must be persisted to ensure they
/// are retained across wallet restarts. Use [`Wallet::take_staged`] to retrieve the staged
/// changes and persist them to your database of choice.
/// - Evicted transactions are removed from the wallet's canonical transaction set, but the data
/// remains in the wallet's internal transaction graph for historical purposes.
/// - Ensure that the timestamps provided are accurate and monotonically increasing, as they
/// influence the wallet's canonicalization logic.
///
/// [`transactions`]: Wallet::transactions
/// [`apply_unconfirmed_txs`]: Wallet::apply_unconfirmed_txs
/// [`start_sync_with_revealed_spks`]: Wallet::start_sync_with_revealed_spks
pub fn apply_evicted_txs(&mut self, evicted_txs: impl IntoIterator<Item = (Txid, u64)>) {
let chain = &self.chain;
let canon_txids: Vec<Txid> = self
.tx_graph
.graph()
.list_canonical_txs(
chain,
chain.tip().block_id(),
CanonicalizationParams::default(),
)
.map(|c| c.tx_node.txid)
.collect();
let changeset = self.tx_graph.batch_insert_relevant_evicted_at(
evicted_txs
.into_iter()
.filter(|(txid, _)| canon_txids.contains(txid)),
);
self.stage.merge(changeset.into());
}
/// Apply evictions of the given transaction IDs with their associated timestamps and returns
/// events.
///
/// See [`apply_evicted_txs`] for more information.
///
/// See [`apply_update_events`] for more information on the returned [`WalletEvent`]s.
///
/// [`apply_evicted_txs`]: Self::apply_evicted_txs
/// [`apply_update_events`]: Self::apply_update_events
pub fn apply_evicted_txs_events(
&mut self,
evicted_txs: impl IntoIterator<Item = (Txid, u64)>,
) -> Vec<WalletEvent> {
self.events_helper::<_, _, core::convert::Infallible>(|wallet| {
wallet.apply_evicted_txs(evicted_txs);
Ok(())
})
.expect("`apply_evicted_txs` should not fail")
}
/// Generates wallet events by executing a wallet-mutating function and surfacing internal
/// state changes.
///
/// It works by taking some wallet operation that modifies state, capturing "before" and "after"
/// snapshots of the wallet's chain tip and transactions and comparing them in order to
/// generate a list of [`WalletEvent`]s representing what changed.
///
/// Common kinds of events include:
///
/// - [`WalletEvent::ChainTipChanged`]: The blockchain tip changed
/// - [`WalletEvent::TxConfirmed`]: A transaction was confirmed in a block
/// - [`WalletEvent::TxUnconfirmed`]: A transaction was newly unconfirmed
/// - [`WalletEvent::TxReplaced`]: An unconfirmed transaction was replaced (e.g., via RBF)
/// - [`WalletEvent::TxDropped`]: An unconfirmed transaction was dropped from the mempool
///
/// This is useful when you need to track specific changes to your wallet state, such
/// as updating a UI to reflect transaction status changes, triggering notifications when
/// transactions confirm, logging state changes for debugging or auditing, or responding to
/// chain reorganizations.
///
/// # Example
///
/// ```rust,no_run
/// # use bdk_chain::local_chain::CannotConnectError;
/// # use bdk_wallet::{Wallet, Update, WalletEvent};
/// # let mut wallet: Wallet = todo!();
/// // Apply an update and get events describing what changed
/// let update = Update::default();
/// let func = |wallet: &mut Wallet| wallet.apply_update(update);
/// let events = wallet.events_helper(func)?;
/// # Ok::<(), anyhow::Error>(())
/// ```
///
/// # Errors
///
/// If `f` returns an error, then returns `E` of a type defined by the function
/// passed in.
pub fn events_helper<F, T, E>(&mut self, f: F) -> Result<Vec<WalletEvent>, E>
where
F: FnOnce(&mut Self) -> Result<T, E>,
E: Debug + Display,
{
// Snapshot of chain tip and transactions before
let chain_tip1 = self.chain.tip().block_id();
let wallet_txs1 = self.map_transactions();
// Call `f` on self
f(self)?;
// Chain tip and transactions after
let chain_tip2 = self.chain.tip().block_id();
let wallet_txs2 = self.map_transactions();
Ok(wallet_events(
self,
chain_tip1,
chain_tip2,
wallet_txs1,
wallet_txs2,
))
}
/// Used internally to ensure that all methods requiring a [`KeychainKind`] will use a
/// keychain with an associated descriptor. For example in case the wallet was created
/// with only one keychain, passing [`KeychainKind::Internal`] here will instead return
/// [`KeychainKind::External`].
fn map_keychain(&self, keychain: KeychainKind) -> KeychainKind {
if self.keychains().count() == 1 {
KeychainKind::External
} else {
keychain
}
}
/// Returns a map of canonical transactions keyed by txid.
///
/// This is used internally to help generate [`WalletEvent`]s.
fn map_transactions(
&self,
) -> BTreeMap<Txid, (Arc<Transaction>, ChainPosition<ConfirmationBlockTime>)> {
self.transactions()
.map(|wtx| {
(
wtx.tx_node.txid,
(wtx.tx_node.tx.clone(), wtx.chain_position),
)
})
.collect()
}
}
/// Methods to construct sync/full-scan requests for spk-based chain sources.
impl Wallet {
/// Create a partial [`SyncRequest`] for all revealed spks at `start_time`.
///
/// The `start_time` is used to record the time that a mempool transaction was last seen
/// (or evicted). See [`Wallet::start_sync_with_revealed_spks`] for more.
pub fn start_sync_with_revealed_spks_at(
&self,
start_time: u64,
) -> SyncRequestBuilder<(KeychainKind, u32)> {
use bdk_chain::keychain_txout::SyncRequestBuilderExt;
SyncRequest::builder_at(start_time)
.chain_tip(self.chain.tip())
.revealed_spks_from_indexer(&self.tx_graph.index, ..)
.expected_spk_txids(self.tx_graph.list_expected_spk_txids(
&self.chain,
self.chain.tip().block_id(),
..,
))
}
/// Create a partial [`SyncRequest`] for this wallet for all revealed spks.
///
/// This is the first step when performing a spk-based wallet partial sync, the returned
/// [`SyncRequest`] collects all revealed script pubkeys from the wallet keychain needed to
/// start a blockchain sync with a spk based blockchain client.
///
/// The time of the sync is the current system time and is used to record the
/// tx last-seen for mempool transactions. Or if an expected transaction is missing
/// or evicted, it is the time of the eviction. Note that timestamps may only increase
/// to be counted by the tx graph. To supply your own start time see
/// [`Wallet::start_sync_with_revealed_spks_at`].
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
#[cfg(feature = "std")]
pub fn start_sync_with_revealed_spks(&self) -> SyncRequestBuilder<(KeychainKind, u32)> {
use bdk_chain::keychain_txout::SyncRequestBuilderExt;
SyncRequest::builder()
.chain_tip(self.chain.tip())
.revealed_spks_from_indexer(&self.tx_graph.index, ..)
.expected_spk_txids(self.tx_graph.list_expected_spk_txids(
&self.chain,
self.chain.tip().block_id(),
..,
))
}
/// Create a [`FullScanRequest] for this wallet.
///
/// This is the first step when performing a spk-based wallet full scan, the returned
/// [`FullScanRequest] collects iterators for the wallet's keychain script pub keys needed to
/// start a blockchain full scan with a spk based blockchain client.
///
/// This operation is generally only used when importing or restoring a previously used wallet
/// in which the list of used scripts is not known.
///
/// The time of the scan is the current system time and is used to record the tx last-seen for
/// mempool transactions. To supply your own start time see [`Wallet::start_full_scan_at`].
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
#[cfg(feature = "std")]
pub fn start_full_scan(&self) -> FullScanRequestBuilder<KeychainKind> {
use bdk_chain::keychain_txout::FullScanRequestBuilderExt;
FullScanRequest::builder()
.chain_tip(self.chain.tip())
.spks_from_indexer(&self.tx_graph.index)
}
/// Create a [`FullScanRequest`] builder at `start_time`.
pub fn start_full_scan_at(&self, start_time: u64) -> FullScanRequestBuilder<KeychainKind> {
use bdk_chain::keychain_txout::FullScanRequestBuilderExt;
FullScanRequest::builder_at(start_time)
.chain_tip(self.chain.tip())
.spks_from_indexer(&self.tx_graph.index)
}
}
impl AsRef<bdk_chain::tx_graph::TxGraph<ConfirmationBlockTime>> for Wallet {
fn as_ref(&self) -> &bdk_chain::tx_graph::TxGraph<ConfirmationBlockTime> {
self.tx_graph.graph()
}
}
/// Deterministically generate a unique name given the descriptors defining the [`Wallet`].
///
/// Compatible with [`wallet_name_from_descriptor`].
pub fn wallet_name_from_descriptor<T>(
descriptor: T,
change_descriptor: Option<T>,
network_kind: NetworkKind,
secp: &SecpCtx,
) -> Result<String, DescriptorError>
where
T: IntoWalletDescriptor,
{
// TODO: check descriptors contains only public keys
let descriptor = descriptor
.into_wallet_descriptor(secp, network_kind)?
.0
.to_string();
let mut wallet_name = descriptor.split_once('#').unwrap().1.to_string();
if let Some(change_descriptor) = change_descriptor {
let change_descriptor = change_descriptor
.into_wallet_descriptor(secp, network_kind)?
.0
.to_string();
wallet_name.push_str(change_descriptor.split_once('#').unwrap().1);
}
Ok(wallet_name)
}
fn new_local_utxo(
keychain: KeychainKind,
derivation_index: u32,
full_txo: FullTxOut<ConfirmationBlockTime>,
) -> LocalOutput {
LocalOutput {
outpoint: full_txo.outpoint,
txout: full_txo.txout,
is_spent: full_txo.spent_by.is_some(),
chain_position: full_txo.chain_position,
keychain,
derivation_index,
}
}
fn make_indexed_graph(
stage: &mut ChangeSet,
tx_graph_changeset: chain::tx_graph::ChangeSet<ConfirmationBlockTime>,
indexer_changeset: chain::keychain_txout::ChangeSet,
descriptor: ExtendedDescriptor,
change_descriptor: Option<ExtendedDescriptor>,
lookahead: u32,
use_spk_cache: bool,
) -> Result<IndexedTxGraph<ConfirmationBlockTime, KeychainTxOutIndex<KeychainKind>>, DescriptorError>
{
let (indexed_graph, changeset) = IndexedTxGraph::from_changeset(
chain::indexed_tx_graph::ChangeSet {
tx_graph: tx_graph_changeset,
indexer: indexer_changeset,
},
|idx_cs| -> Result<KeychainTxOutIndex<KeychainKind>, DescriptorError> {
let mut idx = KeychainTxOutIndex::from_changeset(lookahead, use_spk_cache, idx_cs);
let descriptor_inserted = idx
.insert_descriptor(KeychainKind::External, descriptor)
.expect("already checked to be a unique, wildcard, non-multipath descriptor");
assert!(
descriptor_inserted,
"this must be the first time we are seeing this descriptor"
);
let change_descriptor = match change_descriptor {
Some(change_descriptor) => change_descriptor,
None => return Ok(idx),
};
let change_descriptor_inserted = idx
.insert_descriptor(KeychainKind::Internal, change_descriptor)
.map_err(|e| {
use bdk_chain::indexer::keychain_txout::InsertDescriptorError;
match e {
InsertDescriptorError::DescriptorAlreadyAssigned { .. } => {
crate::descriptor::error::Error::ExternalAndInternalAreTheSame
}
InsertDescriptorError::KeychainAlreadyAssigned { .. } => {
unreachable!("this is the first time we're assigning internal")
}
}
})?;
assert!(
change_descriptor_inserted,
"this must be the first time we are seeing this descriptor"
);
Ok(idx)
},
)?;
stage.tx_graph.merge(changeset.tx_graph);
stage.indexer.merge(changeset.indexer);
Ok(indexed_graph)
}
/// Transforms a [`FeeRate`] to `f64` with unit as sat/vb.
#[macro_export]
#[doc(hidden)]
macro_rules! floating_rate {
($rate:expr) => {{
use $crate::bitcoin::constants::WITNESS_SCALE_FACTOR;
// sat_kwu / 250.0 -> sat_vb
$rate.to_sat_per_kwu() as f64 / ((1000 / WITNESS_SCALE_FACTOR) as f64)
}};
}
#[macro_export]
#[doc(hidden)]
/// Macro for getting a [`Wallet`] for use in a doctest.
macro_rules! doctest_wallet {
() => {{
use $crate::bitcoin::{BlockHash, Transaction, absolute, TxOut, Network, hashes::Hash};
use $crate::chain::{ConfirmationBlockTime, BlockId, TxGraph, tx_graph};
use $crate::{Update, KeychainKind, Wallet};
use $crate::test_utils::*;
let descriptor = "tr([73c5da0a/86'/0'/0']tprv8fMn4hSKPRC1oaCPqxDb1JWtgkpeiQvZhsr8W2xuy3GEMkzoArcAWTfJxYb6Wj8XNNDWEjfYKK4wGQXh3ZUXhDF2NcnsALpWTeSwarJt7Vc/0/*)";
let change_descriptor = "tr([73c5da0a/86'/0'/0']tprv8fMn4hSKPRC1oaCPqxDb1JWtgkpeiQvZhsr8W2xuy3GEMkzoArcAWTfJxYb6Wj8XNNDWEjfYKK4wGQXh3ZUXhDF2NcnsALpWTeSwarJt7Vc/1/*)";
let mut wallet = Wallet::create(descriptor, change_descriptor)
.network(Network::Regtest)
.create_wallet_no_persist()
.unwrap();
let address = wallet.peek_address(KeychainKind::External, 0).address;
let tx = Transaction {
version: transaction::Version::TWO,
lock_time: absolute::LockTime::ZERO,
input: vec![],
output: vec![TxOut {
value: Amount::from_sat(500_000),
script_pubkey: address.script_pubkey(),
}],
};
let txid = tx.compute_txid();
let block_id = BlockId { height: 500, hash: BlockHash::all_zeros() };
insert_checkpoint(&mut wallet, block_id);
insert_checkpoint(&mut wallet, BlockId { height: 1_000, hash: BlockHash::all_zeros() });
insert_tx(&mut wallet, tx);
let anchor = ConfirmationBlockTime {
confirmation_time: 50_000,
block_id,
};
insert_anchor(&mut wallet, txid, anchor);
wallet
}}
}
#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod test {
use super::*;
use crate::miniscript::Error::Unexpected;
use crate::test_utils::get_test_tr_single_sig_xprv_and_change_desc;
use crate::test_utils::insert_tx;
#[test]
fn not_duplicated_utxos_across_optional_and_required() {
let (external_desc, internal_desc) = get_test_tr_single_sig_xprv_and_change_desc();
// Create new wallet.
let mut wallet = Wallet::create(external_desc, internal_desc)
.network(Network::Testnet)
.create_wallet_no_persist()
.unwrap();
let two_output_tx = Transaction {
input: vec![],
output: vec![
TxOut {
script_pubkey: wallet
.next_unused_address(KeychainKind::External)
.script_pubkey(),
value: Amount::from_sat(25_000),
},
TxOut {
script_pubkey: wallet
.next_unused_address(KeychainKind::External)
.script_pubkey(),
value: Amount::from_sat(75_000),
},
],
version: transaction::Version::non_standard(0),
lock_time: absolute::LockTime::ZERO,
};
let txid = two_output_tx.compute_txid();
insert_tx(&mut wallet, two_output_tx);
let outpoint = OutPoint { txid, vout: 0 };
let mut builder = wallet.build_tx();
builder.add_utxo(outpoint).expect("should add local utxo");
let params = builder.params.clone();
// enforce selection of first output in transaction
let received = wallet.filter_utxos(¶ms, wallet.latest_checkpoint().block_id().height);
// Notice expected doesn't include the first output from two_output_tx as it should be
// filtered out.
let expected = vec![wallet
.get_utxo(OutPoint { txid, vout: 1 })
.map(|utxo| WeightedUtxo {
satisfaction_weight: wallet
.public_descriptor(utxo.keychain)
.max_weight_to_satisfy()
.unwrap(),
utxo: Utxo::Local(utxo),
})
.unwrap()];
assert_eq!(expected, received);
}
#[test]
fn test_create_two_path_wallet() {
let two_path_descriptor = "wpkh([9a6a2580/84'/1'/0']tpubDDnGNapGEY6AZAdQbfRJgMg9fvz8pUBrLwvyvUqEgcUfgzM6zc2eVK4vY9x9L5FJWdX8WumXuLEDV5zDZnTfbn87vLe9XceCFwTu9so9Kks/<0;1>/*)";
// Test successful creation of a two-path wallet
let params = Wallet::create_from_two_path_descriptor(two_path_descriptor);
let wallet = params.network(Network::Testnet).create_wallet_no_persist();
assert!(wallet.is_ok());
let wallet = wallet.unwrap();
// Verify that the wallet has both external and internal keychains
let keychains: Vec<_> = wallet.keychains().collect();
assert_eq!(keychains.len(), 2);
// Verify that the descriptors are different (receive vs change)
let external_desc = keychains
.iter()
.find(|(k, _)| *k == KeychainKind::External)
.unwrap()
.1;
let internal_desc = keychains
.iter()
.find(|(k, _)| *k == KeychainKind::Internal)
.unwrap()
.1;
assert_ne!(external_desc.to_string(), internal_desc.to_string());
// Verify that addresses can be generated
let external_addr = wallet.peek_address(KeychainKind::External, 0);
let internal_addr = wallet.peek_address(KeychainKind::Internal, 0);
assert_ne!(external_addr.address, internal_addr.address);
}
#[test]
fn test_create_two_path_wallet_invalid_descriptor() {
// Test with invalid single-path descriptor
let single_path_descriptor = "wpkh([9a6a2580/84'/1'/0']tpubDDnGNapGEY6AZAdQbfRJgMg9fvz8pUBrLwvyvUqEgcUfgzM6zc2eVK4vY9x9L5FJWdX8WumXuLEDV5zDZnTfbn87vLe9XceCFwTu9so9Kks/0/*)";
let params = Wallet::create_from_two_path_descriptor(single_path_descriptor);
let wallet = params.network(Network::Testnet).create_wallet_no_persist();
assert!(matches!(wallet, Err(DescriptorError::MultiPath)));
// Test with a private descriptor
// You get a Miniscript(Unexpected("Can't make an extended private key with multiple paths
// into a public key.")) error.
let private_multipath_descriptor = "wpkh(tprv8ZgxMBicQKsPdWAHbugK2tjtVtRjKGixYVZUdL7xLHMgXZS6BFbFi1UDb1CHT25Z5PU1F9j7wGxwUiRhqz9E3nZRztikGUV6HoRDYcqPhM4/84'/1'/0'/<0;1>/*)";
let params = Wallet::create_from_two_path_descriptor(private_multipath_descriptor);
let wallet = params.network(Network::Testnet).create_wallet_no_persist();
assert!(matches!(
wallet,
Err(DescriptorError::Miniscript(Unexpected(..)))
));
// Test with invalid 3-path multipath descriptor
let three_path_descriptor = "wpkh([9a6a2580/84'/1'/0']tpubDDnGNapGEY6AZAdQbfRJgMg9fvz8pUBrLwvyvUqEgcUfgzM6zc2eVK4vY9x9L5FJWdX8WumXuLEDV5zDZnTfbn87vLe9XceCFwTu9so9Kks/<0;1;2>/*)";
let params = Wallet::create_from_two_path_descriptor(three_path_descriptor);
let wallet = params.network(Network::Testnet).create_wallet_no_persist();
assert!(matches!(wallet, Err(DescriptorError::MultiPath)));
// Test with completely invalid descriptor
let invalid_descriptor = "invalid_descriptor";
let params = Wallet::create_from_two_path_descriptor(invalid_descriptor);
let wallet = params.network(Network::Testnet).create_wallet_no_persist();
assert!(wallet.is_err());
}
}