agent-first-pay 0.7.0

A payment tool for AI agents — send and receive across five networks through one interface, with spending limits you control.
Documentation
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
<!-- Generated. Do not edit by hand. -->

# afpay CLI Reference

> Regenerate with `afpay --help-markdown`.
> See [../README.md]../README.md for setup and examples, and [architecture.md]architecture.md for deployment details.

# Command-Line Help for `afpay`

This document contains the help content for the `afpay` command-line program.

**Command Overview:**

* [`afpay`]#afpay
* [`afpay global`]#afpay-global
* [`afpay global limit`]#afpay-global-limit
* [`afpay global limit add`]#afpay-global-limit-add
* [`afpay global config`]#afpay-global-config
* [`afpay global config show`]#afpay-global-config-show
* [`afpay global config set`]#afpay-global-config-set
* [`afpay global backup`]#afpay-global-backup
* [`afpay global restore`]#afpay-global-restore
* [`afpay cashu`]#afpay-cashu
* [`afpay cashu send`]#afpay-cashu-send
* [`afpay cashu receive`]#afpay-cashu-receive
* [`afpay cashu send-to-ln`]#afpay-cashu-send-to-ln
* [`afpay cashu receive-from-ln`]#afpay-cashu-receive-from-ln
* [`afpay cashu receive-from-ln-claim`]#afpay-cashu-receive-from-ln-claim
* [`afpay cashu balance`]#afpay-cashu-balance
* [`afpay cashu wallet`]#afpay-cashu-wallet
* [`afpay cashu wallet create`]#afpay-cashu-wallet-create
* [`afpay cashu wallet close`]#afpay-cashu-wallet-close
* [`afpay cashu wallet list`]#afpay-cashu-wallet-list
* [`afpay cashu wallet dangerously-show-seed`]#afpay-cashu-wallet-dangerously-show-seed
* [`afpay cashu wallet restore`]#afpay-cashu-wallet-restore
* [`afpay cashu limit`]#afpay-cashu-limit
* [`afpay cashu limit add`]#afpay-cashu-limit-add
* [`afpay cashu config`]#afpay-cashu-config
* [`afpay cashu config show`]#afpay-cashu-config-show
* [`afpay cashu config set`]#afpay-cashu-config-set
* [`afpay cashu backup`]#afpay-cashu-backup
* [`afpay cashu restore`]#afpay-cashu-restore
* [`afpay ln`]#afpay-ln
* [`afpay ln wallet`]#afpay-ln-wallet
* [`afpay ln wallet create`]#afpay-ln-wallet-create
* [`afpay ln wallet close`]#afpay-ln-wallet-close
* [`afpay ln wallet list`]#afpay-ln-wallet-list
* [`afpay ln wallet dangerously-show-seed`]#afpay-ln-wallet-dangerously-show-seed
* [`afpay ln send`]#afpay-ln-send
* [`afpay ln receive`]#afpay-ln-receive
* [`afpay ln balance`]#afpay-ln-balance
* [`afpay ln limit`]#afpay-ln-limit
* [`afpay ln limit add`]#afpay-ln-limit-add
* [`afpay ln config`]#afpay-ln-config
* [`afpay ln config show`]#afpay-ln-config-show
* [`afpay ln config set`]#afpay-ln-config-set
* [`afpay ln backup`]#afpay-ln-backup
* [`afpay ln restore`]#afpay-ln-restore
* [`afpay sol`]#afpay-sol
* [`afpay sol wallet`]#afpay-sol-wallet
* [`afpay sol wallet create`]#afpay-sol-wallet-create
* [`afpay sol wallet close`]#afpay-sol-wallet-close
* [`afpay sol wallet list`]#afpay-sol-wallet-list
* [`afpay sol wallet dangerously-show-seed`]#afpay-sol-wallet-dangerously-show-seed
* [`afpay sol send`]#afpay-sol-send
* [`afpay sol receive`]#afpay-sol-receive
* [`afpay sol balance`]#afpay-sol-balance
* [`afpay sol limit`]#afpay-sol-limit
* [`afpay sol limit add`]#afpay-sol-limit-add
* [`afpay sol config`]#afpay-sol-config
* [`afpay sol config show`]#afpay-sol-config-show
* [`afpay sol config set`]#afpay-sol-config-set
* [`afpay sol config token-add`]#afpay-sol-config-token-add
* [`afpay sol config token-remove`]#afpay-sol-config-token-remove
* [`afpay sol backup`]#afpay-sol-backup
* [`afpay sol restore`]#afpay-sol-restore
* [`afpay evm`]#afpay-evm
* [`afpay evm wallet`]#afpay-evm-wallet
* [`afpay evm wallet create`]#afpay-evm-wallet-create
* [`afpay evm wallet close`]#afpay-evm-wallet-close
* [`afpay evm wallet list`]#afpay-evm-wallet-list
* [`afpay evm wallet dangerously-show-seed`]#afpay-evm-wallet-dangerously-show-seed
* [`afpay evm send`]#afpay-evm-send
* [`afpay evm receive`]#afpay-evm-receive
* [`afpay evm balance`]#afpay-evm-balance
* [`afpay evm limit`]#afpay-evm-limit
* [`afpay evm limit add`]#afpay-evm-limit-add
* [`afpay evm config`]#afpay-evm-config
* [`afpay evm config show`]#afpay-evm-config-show
* [`afpay evm config set`]#afpay-evm-config-set
* [`afpay evm config token-add`]#afpay-evm-config-token-add
* [`afpay evm config token-remove`]#afpay-evm-config-token-remove
* [`afpay evm backup`]#afpay-evm-backup
* [`afpay evm restore`]#afpay-evm-restore
* [`afpay btc`]#afpay-btc
* [`afpay btc wallet`]#afpay-btc-wallet
* [`afpay btc wallet create`]#afpay-btc-wallet-create
* [`afpay btc wallet close`]#afpay-btc-wallet-close
* [`afpay btc wallet list`]#afpay-btc-wallet-list
* [`afpay btc wallet dangerously-show-seed`]#afpay-btc-wallet-dangerously-show-seed
* [`afpay btc send`]#afpay-btc-send
* [`afpay btc receive`]#afpay-btc-receive
* [`afpay btc balance`]#afpay-btc-balance
* [`afpay btc limit`]#afpay-btc-limit
* [`afpay btc limit add`]#afpay-btc-limit-add
* [`afpay btc config`]#afpay-btc-config
* [`afpay btc config show`]#afpay-btc-config-show
* [`afpay btc config set`]#afpay-btc-config-set
* [`afpay btc backup`]#afpay-btc-backup
* [`afpay btc restore`]#afpay-btc-restore
* [`afpay wallet`]#afpay-wallet
* [`afpay wallet list`]#afpay-wallet-list
* [`afpay balance`]#afpay-balance
* [`afpay history`]#afpay-history
* [`afpay history list`]#afpay-history-list
* [`afpay history status`]#afpay-history-status
* [`afpay history update`]#afpay-history-update
* [`afpay limit`]#afpay-limit
* [`afpay limit remove`]#afpay-limit-remove
* [`afpay limit list`]#afpay-limit-list

## `afpay`

Agent-first cryptocurrency micropayment tool

**Usage:** `afpay [OPTIONS] [COMMAND]`

###### **Subcommands:**

* `global` — Global (cross-network) operations
* `cashu` — Cashu operations
* `ln` — Lightning Network operations (NWC, phoenixd, LNbits)
* `sol` — Solana operations
* `evm` — EVM chain operations (Base, Arbitrum)
* `btc` — Bitcoin on-chain operations
* `wallet` — List all wallets (cross-network)
* `balance` — All wallets balance (cross-network)
* `history` — History queries
* `limit` — Spend limit list and remove (cross-network)

###### **Options:**

* `--mode <MODE>` — Run mode

  Default value: `cli`

  Possible values: `cli`, `pipe`, `interactive`, `tui`, `rpc`, `rest`

* `--rpc-endpoint <RPC_ENDPOINT>` — Connect to remote RPC daemon (cli mode)
* `--rpc-listen <RPC_LISTEN>` — Listen address for RPC daemon (rpc mode)

  Default value: `127.0.0.1:9400`
* `--rpc-secret <RPC_SECRET>` — RPC encryption secret
* `--rest-listen <REST_LISTEN>` — Listen address for REST HTTP server (rest mode)

  Default value: `127.0.0.1:9401`
* `--rest-api-key <REST_API_KEY>` — API key for REST bearer authentication (rest mode)
* `--public-listen` — Allow binding REST/RPC to non-loopback addresses; use only behind TLS/firewall
* `--data-dir <DATA_DIR>` — Wallet and data directory
* `--output <OUTPUT>` — Output format

  Default value: `json`
* `--log <LOG>` — Log filters (comma-separated)
* `--dry-run` — Preview the command without executing it



## `afpay global`

Global (cross-network) operations

**Usage:** `afpay global <COMMAND>`

###### **Subcommands:**

* `limit` — Global spend limit (USD cents)
* `config` — Global runtime configuration
* `backup` — Back up all data to a .tar.zst archive
* `restore` — Restore all data from a .tar.zst archive



## `afpay global limit`

Global spend limit (USD cents)

**Usage:** `afpay global limit <COMMAND>`

###### **Subcommands:**

* `add` — Add a global spend limit (USD cents)



## `afpay global limit add`

Add a global spend limit (USD cents)

**Usage:** `afpay global limit add --window <WINDOW> --max-spend <MAX_SPEND>`

###### **Options:**

* `--window <WINDOW>` — Time window: e.g. 30m, 1h, 24h, 7d
* `--max-spend <MAX_SPEND>` — Maximum spend in USD cents



## `afpay global config`

Global runtime configuration

**Usage:** `afpay global config <COMMAND>`

###### **Subcommands:**

* `show` — Show current runtime configuration
* `set` — Update runtime configuration



## `afpay global config show`

Show current runtime configuration

**Usage:** `afpay global config show`



## `afpay global config set`

Update runtime configuration

**Usage:** `afpay global config set [OPTIONS]`

###### **Options:**

* `--log <LOG>` — Log filters (comma-separated: startup,cashu,ln,sol,wallet,all,off)



## `afpay global backup`

Back up all data to a .tar.zst archive

**Usage:** `afpay global backup [OPTIONS]`

###### **Options:**

* `--output <OUTPUT>` — Output archive path (default: ./afpay-global-{timestamp}.tar.zst)
* `--extra-dir <EXTRA_DIR>` — Include an extra directory: --extra-dir label=/path (repeatable)



## `afpay global restore`

Restore all data from a .tar.zst archive

**Usage:** `afpay global restore [OPTIONS] <ARCHIVE>`

###### **Arguments:**

* `<ARCHIVE>` — Path to the backup archive

###### **Options:**

* `--dangerously-overwrite` — Clear all existing data before restoring (default: merge)
* `--pg-url-secret <PG_URL_SECRET>` — Override PostgreSQL connection URL for the pg restore step
* `--extra-dir <EXTRA_DIR>` — Restore an extra directory: --extra-dir label=/path (repeatable)



## `afpay cashu`

Cashu operations

**Usage:** `afpay cashu <COMMAND>`

###### **Subcommands:**

* `send` — Send P2P cashu token (outputs token string; for Lightning, use send-to-ln)
* `receive` — Receive cashu token
* `send-to-ln` — Send cashu to a Lightning invoice
* `receive-from-ln` — Create Lightning invoice to receive cashu from LN
* `receive-from-ln-claim` — Claim minted tokens from a receive-from-ln quote
* `balance` — Check cashu balance
* `wallet` — Wallet management
* `limit` — Spend limit for cashu network or a specific cashu wallet
* `config` — Per-wallet configuration
* `backup` — Back up cashu wallet data to a .tar.zst archive
* `restore` — Restore cashu wallet data from a .tar.zst archive



## `afpay cashu send`

Send P2P cashu token (outputs token string; for Lightning, use send-to-ln)

**Usage:** `afpay cashu send [OPTIONS] --amount-sats <AMOUNT_SATS>`

###### **Options:**

* `--amount-sats <AMOUNT_SATS>` — Amount in sats (base units)
* `--cashu-mint <MINT_URL>` — Restrict to wallets on these mint URLs (tried in order)
* `--wallet <WALLET>` — Source wallet ID (auto-selected if omitted)
* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo (sent with the transaction)
* `--local-memo <LOCAL_MEMO>` — Local bookkeeping annotation (repeatable: --local-memo purpose=donation --local-memo note=coffee)



## `afpay cashu receive`

Receive cashu token

**Usage:** `afpay cashu receive [OPTIONS] <TOKEN>`

###### **Arguments:**

* `<TOKEN>` — Cashu token string

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (auto-matched from token if omitted)



## `afpay cashu send-to-ln`

Send cashu to a Lightning invoice

**Usage:** `afpay cashu send-to-ln [OPTIONS] --to <TO>`

###### **Options:**

* `--to <TO>` — Lightning invoice (bolt11)
* `--wallet <WALLET>` — Source wallet ID (auto-selected if omitted)
* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo (sent with the transaction)
* `--local-memo <LOCAL_MEMO>` — Local bookkeeping annotation (repeatable: --local-memo purpose=donation --local-memo note=coffee)



## `afpay cashu receive-from-ln`

Create Lightning invoice to receive cashu from LN

**Usage:** `afpay cashu receive-from-ln [OPTIONS]`

###### **Options:**

* `--amount-sats <AMOUNT_SATS>` — Amount in sats (base units)
* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo (sent with the transaction)
* `--wallet <WALLET>` — Wallet ID (auto-selected if omitted)
* `--wait` — Wait for payment / matching receive transaction
* `--wait-timeout-s <WAIT_TIMEOUT_S>` — Timeout in seconds for --wait
* `--wait-poll-interval-ms <WAIT_POLL_INTERVAL_MS>` — Poll interval in milliseconds for --wait
* `--qr-svg-file` — Write receive QR payload to an SVG file

  Default value: `false`



## `afpay cashu receive-from-ln-claim`

Claim minted tokens from a receive-from-ln quote

**Usage:** `afpay cashu receive-from-ln-claim --wallet <WALLET> --ln-quote-id <LN_QUOTE_ID>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID
* `--ln-quote-id <LN_QUOTE_ID>` — Quote ID / payment hash from deposit



## `afpay cashu balance`

Check cashu balance

**Usage:** `afpay cashu balance [OPTIONS]`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit to show all cashu wallets)
* `--check` — Verify proofs against mint (slower but accurate)



## `afpay cashu wallet`

Wallet management

**Usage:** `afpay cashu wallet <COMMAND>`

###### **Subcommands:**

* `create` — Create a new cashu wallet
* `close` — Close a zero-balance cashu wallet
* `list` — List cashu wallets
* `dangerously-show-seed` — Dangerously show wallet seed mnemonic (12 BIP39 words)
* `restore` — Restore lost proofs from mint (fixes counter/proof sync issues)



## `afpay cashu wallet create`

Create a new cashu wallet

**Usage:** `afpay cashu wallet create [OPTIONS] --cashu-mint <MINT_URL>`

###### **Options:**

* `--cashu-mint <MINT_URL>` — Cashu mint URL
* `--label <LABEL>` — Optional label
* `--mnemonic-secret <MNEMONIC_SECRET>` — Existing BIP39 mnemonic secret to restore this wallet



## `afpay cashu wallet close`

Close a zero-balance cashu wallet

**Usage:** `afpay cashu wallet close [OPTIONS] --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID
* `--dangerously-skip-balance-check-and-may-lose-money` — Dangerously skip balance checks when closing wallet



## `afpay cashu wallet list`

List cashu wallets

**Usage:** `afpay cashu wallet list`



## `afpay cashu wallet dangerously-show-seed`

Dangerously show wallet seed mnemonic (12 BIP39 words)

**Usage:** `afpay cashu wallet dangerously-show-seed --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay cashu wallet restore`

Restore lost proofs from mint (fixes counter/proof sync issues)

**Usage:** `afpay cashu wallet restore --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay cashu limit`

Spend limit for cashu network or a specific cashu wallet

**Usage:** `afpay cashu limit [OPTIONS] <COMMAND>`

###### **Subcommands:**

* `add` — Add a network or wallet spend limit

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit for network-level limit)



## `afpay cashu limit add`

Add a network or wallet spend limit

**Usage:** `afpay cashu limit add --window <WINDOW> --max-spend <MAX_SPEND>`

###### **Options:**

* `--window <WINDOW>` — Time window: e.g. 30m, 1h, 24h, 7d
* `--max-spend <MAX_SPEND>` — Maximum spend in base units



## `afpay cashu config`

Per-wallet configuration

**Usage:** `afpay cashu config --wallet <WALLET> <COMMAND>`

###### **Subcommands:**

* `show` — Show current wallet configuration
* `set` — Update wallet settings

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay cashu config show`

Show current wallet configuration

**Usage:** `afpay cashu config show`



## `afpay cashu config set`

Update wallet settings

**Usage:** `afpay cashu config set [OPTIONS]`

###### **Options:**

* `--label <LABEL>` — New label



## `afpay cashu backup`

Back up cashu wallet data to a .tar.zst archive

**Usage:** `afpay cashu backup [OPTIONS]`

###### **Options:**

* `--output <OUTPUT>` — Output archive path (default: ./afpay-cashu-{timestamp}.tar.zst)
* `--wallet <WALLET>` — Wallet ID (omit to back up all cashu wallets)



## `afpay cashu restore`

Restore cashu wallet data from a .tar.zst archive

**Usage:** `afpay cashu restore [OPTIONS] <ARCHIVE>`

###### **Arguments:**

* `<ARCHIVE>` — Path to the backup archive

###### **Options:**

* `--dangerously-overwrite` — Clear existing data before restoring (default: merge)
* `--pg-url-secret <PG_URL_SECRET>` — Override PostgreSQL connection URL for the pg restore step



## `afpay ln`

Lightning Network operations (NWC, phoenixd, LNbits)

**Usage:** `afpay ln <COMMAND>`

###### **Subcommands:**

* `wallet` — Wallet management
* `send` — Pay a Lightning invoice or BOLT12 offer
* `receive` — Create a Lightning invoice (BOLT11) or get a reusable BOLT12 offer
* `balance` — Check balance
* `limit` — Spend limit for ln network or a specific ln wallet
* `config` — Per-wallet configuration
* `backup` — Back up Lightning wallet data to a .tar.zst archive
* `restore` — Restore Lightning wallet data from a .tar.zst archive



## `afpay ln wallet`

Wallet management

**Usage:** `afpay ln wallet <COMMAND>`

###### **Subcommands:**

* `create` — Create a new Lightning wallet
* `close` — Close a Lightning wallet
* `list` — List Lightning wallets
* `dangerously-show-seed` — Dangerously show wallet seed (for LN this is backend credential, not mnemonic words)



## `afpay ln wallet create`

Create a new Lightning wallet

**Usage:** `afpay ln wallet create [OPTIONS] --backend <BACKEND>`

###### **Options:**

* `--backend <BACKEND>` — Backend: nwc, phoenixd, lnbits

  Possible values: `nwc`, `phoenixd`, `lnbits`

* `--nwc-uri-secret <NWC_URI_SECRET>` — NWC connection URI secret (for nwc backend)
* `--endpoint <ENDPOINT>` — Endpoint URL (for phoenixd, lnbits)
* `--password-secret <PASSWORD_SECRET>` — Password secret (for phoenixd)
* `--admin-key-secret <ADMIN_KEY_SECRET>` — Admin API key secret (for lnbits)
* `--label <LABEL>` — Optional label



## `afpay ln wallet close`

Close a Lightning wallet

**Usage:** `afpay ln wallet close [OPTIONS] --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID
* `--dangerously-skip-balance-check-and-may-lose-money` — Dangerously skip balance checks when closing wallet



## `afpay ln wallet list`

List Lightning wallets

**Usage:** `afpay ln wallet list`



## `afpay ln wallet dangerously-show-seed`

Dangerously show wallet seed (for LN this is backend credential, not mnemonic words)

**Usage:** `afpay ln wallet dangerously-show-seed --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay ln send`

Pay a Lightning invoice or BOLT12 offer

**Usage:** `afpay ln send [OPTIONS] --to <TO>`

###### **Options:**

* `--to <TO>` — BOLT11 invoice or BOLT12 offer (lno1…) to pay
* `--amount-sats <AMOUNT_SATS>` — Amount in sats (required for BOLT12 offers, rejected for BOLT11)
* `--wallet <WALLET>` — Source wallet ID (auto-selected if omitted)
* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo (sent with the transaction)
* `--local-memo <LOCAL_MEMO>` — Local bookkeeping annotation (repeatable: --local-memo purpose=donation --local-memo note=coffee)



## `afpay ln receive`

Create a Lightning invoice (BOLT11) or get a reusable BOLT12 offer

**Usage:** `afpay ln receive [OPTIONS]`

###### **Options:**

* `--amount-sats <AMOUNT_SATS>` — Amount in sats (omit for BOLT12 offer)
* `--wallet <WALLET>` — Wallet ID (auto-selected if omitted)
* `--wait` — Wait for payment / matching receive transaction
* `--wait-timeout-s <WAIT_TIMEOUT_S>` — Timeout in seconds for --wait
* `--wait-poll-interval-ms <WAIT_POLL_INTERVAL_MS>` — Poll interval in milliseconds for --wait
* `--qr-svg-file` — Write receive QR payload to an SVG file

  Default value: `false`



## `afpay ln balance`

Check balance

**Usage:** `afpay ln balance [OPTIONS]`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit to show all ln wallets)



## `afpay ln limit`

Spend limit for ln network or a specific ln wallet

**Usage:** `afpay ln limit [OPTIONS] <COMMAND>`

###### **Subcommands:**

* `add` — Add a network or wallet spend limit

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit for network-level limit)



## `afpay ln limit add`

Add a network or wallet spend limit

**Usage:** `afpay ln limit add --window <WINDOW> --max-spend <MAX_SPEND>`

###### **Options:**

* `--window <WINDOW>` — Time window: e.g. 30m, 1h, 24h, 7d
* `--max-spend <MAX_SPEND>` — Maximum spend in base units



## `afpay ln config`

Per-wallet configuration

**Usage:** `afpay ln config --wallet <WALLET> <COMMAND>`

###### **Subcommands:**

* `show` — Show current wallet configuration
* `set` — Update wallet settings

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay ln config show`

Show current wallet configuration

**Usage:** `afpay ln config show`



## `afpay ln config set`

Update wallet settings

**Usage:** `afpay ln config set [OPTIONS]`

###### **Options:**

* `--label <LABEL>` — New label



## `afpay ln backup`

Back up Lightning wallet data to a .tar.zst archive

**Usage:** `afpay ln backup [OPTIONS]`

###### **Options:**

* `--output <OUTPUT>` — Output archive path (default: ./afpay-ln-{timestamp}.tar.zst)
* `--wallet <WALLET>` — Wallet ID (omit to back up all ln wallets)



## `afpay ln restore`

Restore Lightning wallet data from a .tar.zst archive

**Usage:** `afpay ln restore [OPTIONS] <ARCHIVE>`

###### **Arguments:**

* `<ARCHIVE>` — Path to the backup archive

###### **Options:**

* `--dangerously-overwrite` — Clear existing data before restoring (default: merge)
* `--pg-url-secret <PG_URL_SECRET>` — Override PostgreSQL connection URL for the pg restore step



## `afpay sol`

Solana operations

**Usage:** `afpay sol <COMMAND>`

###### **Subcommands:**

* `wallet` — Wallet management
* `send` — Send SOL or SPL token transfer
* `receive` — Show wallet receive address
* `balance` — Check balance
* `limit` — Spend limit for sol network or a specific sol wallet
* `config` — Per-wallet configuration
* `backup` — Back up Solana wallet data to a .tar.zst archive
* `restore` — Restore Solana wallet data from a .tar.zst archive



## `afpay sol wallet`

Wallet management

**Usage:** `afpay sol wallet <COMMAND>`

###### **Subcommands:**

* `create` — Create a new Solana wallet
* `close` — Close a Solana wallet
* `list` — List Solana wallets
* `dangerously-show-seed` — Dangerously show wallet seed mnemonic (12 BIP39 words)



## `afpay sol wallet create`

Create a new Solana wallet

**Usage:** `afpay sol wallet create [OPTIONS] --sol-rpc-endpoint <SOL_RPC_ENDPOINT>`

###### **Options:**

* `--sol-rpc-endpoint <SOL_RPC_ENDPOINT>` — Solana JSON-RPC endpoint (repeat to configure failover order)
* `--label <LABEL>` — Optional label



## `afpay sol wallet close`

Close a Solana wallet

**Usage:** `afpay sol wallet close [OPTIONS] --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID
* `--dangerously-skip-balance-check-and-may-lose-money` — Dangerously skip balance checks when closing wallet



## `afpay sol wallet list`

List Solana wallets

**Usage:** `afpay sol wallet list`



## `afpay sol wallet dangerously-show-seed`

Dangerously show wallet seed mnemonic (12 BIP39 words)

**Usage:** `afpay sol wallet dangerously-show-seed --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay sol send`

Send SOL or SPL token transfer

**Usage:** `afpay sol send [OPTIONS] --to <TO> --amount <AMOUNT> --token <TOKEN>`

###### **Options:**

* `--to <TO>` — Recipient Solana address (base58)
* `--amount <AMOUNT>` — Amount in token base units (lamports for SOL, smallest unit for SPL tokens)
* `--token <TOKEN>` — Token: "native" for SOL, "usdc", "usdt", or SPL mint address
* `--reference <REFERENCE>` — Reference key for order binding (base58-encoded 32 bytes, per strain-payment-method-solana)
* `--wallet <WALLET>` — Source wallet ID (auto-selected if omitted)
* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo (sent with the transaction)
* `--local-memo <LOCAL_MEMO>` — Local bookkeeping annotation (repeatable: --local-memo purpose=donation --local-memo note=coffee)



## `afpay sol receive`

Show wallet receive address

**Usage:** `afpay sol receive [OPTIONS]`

###### **Options:**

* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo to watch for (used with --wait)
* `--min-confirmations <MIN_CONFIRMATIONS>` — Minimum confirmation depth before considering payment settled (requires --wait)
* `--reference <REFERENCE>` — Reference key to watch for (base58, used with --wait, per strain-payment-method-solana)
* `--wallet <WALLET>` — Wallet ID (auto-selected if omitted)
* `--wait` — Wait for payment / matching receive transaction
* `--wait-timeout-s <WAIT_TIMEOUT_S>` — Timeout in seconds for --wait
* `--wait-poll-interval-ms <WAIT_POLL_INTERVAL_MS>` — Poll interval in milliseconds for --wait
* `--qr-svg-file` — Write receive QR payload to an SVG file

  Default value: `false`



## `afpay sol balance`

Check balance

**Usage:** `afpay sol balance [OPTIONS]`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit to show all sol wallets)



## `afpay sol limit`

Spend limit for sol network or a specific sol wallet

**Usage:** `afpay sol limit [OPTIONS] <COMMAND>`

###### **Subcommands:**

* `add` — Add a network or wallet spend limit

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit for network-level limit)



## `afpay sol limit add`

Add a network or wallet spend limit

**Usage:** `afpay sol limit add [OPTIONS] --window <WINDOW> --max-spend <MAX_SPEND>`

###### **Options:**

* `--token <TOKEN>` — Token: native, usdc, usdt
* `--window <WINDOW>` — Time window: e.g. 30m, 1h, 24h, 7d
* `--max-spend <MAX_SPEND>` — Maximum spend in base units



## `afpay sol config`

Per-wallet configuration

**Usage:** `afpay sol config --wallet <WALLET> <COMMAND>`

###### **Subcommands:**

* `show` — Show current wallet configuration
* `set` — Update wallet settings
* `token-add` — Register a custom token for balance tracking
* `token-remove` — Unregister a custom token

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay sol config show`

Show current wallet configuration

**Usage:** `afpay sol config show`



## `afpay sol config set`

Update wallet settings

**Usage:** `afpay sol config set [OPTIONS]`

###### **Options:**

* `--label <LABEL>` — New label
* `--rpc-endpoint <RPC_ENDPOINT>` — Replace RPC endpoint(s)



## `afpay sol config token-add`

Register a custom token for balance tracking

**Usage:** `afpay sol config token-add [OPTIONS] --symbol <SYMBOL> --address <ADDRESS>`

###### **Options:**

* `--symbol <SYMBOL>` — Token symbol (e.g. dai)
* `--address <ADDRESS>` — Token contract address
* `--decimals <DECIMALS>` — Token decimals

  Default value: `6`



## `afpay sol config token-remove`

Unregister a custom token

**Usage:** `afpay sol config token-remove --symbol <SYMBOL>`

###### **Options:**

* `--symbol <SYMBOL>` — Token symbol to remove



## `afpay sol backup`

Back up Solana wallet data to a .tar.zst archive

**Usage:** `afpay sol backup [OPTIONS]`

###### **Options:**

* `--output <OUTPUT>` — Output archive path (default: ./afpay-sol-{timestamp}.tar.zst)
* `--wallet <WALLET>` — Wallet ID (omit to back up all sol wallets)



## `afpay sol restore`

Restore Solana wallet data from a .tar.zst archive

**Usage:** `afpay sol restore [OPTIONS] <ARCHIVE>`

###### **Arguments:**

* `<ARCHIVE>` — Path to the backup archive

###### **Options:**

* `--dangerously-overwrite` — Clear existing data before restoring (default: merge)
* `--pg-url-secret <PG_URL_SECRET>` — Override PostgreSQL connection URL for the pg restore step



## `afpay evm`

EVM chain operations (Base, Arbitrum)

**Usage:** `afpay evm <COMMAND>`

###### **Subcommands:**

* `wallet` — Wallet management
* `send` — Send native token or ERC-20 token transfer
* `receive` — Show wallet receive address
* `balance` — Check balance
* `limit` — Spend limit for evm network or a specific evm wallet
* `config` — Per-wallet configuration
* `backup` — Back up EVM wallet data to a .tar.zst archive
* `restore` — Restore EVM wallet data from a .tar.zst archive



## `afpay evm wallet`

Wallet management

**Usage:** `afpay evm wallet <COMMAND>`

###### **Subcommands:**

* `create` — Create a new EVM chain wallet
* `close` — Close an EVM chain wallet
* `list` — List EVM chain wallets
* `dangerously-show-seed` — Dangerously show wallet seed mnemonic (12 BIP39 words)



## `afpay evm wallet create`

Create a new EVM chain wallet

**Usage:** `afpay evm wallet create [OPTIONS] --evm-rpc-endpoint <EVM_RPC_ENDPOINT>`

###### **Options:**

* `--evm-rpc-endpoint <EVM_RPC_ENDPOINT>` — EVM JSON-RPC endpoint (repeat to configure failover order)
* `--chain-id <CHAIN_ID>` — Chain ID (default: 8453 = Base)

  Default value: `8453`
* `--label <LABEL>` — Optional label



## `afpay evm wallet close`

Close an EVM chain wallet

**Usage:** `afpay evm wallet close [OPTIONS] --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID
* `--dangerously-skip-balance-check-and-may-lose-money` — Dangerously skip balance checks when closing wallet



## `afpay evm wallet list`

List EVM chain wallets

**Usage:** `afpay evm wallet list`



## `afpay evm wallet dangerously-show-seed`

Dangerously show wallet seed mnemonic (12 BIP39 words)

**Usage:** `afpay evm wallet dangerously-show-seed --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay evm send`

Send native token or ERC-20 token transfer

**Usage:** `afpay evm send [OPTIONS] --to <TO> --amount <AMOUNT> --token <TOKEN>`

###### **Options:**

* `--to <TO>` — Recipient address (0x...)
* `--amount <AMOUNT>` — Amount in token base units (wei for ETH, smallest unit for ERC-20)
* `--token <TOKEN>` — Token: "native" for chain native, "usdc" or contract address for ERC-20
* `--wallet <WALLET>` — Source wallet ID (auto-selected if omitted)
* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo (sent with the transaction)
* `--local-memo <LOCAL_MEMO>` — Local bookkeeping annotation (repeatable: --local-memo purpose=donation --local-memo note=coffee)



## `afpay evm receive`

Show wallet receive address

**Usage:** `afpay evm receive [OPTIONS]`

###### **Options:**

* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo to watch for (used with --wait)
* `--min-confirmations <MIN_CONFIRMATIONS>` — Minimum confirmation depth before considering payment settled (requires --wait)
* `--wallet <WALLET>` — Wallet ID (auto-selected if omitted)
* `--wait` — Wait for payment / matching receive transaction
* `--wait-timeout-s <WAIT_TIMEOUT_S>` — Timeout in seconds for --wait
* `--wait-poll-interval-ms <WAIT_POLL_INTERVAL_MS>` — Poll interval in milliseconds for --wait
* `--qr-svg-file` — Write receive QR payload to an SVG file

  Default value: `false`



## `afpay evm balance`

Check balance

**Usage:** `afpay evm balance [OPTIONS]`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit to show all evm wallets)



## `afpay evm limit`

Spend limit for evm network or a specific evm wallet

**Usage:** `afpay evm limit [OPTIONS] <COMMAND>`

###### **Subcommands:**

* `add` — Add a network or wallet spend limit

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit for network-level limit)



## `afpay evm limit add`

Add a network or wallet spend limit

**Usage:** `afpay evm limit add [OPTIONS] --window <WINDOW> --max-spend <MAX_SPEND>`

###### **Options:**

* `--token <TOKEN>` — Token: native, usdc, usdt
* `--window <WINDOW>` — Time window: e.g. 30m, 1h, 24h, 7d
* `--max-spend <MAX_SPEND>` — Maximum spend in base units



## `afpay evm config`

Per-wallet configuration

**Usage:** `afpay evm config --wallet <WALLET> <COMMAND>`

###### **Subcommands:**

* `show` — Show current wallet configuration
* `set` — Update wallet settings
* `token-add` — Register a custom token for balance tracking
* `token-remove` — Unregister a custom token

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay evm config show`

Show current wallet configuration

**Usage:** `afpay evm config show`



## `afpay evm config set`

Update wallet settings

**Usage:** `afpay evm config set [OPTIONS]`

###### **Options:**

* `--label <LABEL>` — New label
* `--rpc-endpoint <RPC_ENDPOINT>` — Replace RPC endpoint(s)
* `--chain-id <CHAIN_ID>` — EVM chain ID



## `afpay evm config token-add`

Register a custom token for balance tracking

**Usage:** `afpay evm config token-add [OPTIONS] --symbol <SYMBOL> --address <ADDRESS>`

###### **Options:**

* `--symbol <SYMBOL>` — Token symbol (e.g. dai)
* `--address <ADDRESS>` — Token contract address
* `--decimals <DECIMALS>` — Token decimals

  Default value: `6`



## `afpay evm config token-remove`

Unregister a custom token

**Usage:** `afpay evm config token-remove --symbol <SYMBOL>`

###### **Options:**

* `--symbol <SYMBOL>` — Token symbol to remove



## `afpay evm backup`

Back up EVM wallet data to a .tar.zst archive

**Usage:** `afpay evm backup [OPTIONS]`

###### **Options:**

* `--output <OUTPUT>` — Output archive path (default: ./afpay-evm-{timestamp}.tar.zst)
* `--wallet <WALLET>` — Wallet ID (omit to back up all evm wallets)



## `afpay evm restore`

Restore EVM wallet data from a .tar.zst archive

**Usage:** `afpay evm restore [OPTIONS] <ARCHIVE>`

###### **Arguments:**

* `<ARCHIVE>` — Path to the backup archive

###### **Options:**

* `--dangerously-overwrite` — Clear existing data before restoring (default: merge)
* `--pg-url-secret <PG_URL_SECRET>` — Override PostgreSQL connection URL for the pg restore step



## `afpay btc`

Bitcoin on-chain operations

**Usage:** `afpay btc <COMMAND>`

###### **Subcommands:**

* `wallet` — Wallet management
* `send` — Send BTC on-chain
* `receive` — Show wallet receive address
* `balance` — Check balance
* `limit` — Spend limit for btc network or a specific btc wallet
* `config` — Per-wallet configuration
* `backup` — Back up Bitcoin wallet data to a .tar.zst archive
* `restore` — Restore Bitcoin wallet data from a .tar.zst archive



## `afpay btc wallet`

Wallet management

**Usage:** `afpay btc wallet <COMMAND>`

###### **Subcommands:**

* `create` — Create a new Bitcoin wallet
* `close` — Close a Bitcoin wallet
* `list` — List Bitcoin wallets
* `dangerously-show-seed` — Dangerously show wallet seed mnemonic (12 BIP39 words)



## `afpay btc wallet create`

Create a new Bitcoin wallet

**Usage:** `afpay btc wallet create [OPTIONS]`

###### **Options:**

* `--btc-network <BTC_NETWORK>` — Bitcoin sub-network: mainnet or signet (default: mainnet)

  Default value: `mainnet`
* `--btc-address-type <BTC_ADDRESS_TYPE>` — Address type: taproot or segwit (default: taproot)

  Default value: `taproot`
* `--btc-backend <BTC_BACKEND>` — Chain-source backend: esplora (default), core-rpc, electrum

  Possible values: `esplora`, `core-rpc`, `electrum`

* `--btc-esplora-url <BTC_ESPLORA_URL>` — Custom Esplora API URL
* `--btc-core-url <BTC_CORE_URL>` — Bitcoin Core RPC URL (core-rpc backend)
* `--btc-core-auth-secret <BTC_CORE_AUTH_SECRET>` — Bitcoin Core RPC auth "user:pass" (core-rpc backend)
* `--btc-electrum-url <BTC_ELECTRUM_URL>` — Electrum server URL (electrum backend)
* `--mnemonic-secret <MNEMONIC_SECRET>` — Existing BIP39 mnemonic secret to restore wallet
* `--label <LABEL>` — Optional label



## `afpay btc wallet close`

Close a Bitcoin wallet

**Usage:** `afpay btc wallet close [OPTIONS] --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID
* `--dangerously-skip-balance-check-and-may-lose-money` — Dangerously skip balance checks when closing wallet



## `afpay btc wallet list`

List Bitcoin wallets

**Usage:** `afpay btc wallet list`



## `afpay btc wallet dangerously-show-seed`

Dangerously show wallet seed mnemonic (12 BIP39 words)

**Usage:** `afpay btc wallet dangerously-show-seed --wallet <WALLET>`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay btc send`

Send BTC on-chain

**Usage:** `afpay btc send [OPTIONS] --to <TO> --amount-sats <AMOUNT_SATS>`

###### **Options:**

* `--to <TO>` — Recipient Bitcoin address (bc1.../tb1...)
* `--amount-sats <AMOUNT_SATS>` — Amount in satoshis
* `--wallet <WALLET>` — Source wallet ID (auto-selected if omitted)
* `--onchain-memo <ONCHAIN_MEMO>` — On-chain memo (sent with the transaction)
* `--local-memo <LOCAL_MEMO>` — Local bookkeeping annotation (repeatable: --local-memo purpose=donation --local-memo note=coffee)



## `afpay btc receive`

Show wallet receive address

**Usage:** `afpay btc receive [OPTIONS]`

###### **Options:**

* `--wait-sync-limit <WAIT_SYNC_LIMIT>` — Max history records scanned per poll when resolving tx id
* `--wallet <WALLET>` — Wallet ID (auto-selected if omitted)
* `--wait` — Wait for payment / matching receive transaction
* `--wait-timeout-s <WAIT_TIMEOUT_S>` — Timeout in seconds for --wait
* `--wait-poll-interval-ms <WAIT_POLL_INTERVAL_MS>` — Poll interval in milliseconds for --wait
* `--qr-svg-file` — Write receive QR payload to an SVG file

  Default value: `false`



## `afpay btc balance`

Check balance

**Usage:** `afpay btc balance [OPTIONS]`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit to show all btc wallets)



## `afpay btc limit`

Spend limit for btc network or a specific btc wallet

**Usage:** `afpay btc limit [OPTIONS] <COMMAND>`

###### **Subcommands:**

* `add` — Add a network or wallet spend limit

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit for network-level limit)



## `afpay btc limit add`

Add a network or wallet spend limit

**Usage:** `afpay btc limit add --window <WINDOW> --max-spend <MAX_SPEND>`

###### **Options:**

* `--window <WINDOW>` — Time window: e.g. 30m, 1h, 24h, 7d
* `--max-spend <MAX_SPEND>` — Maximum spend in base units



## `afpay btc config`

Per-wallet configuration

**Usage:** `afpay btc config --wallet <WALLET> <COMMAND>`

###### **Subcommands:**

* `show` — Show current wallet configuration
* `set` — Update wallet settings

###### **Options:**

* `--wallet <WALLET>` — Wallet ID



## `afpay btc config show`

Show current wallet configuration

**Usage:** `afpay btc config show`



## `afpay btc config set`

Update wallet settings

**Usage:** `afpay btc config set [OPTIONS]`

###### **Options:**

* `--label <LABEL>` — New label



## `afpay btc backup`

Back up Bitcoin wallet data to a .tar.zst archive

**Usage:** `afpay btc backup [OPTIONS]`

###### **Options:**

* `--output <OUTPUT>` — Output archive path (default: ./afpay-btc-{timestamp}.tar.zst)
* `--wallet <WALLET>` — Wallet ID (omit to back up all btc wallets)



## `afpay btc restore`

Restore Bitcoin wallet data from a .tar.zst archive

**Usage:** `afpay btc restore [OPTIONS] <ARCHIVE>`

###### **Arguments:**

* `<ARCHIVE>` — Path to the backup archive

###### **Options:**

* `--dangerously-overwrite` — Clear existing data before restoring (default: merge)
* `--pg-url-secret <PG_URL_SECRET>` — Override PostgreSQL connection URL for the pg restore step



## `afpay wallet`

List all wallets (cross-network)

**Usage:** `afpay wallet <COMMAND>`

###### **Subcommands:**

* `list` — List all wallets (cross-network)



## `afpay wallet list`

List all wallets (cross-network)

**Usage:** `afpay wallet list [OPTIONS]`

###### **Options:**

* `--network <NETWORK>` — Filter by network: cashu, ln, sol, evm

  Possible values: `ln`, `sol`, `evm`, `cashu`, `btc`




## `afpay balance`

All wallets balance (cross-network)

**Usage:** `afpay balance [OPTIONS]`

###### **Options:**

* `--wallet <WALLET>` — Wallet ID (omit to show all wallets)
* `--network <NETWORK>` — Filter by network: cashu, ln, sol, evm

  Possible values: `ln`, `sol`, `evm`, `cashu`, `btc`

* `--cashu-check` — Verify cashu proofs against mint (slower but accurate; cashu only)



## `afpay history`

History queries

**Usage:** `afpay history <COMMAND>`

###### **Subcommands:**

* `list` — List history records from local store
* `status` — Check history status
* `update` — Incrementally sync on-chain/backend history into local store



## `afpay history list`

List history records from local store

**Usage:** `afpay history list [OPTIONS]`

###### **Options:**

* `--wallet <WALLET>` — Filter by wallet ID
* `--network <NETWORK>` — Filter by network: cashu, ln, sol, evm

  Possible values: `ln`, `sol`, `evm`, `cashu`, `btc`

* `--onchain-memo <ONCHAIN_MEMO>` — Filter by exact on-chain memo text
* `--limit <LIMIT>` — Max results

  Default value: `20`
* `--offset <OFFSET>` — Offset

  Default value: `0`
* `--since-epoch-s <SINCE_EPOCH_S>` — Only include records created at or after this epoch second
* `--until-epoch-s <UNTIL_EPOCH_S>` — Only include records created before this epoch second



## `afpay history status`

Check history status

**Usage:** `afpay history status --transaction-id <TRANSACTION_ID>`

###### **Options:**

* `--transaction-id <TRANSACTION_ID>` — Transaction ID



## `afpay history update`

Incrementally sync on-chain/backend history into local store

**Usage:** `afpay history update [OPTIONS]`

###### **Options:**

* `--wallet <WALLET>` — Sync a specific wallet (defaults to all wallets in scope)
* `--network <NETWORK>` — Restrict sync to a single network

  Possible values: `ln`, `sol`, `evm`, `cashu`, `btc`

* `--limit <LIMIT>` — Max records to scan per wallet during this incremental sync

  Default value: `200`



## `afpay limit`

Spend limit list and remove (cross-network)

**Usage:** `afpay limit <COMMAND>`

###### **Subcommands:**

* `remove` — Remove a spend limit rule by ID
* `list` — List current limit status



## `afpay limit remove`

Remove a spend limit rule by ID

**Usage:** `afpay limit remove --rule-id <RULE_ID>`

###### **Options:**

* `--rule-id <RULE_ID>` — Rule ID (e.g. r_1a2b3c4d)



## `afpay limit list`

List current limit status

**Usage:** `afpay limit list`