summaryrefslogtreecommitdiff
path: root/daemon/kmd/api/v1/handlers.go
blob: 466daab4cf3588e2f9f3f50810c5da3fd411e3be (plain)
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
// Copyright (C) 2019-2024 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package v1

import (
	"net/http"

	"github.com/gorilla/mux"

	"github.com/algorand/go-algorand/crypto"
	"github.com/algorand/go-algorand/daemon/kmd/lib/kmdapi"
	"github.com/algorand/go-algorand/daemon/kmd/session"
	"github.com/algorand/go-algorand/daemon/kmd/wallet"
	"github.com/algorand/go-algorand/daemon/kmd/wallet/driver"
	"github.com/algorand/go-algorand/data/basics"
	"github.com/algorand/go-algorand/data/transactions"
	"github.com/algorand/go-algorand/logging"
	"github.com/algorand/go-algorand/protocol"
)

// reqContext is passed to each of the handlers below via wrapCtx, allowing
// handlers to interact with kmd's session store
type reqContext struct {
	sm *session.Manager
}

// errorResponse sets the specified status code (should != 200), and fills in the
// the response envelope by setting Error to true and a Message to the passed
// user-readable error message.
func errorResponse(w http.ResponseWriter, status int, err error) {
	w.Header().Set("Content-Type", "application/json")
	w.WriteHeader(status)
	resp := kmdapi.APIV1ResponseEnvelope{
		Error:   true,
		Message: err.Error(),
	}
	w.Write(protocol.EncodeJSON(resp))
}

// successResponse is a helper that returns a 200 and an encoded response
func successResponse(w http.ResponseWriter, resp kmdapi.APIV1Response) {
	w.Header().Set("Content-Type", "application/json")
	w.WriteHeader(http.StatusOK)
	w.Write(protocol.EncodeJSON(resp))
}

func encodeAddress(addr crypto.Digest) string {
	return basics.Address(addr).GetUserAddress()
}

// encodeAddresses turns raw addresses into checksummed strings suitable for
// displaying to users
func encodeAddresses(addrs []crypto.Digest) (userAddrs []string) {
	for _, addr := range addrs {
		userAddrs = append(userAddrs, encodeAddress(addr))
	}
	return
}

// apiWalletFromMetadata is a helper to convert our internal wallet metadata
// format into the APIV1 representation of a wallet
func apiWalletFromMetadata(metadata wallet.Metadata) kmdapi.APIV1Wallet {
	return kmdapi.APIV1Wallet{
		ID:                    string(metadata.ID),
		Name:                  string(metadata.Name),
		DriverName:            metadata.DriverName,
		DriverVersion:         metadata.DriverVersion,
		SupportsMnemonicUX:    metadata.SupportsMnemonicUX,
		SupportedTransactions: metadata.SupportedTransactions,
	}
}

// getWalletsHandler handles `GET /v1/wallets`
func getWalletsHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation GET /v1/wallets ListWallets
	//---
	//    Summary: List wallets
	//    Description: Lists all of the wallets that kmd is aware of.
	//    Produces:
	//    - application/json
	//    Parameters:
	//    - name: List Wallet Request
	//      in: body
	//      required: false
	//      schema:
	//        "$ref": "#/definitions/ListWalletsRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ListWalletsResponse"

	// List all wallets from all wallet drivers
	walletMetadatas, err := driver.ListWalletMetadatas()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Fill in the APIV1 representation of each wallet
	var apiWallets []kmdapi.APIV1Wallet
	for _, metadata := range walletMetadatas {
		apiWallets = append(apiWallets, apiWalletFromMetadata(metadata))
	}

	// Wrap the wallets in an API response
	resp := kmdapi.APIV1GETWalletsResponse{
		Wallets: apiWallets,
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postWalletHandler handles `POST /v1/wallet`
func postWalletHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/wallet CreateWallet
	//---
	//    Summary: Create a wallet
	//    Description: Create a new wallet (collection of keys) with the given parameters.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Create Wallet Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/CreateWalletRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/CreateWalletResponse"
	var req kmdapi.APIV1POSTWalletRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet driver
	walletDriver, err := driver.FetchWalletDriver(req.WalletDriverName)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Generate a wallet ID
	walletID, err := wallet.GenerateWalletID()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// If the wallet name is blank, use the wallet ID
	walletName := []byte(req.WalletName)
	if len(walletName) == 0 {
		walletName = walletID
	}

	// Create the wallet via its driver
	err = walletDriver.CreateWallet(walletName, walletID, []byte(req.WalletPassword), req.MasterDerivationKey)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Fetch the wallet
	wallet, err := walletDriver.FetchWallet(walletID)
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Fetch metadata about the wallet we just created
	metadata, err := wallet.Metadata()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTWalletResponse{
		Wallet: apiWalletFromMetadata(metadata),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postWalletInitHandler handles `POST /v1/wallet/init`
func postWalletInitHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/wallet/init InitWalletHandleToken
	//---
	//    Summary: Initialize a wallet handle token
	//    Description: >
	//      Unlock the wallet and return a wallet handle token that can be used for subsequent operations.
	//      These tokens expire periodically and must be renewed. You can `POST` the token to `/v1/wallet/info`
	//      to see how much time remains until expiration, and renew it with `/v1/wallet/renew`. When you're done,
	//      you can invalidate the token with `/v1/wallet/release`.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Initialize Wallet Handle Token Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/InitWalletHandleTokenRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/InitWalletHandleTokenResponse"
	var req kmdapi.APIV1POSTWalletInitRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet
	wallet, err := driver.FetchWalletByID([]byte(req.WalletID))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Attempt to auth
	handleToken, err := ctx.sm.InitWalletHandle(wallet, []byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTWalletInitResponse{
		WalletHandleToken: string(handleToken),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postWalletInfoHandler handles `POST /v1/wallet/info`
func postWalletInfoHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/wallet/info GetWalletInfo
	//---
	//    Summary: Get wallet info
	//    Description: >
	//      Returns information about the wallet associated with the passed wallet handle token.
	//      Additionally returns expiration information about the token itself.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Get Wallet Info Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/WalletInfoRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/WalletInfoResponse"
	var req kmdapi.APIV1POSTWalletInfoRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, expiresSeconds, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Fetch the wallet metadata
	metadata, err := wallet.Metadata()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTWalletInfoResponse{
		WalletHandle: kmdapi.APIV1WalletHandle{
			Wallet:         apiWalletFromMetadata(metadata),
			ExpiresSeconds: expiresSeconds,
		},
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postMasterKeyExportHandler handles `POST /v1/master-key/export`
func postMasterKeyExportHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/master-key/export ExportMasterKey
	//---
	//    Summary: Export the master derivation key from a wallet
	//    Description: >
	//      Export the master derivation key from the wallet. This key is a master "backup" key for
	//      the underlying wallet. With it, you can regenerate all of the wallets that have been
	//      generated with this wallet's `POST /v1/key` endpoint. This key will not allow you to recover
	//      keys imported from other wallets, however.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Export Master Key Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/ExportMasterKeyRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ExportMasterKeyResponse"
	var req kmdapi.APIV1POSTMasterKeyExportRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Export the master derivation key
	mdk, err := wallet.ExportMasterDerivationKey([]byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTMasterKeyExportResponse{
		MasterDerivationKey: mdk,
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postWalletReleaseHandler handles `POST /v1/wallet/release`
func postWalletReleaseHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/wallet/release ReleaseWalletHandleToken
	//---
	//    Summary: Release a wallet handle token
	//    Description: Invalidate the passed wallet handle token, making it invalid for use in subsequent requests.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Release Wallet Handle Token Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/ReleaseWalletHandleTokenRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ReleaseWalletHandleTokenResponse"
	var req kmdapi.APIV1POSTWalletReleaseRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Release the WalletHandleToken
	err = ctx.sm.ReleaseWalletHandle([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTWalletReleaseResponse{}

	// Return and encode the response
	successResponse(w, resp)
}

// postWalletRenewHandler handles `POST /v1/wallet/renew`
func postWalletRenewHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/wallet/renew RenewWalletHandleToken
	//---
	//    Summary: Renew a wallet handle token
	//    Description: Renew a wallet handle token, increasing its expiration duration to its initial value
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Renew Wallet Handle Token Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/RenewWalletHandleTokenRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/RenewWalletHandleTokenResponse"
	var req kmdapi.APIV1POSTWalletRenewRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Renew the walletHandleToken + fetch the wallet
	wallet, expiresSeconds, err := ctx.sm.RenewWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Fetch the wallet metadata
	metadata, err := wallet.Metadata()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTWalletRenewResponse{
		WalletHandle: kmdapi.APIV1WalletHandle{
			Wallet:         apiWalletFromMetadata(metadata),
			ExpiresSeconds: expiresSeconds,
		},
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postWalletRenameHandler handles `POST /v1/wallet/rename`
func postWalletRenameHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/wallet/rename RenameWallet
	//---
	//    Summary: Rename a wallet
	//    Description: Rename the underlying wallet to something else
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Rename Wallet Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/RenameWalletRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/RenameWalletResponse"
	var req kmdapi.APIV1POSTWalletRenameRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet
	wallet, err := driver.FetchWalletByID([]byte(req.WalletID))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Fetch the wallet metadata
	metadata, err := wallet.Metadata()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Fetch the wallet driver
	driver, err := driver.FetchWalletDriver(metadata.DriverName)
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Rename the wallet
	err = driver.RenameWallet([]byte(req.NewWalletName), metadata.ID, []byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Fetch the renamed wallet metadata
	metadata, err = wallet.Metadata()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTWalletRenameResponse{
		Wallet: apiWalletFromMetadata(metadata),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postKeyImportHandler handles `POST /v1/key/import`
func postKeyImportHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/key/import ImportKey
	//---
	//    Summary: Import a key
	//    Description: >
	//      Import an externally generated key into the wallet. Note that if you wish to back up
	//      the imported key, you must do so by backing up the entire wallet database, because imported
	//      keys were not derived from the wallet's master derivation key.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Import Key Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/ImportKeyRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ImportKeyResponse"
	var req kmdapi.APIV1POSTKeyImportRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Import the key
	addr, err := wallet.ImportKey(req.PrivateKey)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTKeyImportResponse{
		Address: encodeAddress(addr),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postKeyExportHandler handles `POST /v1/key/export`
func postKeyExportHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/key/export ExportKey
	//---
	//    Summary: Export a key
	//    Description: Export the secret key associated with the passed public key.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Export Key Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/ExportKeyRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ExportKeyResponse"
	var req kmdapi.APIV1POSTKeyExportRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Decode the address
	reqAddr, err := basics.UnmarshalChecksumAddress(req.Address)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecodeAddress)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Export the key
	secretKey, err := wallet.ExportKey(crypto.Digest(reqAddr), []byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTKeyExportResponse{
		PrivateKey: secretKey,
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postKeyHandler handles `POST /v1/key`
func postKeyHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/key GenerateKey
	//---
	//    Summary: Generate a key
	//    Produces:
	//    - application/json
	//    Description: >
	//      Generates the next key in the deterministic key sequence (as determined by the master derivation key)
	//      and adds it to the wallet, returning the public key.
	//    Parameters:
	//      - name: Generate Key Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/GenerateKeyRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/GenerateKeyResponse"
	var req kmdapi.APIV1POSTKeyRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Generate the key
	addr, err := wallet.GenerateKey(req.DisplayMnemonic)
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTKeyResponse{
		Address: encodeAddress(addr),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// deleteKeyHandler handles `DELETE /v1/key`
func deleteKeyHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation DELETE /v1/key DeleteKey
	//---
	//    Summary: Delete a key
	//    Description: Deletes the key with the passed public key from the wallet.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Delete Key Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/DeleteKeyRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/DeleteKeyResponse"
	var req kmdapi.APIV1DELETEKeyRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Decode the address
	reqAddr, err := basics.UnmarshalChecksumAddress(req.Address)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecodeAddress)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Delete the key
	err = wallet.DeleteKey(crypto.Digest(reqAddr), []byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1DELETEKeyResponse{}

	// Return and encode the response
	successResponse(w, resp)
}

// postKeyListHandler handles `POST /v1/key/list`
func postKeyListHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/key/list ListKeysInWallet
	//---
	//    Summary: List keys in wallet
	//    Description: Lists all of the public keys in this wallet. All of them have a stored private key.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: List Keys Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/ListKeysRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ListKeysResponse"
	var req kmdapi.APIV1POSTKeyListRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// List the addresses
	addrs, err := wallet.ListKeys()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTKeyListResponse{
		Addresses: encodeAddresses(addrs),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postTransactionSignHandler handles `POST /v1/transaction/sign`
func postTransactionSignHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/transaction/sign SignTransaction
	//---
	//    Summary: Sign a transaction
	//    Description: >
	//      Signs the passed transaction with a key from the wallet, determined
	//      by the sender encoded in the transaction.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Sign Transaction Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/SignTransactionRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/SignTransactionResponse"
	var req kmdapi.APIV1POSTTransactionSignRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Decode the transaction
	var tx transactions.Transaction
	err = protocol.Decode(req.Transaction, &tx)

	// Ensure we were able to decode the transaction
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecodeTx)
		return
	}

	// Sign the transaction
	stx, err := wallet.SignTransaction(tx, req.PublicKey, []byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTTransactionSignResponse{
		SignedTransaction: stx,
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postProgramSignHandler handles `POST /v1/program/sign`
func postProgramSignHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/program/sign SignProgram
	//---
	//    Summary: Sign program
	//    Description: >
	//      Signs the passed program with a key from the wallet, determined
	//      by the account named in the request.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Sign Program Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/SignProgramRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/SignProgramResponse"
	var req kmdapi.APIV1POSTProgramSignRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Decode the address
	reqAddr, err := basics.UnmarshalChecksumAddress(req.Address)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecodeAddress)
		return
	}

	stx, err := wallet.SignProgram(req.Program, crypto.Digest(reqAddr), []byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTProgramSignResponse{
		Signature: stx,
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postMultisigListHandler handles `POST /v1/multisig/list`
func postMultisigListHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/multisig/list ListMultisg
	//---
	//    Summary: List multisig accounts
	//    Description: Lists all of the multisig accounts whose preimages this wallet stores
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: List Multisig Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/ListMultisigRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ListMultisigResponse"
	var req kmdapi.APIV1POSTMultisigListRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// List the keys
	addrs, err := wallet.ListMultisigAddrs()
	if err != nil {
		errorResponse(w, http.StatusInternalServerError, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTMultisigListResponse{
		Addresses: encodeAddresses(addrs),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postMultisigImportHandler handles `POST /v1/multisig/import`
func postMultisigImportHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/multisig/import ImportMultisig
	//---
	//    Summary: Import a multisig account
	//    Description: >
	//      Generates a multisig account from the passed public keys array and multisig
	//      metadata, and stores all of this in the wallet.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Import Multisig Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/ImportMultisigRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ImportMultisigResponse"
	var req kmdapi.APIV1POSTMultisigImportRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Import the key
	addr, err := wallet.ImportMultisigAddr(req.Version, req.Threshold, req.PKs)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTMultisigImportResponse{
		Address: encodeAddress(addr),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postMultisigExportHandler handles `POST /v1/multisig/export`
func postMultisigExportHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/multisig/export ExportMultisig
	//---
	//    Summary: Export multisig address metadata
	//    Description: >
	//      Given a multisig address whose preimage this wallet stores, returns
	//      the information used to generate the address, including public keys,
	//      threshold, and multisig version.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Export Multisig Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/ExportMultisigRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/ExportMultisigResponse"
	var req kmdapi.APIV1POSTMultisigExportRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Decode the address
	reqAddr, err := basics.UnmarshalChecksumAddress(req.Address)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecodeAddress)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Export the key
	version, threshold, pks, err := wallet.LookupMultisigPreimage(crypto.Digest(reqAddr))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTMultisigExportResponse{
		Version:   version,
		Threshold: threshold,
		PKs:       pks,
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postMultisigTransactionSignHandler handles `POST /v1/multisig/sign`
func postMultisigTransactionSignHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/multisig/sign SignMultisigTransaction
	//---
	//    Summary: Sign a multisig transaction
	//    Description: >
	//      Start a multisig signature, or add a signature to a partially completed
	//      multisig signature object.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Sign Multisig Transaction Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/SignMultisigRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/SignMultisigResponse"
	var req kmdapi.APIV1POSTMultisigTransactionSignRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Decode the transaction
	var tx transactions.Transaction
	err = protocol.Decode(req.Transaction, &tx)

	// Ensure we were able to decode the transaction
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecodeTx)
		return
	}

	// Sign the transaction
	msig, err := wallet.MultisigSignTransaction(tx, req.PublicKey, req.PartialMsig, []byte(req.WalletPassword), req.AuthAddr)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTMultisigTransactionSignResponse{
		Multisig: protocol.Encode(&msig),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// postMultisigProgramSignHandler handles `POST /v1/multisig/signprogram`
func postMultisigProgramSignHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation POST /v1/multisig/signprogram SignMultisigProgram
	//---
	//    Summary: Sign a program for a multisig account
	//    Description: >
	//      Start a multisig signature, or add a signature to a partially completed
	//      multisig signature object.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Sign Multisig Program Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/SignProgramMultisigRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/SignProgramMultisigResponse"
	var req kmdapi.APIV1POSTMultisigProgramSignRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Decode the address
	reqAddr, err := basics.UnmarshalChecksumAddress(req.Address)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecodeAddress)
		return
	}

	// Sign the transaction
	msig, err := wallet.MultisigSignProgram(req.Program, crypto.Digest(reqAddr), req.PublicKey, req.PartialMsig, []byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1POSTMultisigProgramSignResponse{
		Multisig: protocol.Encode(&msig),
	}

	// Return and encode the response
	successResponse(w, resp)
}

// deleteMultisigHandler handles `DELETE /v1/multisig`
func deleteMultisigHandler(ctx reqContext, w http.ResponseWriter, r *http.Request) {
	// swagger:operation DELETE /v1/multisig DeleteMultisig
	//---
	//    Summary: Delete a multisig
	//    Description: >
	//      Deletes multisig preimage information for the passed address from the wallet.
	//    Produces:
	//    - application/json
	//    Parameters:
	//      - name: Delete Multisig Request
	//        in: body
	//        required: true
	//        schema:
	//          "$ref": "#/definitions/DeleteMultisigRequest"
	//    Responses:
	//      "200":
	//        "$ref": "#/responses/DeleteMultisigResponse"
	var req kmdapi.APIV1DELETEMultisigRequest

	// Decode the request
	decoder := protocol.NewJSONDecoder(r.Body)
	err := decoder.Decode(&req)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecode)
		return
	}

	// Decode the address
	reqAddr, err := basics.UnmarshalChecksumAddress(req.Address)
	if err != nil {
		errorResponse(w, http.StatusBadRequest, errCouldNotDecodeAddress)
		return
	}

	// Fetch the wallet from the WalletHandleToken
	wallet, _, err := ctx.sm.AuthWithWalletHandleToken([]byte(req.WalletHandleToken))
	if err != nil {
		errorResponse(w, http.StatusUnauthorized, err)
		return
	}

	// Delete the key
	err = wallet.DeleteMultisigAddr(crypto.Digest(reqAddr), []byte(req.WalletPassword))
	if err != nil {
		errorResponse(w, http.StatusBadRequest, err)
		return
	}

	// Build the response
	resp := kmdapi.APIV1DELETEMultisigResponse{}

	// Return and encode the response
	successResponse(w, resp)
}

// wrapCtx is used to pass common context to each request without using any
// global variables.
func wrapCtx(ctx reqContext, handler func(reqContext, http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
	return func(w http.ResponseWriter, r *http.Request) {
		handler(ctx, w, r)
	}
}

// reqCallbackMiddlware calls the reqCB function once per request that passes
// through. We use this in server.go to kick a watchdog timer, so that we can
// kill kmd if we haven't received a request in a while.
func reqCallbackMiddleware(reqCB func()) func(http.Handler) http.Handler {
	return func(next http.Handler) http.Handler {
		return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
			// Call the callback
			reqCB()
			// Serve the request
			next.ServeHTTP(w, r)
		})
	}
}

// RegisterHandlers sets up the API handlers on the passed router
func RegisterHandlers(router *mux.Router, sm *session.Manager, log logging.Logger, apiToken string, reqCB func()) {
	// All /v1 requests require a valid auth token
	router.Use(authMiddleware(log, apiToken))

	// reqCB gets called each time a request matches a route
	router.Use(reqCallbackMiddleware(reqCB))

	// ctx holds the global context passed to each of the handlers
	ctx := reqContext{
		sm: sm,
	}

	router.HandleFunc("/wallets", wrapCtx(ctx, getWalletsHandler)).Methods("GET")
	router.HandleFunc("/wallet", wrapCtx(ctx, postWalletHandler)).Methods("POST")
	router.HandleFunc("/wallet/init", wrapCtx(ctx, postWalletInitHandler)).Methods("POST")
	router.HandleFunc("/wallet/release", wrapCtx(ctx, postWalletReleaseHandler)).Methods("POST")
	router.HandleFunc("/wallet/renew", wrapCtx(ctx, postWalletRenewHandler)).Methods("POST")
	router.HandleFunc("/wallet/rename", wrapCtx(ctx, postWalletRenameHandler)).Methods("POST")
	router.HandleFunc("/wallet/info", wrapCtx(ctx, postWalletInfoHandler)).Methods("POST")
	router.HandleFunc("/master-key/export", wrapCtx(ctx, postMasterKeyExportHandler)).Methods("POST")

	router.HandleFunc("/key/list", wrapCtx(ctx, postKeyListHandler)).Methods("POST")
	router.HandleFunc("/key/import", wrapCtx(ctx, postKeyImportHandler)).Methods("POST")
	router.HandleFunc("/key/export", wrapCtx(ctx, postKeyExportHandler)).Methods("POST")
	router.HandleFunc("/key", wrapCtx(ctx, postKeyHandler)).Methods("POST")
	router.HandleFunc("/key", wrapCtx(ctx, deleteKeyHandler)).Methods("DELETE")

	router.HandleFunc("/multisig/list", wrapCtx(ctx, postMultisigListHandler)).Methods("POST")
	router.HandleFunc("/multisig/sign", wrapCtx(ctx, postMultisigTransactionSignHandler)).Methods("POST")
	router.HandleFunc("/multisig/signprogram", wrapCtx(ctx, postMultisigProgramSignHandler)).Methods("POST")
	router.HandleFunc("/multisig/import", wrapCtx(ctx, postMultisigImportHandler)).Methods("POST")
	router.HandleFunc("/multisig/export", wrapCtx(ctx, postMultisigExportHandler)).Methods("POST")
	router.HandleFunc("/multisig", wrapCtx(ctx, deleteMultisigHandler)).Methods("DELETE")

	router.HandleFunc("/transaction/sign", wrapCtx(ctx, postTransactionSignHandler)).Methods("POST")
	router.HandleFunc("/program/sign", wrapCtx(ctx, postProgramSignHandler)).Methods("POST")
}