-
Notifications
You must be signed in to change notification settings - Fork 94
/
types.go
1234 lines (1116 loc) · 38.5 KB
/
types.go
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
// This code is available on the terms of the project LICENSE.md file,
// also available online at https://blueoakcouncil.org/license/1.0.0.
package db
import (
"bytes"
"fmt"
"math"
"os"
"strconv"
"strings"
"time"
"decred.org/dcrdex/client/asset"
"decred.org/dcrdex/dex"
"decred.org/dcrdex/dex/config"
"decred.org/dcrdex/dex/encode"
"decred.org/dcrdex/dex/order"
"github.com/decred/dcrd/dcrec/secp256k1/v4"
"golang.org/x/crypto/blake2s"
)
// Severity indicates the level of required action for a notification. The DEX
// db only stores notifications with Severity >= Success.
type Severity uint8
const (
Ignorable Severity = iota
// Data notifications are not meant for display to the user. These
// notifications are used only for communication of information necessary for
// UI updates or other high-level state changes.
Data
// Poke notifications are not persistent across sessions. These should be
// displayed if the user has a live notification feed. They are not stored in
// the database.
Poke
// Success and higher are stored and can be recalled using DB.NotificationsN.
Success
WarningLevel
ErrorLevel
)
const (
ErrNoCredentials = dex.ErrorKind("no credentials have been stored")
ErrAcctNotFound = dex.ErrorKind("account not found")
ErrNoSeedGenTime = dex.ErrorKind("seed generation time has not been stored")
)
// String satisfies fmt.Stringer for Severity.
func (s Severity) String() string {
switch s {
case Ignorable:
return "ignore"
case Data:
return "data"
case Poke:
return "poke"
case WarningLevel:
return "warning"
case ErrorLevel:
return "error"
case Success:
return "success"
}
return "unknown severity"
}
// PrimaryCredentials should be created during app initialization. Both the seed
// and the inner key (and technically the other two fields) should be generated
// with a cryptographically-secure prng.
type PrimaryCredentials struct {
// EncSeed is the root seed used to create a hierarchical deterministic
// key chain (see also dcrd/hdkeychain.NewMaster/ExtendedKey).
EncSeed []byte
// EncInnerKey is an encrypted encryption key. The inner key will never
// change. The inner key is encrypted with the outer key, which itself is
// based on the user's password.
EncInnerKey []byte
// InnerKeyParams are the key parameters for the inner key.
InnerKeyParams []byte
// OuterKeyParams are the key parameters for the outer key.
OuterKeyParams []byte
}
// when updating to bonds, default to 42 (DCR)
const defaultBondAsset = 42
// BondUID generates a unique identifier from a bond's asset ID and coin ID.
func BondUID(assetID uint32, bondCoinID []byte) []byte {
return hashKey(append(uint32Bytes(assetID), bondCoinID...))
}
// Bond is stored in a sub-bucket of an account bucket. The dex.Bytes type is
// used for certain fields so that the data marshals to/from hexadecimal.
type Bond struct {
Version uint16 `json:"ver"`
AssetID uint32 `json:"asset"`
CoinID dex.Bytes `json:"coinID"`
UnsignedTx dex.Bytes `json:"utx"`
SignedTx dex.Bytes `json:"stx"` // can be obtained from msgjson.Bond.CoinID
Data dex.Bytes `json:"data"` // e.g. redeem script
Amount uint64 `json:"amt"`
LockTime uint64 `json:"lockTime"`
KeyIndex uint32 `json:"keyIndex"` // child key index for HD path: m / hdKeyPurposeBonds / assetID' / bondIndex
RefundTx dex.Bytes `json:"refundTx"` // pays to wallet that created it - only a backup for emergency!
Confirmed bool `json:"confirmed"` // if reached required confs according to server, not in serialization
Refunded bool `json:"refunded"` // not in serialization
}
// UniqueID computes the bond's unique ID for keying purposes.
func (b *Bond) UniqueID() []byte {
return BondUID(b.AssetID, b.CoinID)
}
// Encode serialized the Bond. Confirmed and Refund are not included.
func (b *Bond) Encode() []byte {
return versionedBytes(1).
AddData(uint16Bytes(b.Version)).
AddData(uint32Bytes(b.AssetID)).
AddData(b.CoinID).
AddData(b.UnsignedTx).
AddData(b.SignedTx).
AddData(b.Data).
AddData(uint64Bytes(b.Amount)).
AddData(uint64Bytes(b.LockTime)).
AddData(uint32Bytes(b.KeyIndex)).
AddData(b.RefundTx)
// Confirmed and Refunded are not part of the encoding.
}
// DecodeBond decodes the versioned blob into a *Bond.
func DecodeBond(b []byte) (*Bond, error) {
ver, pushes, err := encode.DecodeBlob(b)
if err != nil {
return nil, err
}
switch ver {
case 0:
return decodeBond_v0(pushes)
case 1:
return decodeBond_v1(pushes)
}
return nil, fmt.Errorf("unknown Bond version %d", ver)
}
// decodeBond_v0 handles the unreleased v0 db.Bond format that did spend some
// notable time on master. The app will recognize the special KeyIndex value and
// use the RefundTx instead, if there were were any unspent bonds at time of
// upgrade, but this is mainly so we can decode the v0 blobs.
func decodeBond_v0(pushes [][]byte) (*Bond, error) {
if len(pushes) != 10 {
return nil, fmt.Errorf("decodeBond_v0: expected 10 data pushes, got %d", len(pushes))
}
ver, assetIDB, coinID := pushes[0], pushes[1], pushes[2]
utx, stx := pushes[3], pushes[4]
data, amtB, lockTimeB := pushes[5], pushes[6], pushes[7]
// privKey := pushes[8] // in v0, so we will use the refundTx to handle this unreleased revision without deleting out DB files
refundTx := pushes[9]
return &Bond{
Version: intCoder.Uint16(ver),
AssetID: intCoder.Uint32(assetIDB),
CoinID: coinID,
UnsignedTx: utx,
SignedTx: stx,
Data: data,
Amount: intCoder.Uint64(amtB),
LockTime: intCoder.Uint64(lockTimeB),
KeyIndex: math.MaxUint32, // special
RefundTx: refundTx,
}, nil
}
func decodeBond_v1(pushes [][]byte) (*Bond, error) {
if len(pushes) != 10 {
return nil, fmt.Errorf("decodeBond_v0: expected 10 data pushes, got %d", len(pushes))
}
ver, assetIDB, coinID := pushes[0], pushes[1], pushes[2]
utx, stx := pushes[3], pushes[4]
data, amtB, lockTimeB := pushes[5], pushes[6], pushes[7]
keyIndex, refundTx := pushes[8], pushes[9]
return &Bond{
Version: intCoder.Uint16(ver),
AssetID: intCoder.Uint32(assetIDB),
CoinID: coinID,
UnsignedTx: utx,
SignedTx: stx,
Data: data,
Amount: intCoder.Uint64(amtB),
LockTime: intCoder.Uint64(lockTimeB),
KeyIndex: intCoder.Uint32(keyIndex),
RefundTx: refundTx,
}, nil
}
// AccountInfo is information about an account on a Decred DEX. The database
// is designed for one account per server.
type AccountInfo struct {
// Host, Cert, and DEXPubKey identify the DEX server.
Host string
Cert []byte
DEXPubKey *secp256k1.PublicKey
// EncKeyV2 is an encrypted private key generated deterministically from the
// app seed.
EncKeyV2 []byte
// LegacyEncKey is an old-style non-hierarchical key that must be included
// when exporting the client credentials, since it cannot be regenerated
// automatically.
LegacyEncKey []byte
Bonds []*Bond
TargetTier uint64 // zero means no bond maintenance (allows actual tier to drop negative)
MaxBondedAmt uint64
BondAsset uint32 // the asset to use when auto-posting bonds
// DEPRECATED reg fee data. Bond txns are in a sub-bucket.
// LegacyFeeCoin is the a legacy registration fee coin ID.
LegacyFeeCoin []byte
LegacyFeeAssetID uint32
// LegacyFeePaid should be set on retrieval if there is an AccountProof set.
LegacyFeePaid bool // DEPRECATED
}
// Encode the AccountInfo as bytes. NOTE: remove deprecated fee fields and do a
// DB upgrade at some point. But how to deal with old accounts needing to store
// this data forever?
func (ai *AccountInfo) Encode() []byte {
return versionedBytes(3).
AddData([]byte(ai.Host)).
AddData(ai.Cert).
AddData(ai.DEXPubKey.SerializeCompressed()).
AddData(ai.EncKeyV2).
AddData(ai.LegacyEncKey).
AddData(encode.Uint64Bytes(ai.TargetTier)).
AddData(encode.Uint64Bytes(ai.MaxBondedAmt)).
AddData(encode.Uint32Bytes(ai.BondAsset)).
AddData(encode.Uint32Bytes(ai.LegacyFeeAssetID)).
AddData(ai.LegacyFeeCoin)
}
// ViewOnly is true if account keys are not saved.
func (ai *AccountInfo) ViewOnly() bool {
return len(ai.EncKey()) == 0
}
// EncKey is the encrypted account private key.
func (ai *AccountInfo) EncKey() []byte {
if len(ai.EncKeyV2) > 0 {
return ai.EncKeyV2
}
return ai.LegacyEncKey
}
// DecodeAccountInfo decodes the versioned blob into an *AccountInfo. The byte
// slice fields of AccountInfo reference the underlying buffer of the the input.
func DecodeAccountInfo(b []byte) (*AccountInfo, error) {
ver, pushes, err := encode.DecodeBlob(b)
if err != nil {
return nil, err
}
switch ver {
case 0:
return decodeAccountInfo_v0(pushes) // caller must decode account proof
case 1:
return decodeAccountInfo_v1(pushes)
case 2:
return decodeAccountInfo_v2(pushes)
case 3:
return decodeAccountInfo_v3(pushes)
}
return nil, fmt.Errorf("unknown AccountInfo version %d", ver)
}
func decodeAccountInfo_v0(pushes [][]byte) (*AccountInfo, error) {
return decodeAccountInfo_v1(append(pushes, nil))
}
func decodeAccountInfo_v1(pushes [][]byte) (*AccountInfo, error) {
if len(pushes) != 6 {
return nil, fmt.Errorf("decodeAccountInfo: expected 6 data pushes, got %d", len(pushes))
}
hostB, legacyKeyB, dexB := pushes[0], pushes[1], pushes[2]
coinB, certB, v2Key := pushes[3], pushes[4], pushes[5]
pk, err := secp256k1.ParsePubKey(dexB)
if err != nil {
return nil, err
}
return &AccountInfo{
Host: string(hostB),
Cert: certB,
DEXPubKey: pk,
EncKeyV2: v2Key,
LegacyEncKey: legacyKeyB,
LegacyFeeAssetID: 42, // only option at this version
LegacyFeeCoin: coinB,
// LegacyFeePaid comes from AccountProof.
}, nil
}
func decodeAccountInfo_v2(pushes [][]byte) (*AccountInfo, error) {
if len(pushes) != 7 {
return nil, fmt.Errorf("decodeAccountInfo: expected 7 data pushes, got %d", len(pushes))
}
hostB, certB, dexPkB := pushes[0], pushes[1], pushes[2] // dex identity
v2Key, legacyKeyB := pushes[3], pushes[4] // account identity
regAssetB, coinB := pushes[5], pushes[6] // legacy reg fee data
pk, err := secp256k1.ParsePubKey(dexPkB)
if err != nil {
return nil, err
}
return &AccountInfo{
Host: string(hostB),
Cert: certB,
DEXPubKey: pk,
EncKeyV2: v2Key,
LegacyEncKey: legacyKeyB,
// Bonds decoded by DecodeBond from separate pushes.
BondAsset: defaultBondAsset,
LegacyFeeAssetID: intCoder.Uint32(regAssetB),
LegacyFeeCoin: coinB, // NOTE: no longer in current serialization.
// LegacyFeePaid comes from AccountProof.
}, nil
}
func decodeAccountInfo_v3(pushes [][]byte) (*AccountInfo, error) {
if len(pushes) != 10 {
return nil, fmt.Errorf("decodeAccountInfo: expected 10 data pushes, got %d", len(pushes))
}
hostB, certB, dexPkB := pushes[0], pushes[1], pushes[2] // dex identity
v2Key, legacyKeyB := pushes[3], pushes[4] // account identity
targetTierB, maxBondedB, bondAssetB := pushes[5], pushes[6], pushes[7] // bond options
regAssetB, coinB := pushes[8], pushes[9] // legacy reg fee data
pk, err := secp256k1.ParsePubKey(dexPkB)
if err != nil {
return nil, err
}
return &AccountInfo{
Host: string(hostB),
Cert: certB,
DEXPubKey: pk,
EncKeyV2: v2Key,
LegacyEncKey: legacyKeyB,
// Bonds decoded by DecodeBond from separate pushes.
TargetTier: intCoder.Uint64(targetTierB),
MaxBondedAmt: intCoder.Uint64(maxBondedB),
BondAsset: intCoder.Uint32(bondAssetB),
LegacyFeeAssetID: intCoder.Uint32(regAssetB),
LegacyFeeCoin: coinB, // NOTE: no longer in current serialization.
// LegacyFeePaid comes from AccountProof.
}, nil
}
// AccountProof is information necessary to prove that the DEX server accepted
// the account's fee payment. The fee coin is not part of the proof, since it
// is already stored as part of the AccountInfo blob. DEPRECATED.
type AccountProof struct {
Host string
Stamp uint64
Sig []byte
}
// Encode encodes the AccountProof to a versioned blob.
func (p *AccountProof) Encode() []byte {
return versionedBytes(0).
AddData([]byte(p.Host)).
AddData(uint64Bytes(p.Stamp)).
AddData(p.Sig)
}
// DecodeAccountProof decodes the versioned blob to a *MatchProof.
func DecodeAccountProof(b []byte) (*AccountProof, error) {
ver, pushes, err := encode.DecodeBlob(b)
if err != nil {
return nil, err
}
switch ver {
case 0:
return decodeAccountProof_v0(pushes)
}
return nil, fmt.Errorf("unknown AccountProof version %d", ver)
}
func decodeAccountProof_v0(pushes [][]byte) (*AccountProof, error) {
if len(pushes) != 3 {
return nil, fmt.Errorf("decodeAccountProof_v0: expected 3 pushes, got %d", len(pushes))
}
hostB, stampB := pushes[0], pushes[1]
return &AccountProof{
Host: string(hostB),
Stamp: intCoder.Uint64(stampB),
Sig: pushes[2],
}, nil
}
// MetaOrder is an order and its metadata.
type MetaOrder struct {
// MetaData is important auxiliary information about the order.
MetaData *OrderMetaData
// Order is the order.
Order order.Order
}
// OrderMetaData is important auxiliary information about an order.
type OrderMetaData struct {
// Status is the last known order status.
Status order.OrderStatus
// Host is the hostname of the server that this order is associated with.
Host string
// Proof is the signatures and other verification-related data for the order.
Proof OrderProof
// ChangeCoin is a change coin from a match. Change coins are "daisy-chained"
// for matches. All funding coins go into the first match, and the change coin
// from the initiation transaction is used to fund the next match. The
// change from that matches ini tx funds the next match, etc.
ChangeCoin order.CoinID
// LinkedOrder is used to specify the cancellation order for a trade, or
// vice-versa.
LinkedOrder order.OrderID
// SwapFeesPaid is the sum of the actual fees paid for all swaps.
SwapFeesPaid uint64
// RedemptionFeesPaid is the sum of the actual fees paid for all
// redemptions.
RedemptionFeesPaid uint64
// EpochDur is the epoch duration for the market at the time the order was
// submitted. When considered with the order's ServerTime, we also know the
// epoch index, which is helpful for determining if an epoch order should
// have been matched. WARNING: may load from DB as zero for older orders, in
// which case the current asset config should be used.
EpochDur uint64
// We store any variable information of each dex.Asset (the server's asset
// config at time of order). This includes: the max fee rates for swap and
// redeem, and the asset versions, and the required swap confirmations
// counts.
// FromSwapConf and ToSwapConf are the dex.Asset.SwapConf values at the time
// the order is submitted. WARNING: may load from DB as zero for older
// orders, in which case the current asset config should be used.
FromSwapConf uint32
ToSwapConf uint32
// MaxFeeRate is the dex.Asset.MaxFeeRate at the time of ordering. The rates
// assigned to matches will be validated against this value.
MaxFeeRate uint64
// RedeemMaxFeeRate is the dex.Asset.MaxFeeRate for the redemption asset at
// the time of ordering. This rate is used to reserve funds for redemption,
// and therefore this rate can be used when actually submitting a redemption
// transaction.
RedeemMaxFeeRate uint64
// FromVersion is the version of the from asset.
FromVersion uint32
// ToVersion is the version of the to asset.
ToVersion uint32
// Options are the options offered by the wallet and selected by the user.
Options map[string]string
// RedemptionReserves is the amount of funds reserved by the wallet to pay
// the transaction fees for all the possible redemptions in this order.
// The amount that should be locked at any point can be determined by
// checking the status of the order and the status of all matches related
// to this order, and determining how many more possible redemptions there
// could be.
RedemptionReserves uint64
// RedemptionRefunds is the amount of funds reserved by the wallet to pay
// the transaction fees for all the possible refunds in this order.
// The amount that should be locked at any point can be determined by
// checking the status of the order and the status of all matches related
// to this order, and determining how many more possible refunds there
// could be.
RefundReserves uint64
// AccelerationCoins keeps track of all the change coins generated from doing
// accelerations on this order.
AccelerationCoins []order.CoinID
// ProgramID is a program ID used to identify the bot program that owns
// this order.
ProgramID uint64
}
// MetaMatch is a match and its metadata.
type MetaMatch struct {
// UserMatch is the match info.
*order.UserMatch
// MetaData is important auxiliary information about the match.
MetaData *MatchMetaData
}
// MatchOrderUniqueID is a unique ID for the match-order pair.
func (m *MetaMatch) MatchOrderUniqueID() []byte {
return hashKey(append(m.MatchID[:], m.OrderID[:]...))
}
// MatchIsActive returns false (i.e. the match is inactive) if any: (1) status
// is MatchConfirmed OR InitSig unset, signaling a cancel order match, which is
// never active), (2) the match is refunded, or (3) it is revoked and this side
// of the match requires no further action like refund or auto-redeem.
func MatchIsActive(match *order.UserMatch, proof *MatchProof) bool {
// MatchComplete only means inactive if: (a) cancel order match or (b) the
// redeem request was accepted for trade orders. A cancel order match starts
// complete and has no InitSig as their is no swap negotiation.
// Unfortunately, an empty Address is not sufficient since taker cancel
// matches included the makers Address.
if match.Status == order.MatchConfirmed {
return false
}
// Cancel match
if match.Status == order.MatchComplete && len(proof.Auth.InitSig) == 0 {
return false
}
// Refunded matches are inactive regardless of status.
if len(proof.RefundCoin) > 0 {
return false
}
// Revoked matches may need to be refunded or auto-redeemed first.
if proof.IsRevoked() {
// - NewlyMatched requires no further action from either side
// - MakerSwapCast requires no further action from the taker
// - (TakerSwapCast requires action on both sides)
// Matches that make it to MakerRedeemed or MatchComplete must
// stay active until the redeem is confirmed. When the redeem
// is confirmed is up to the asset and differs between assets.
status, side := match.Status, match.Side
if status == order.NewlyMatched ||
(status == order.MakerSwapCast && side == order.Taker) {
return false
}
}
return true
}
// MatchIsActiveV6Upgrade is the previous version of MatchIsActive that is
// required for the V6 upgrade of the DB.
func MatchIsActiveV6Upgrade(match *order.UserMatch, proof *MatchProof) bool {
// MatchComplete only means inactive if: (a) cancel order match or (b) the
// redeem request was accepted for trade orders. A cancel order match starts
// complete and has no InitSig as their is no swap negotiation.
// Unfortunately, an empty Address is not sufficient since taker cancel
// matches included the makers Address.
if match.Status == order.MatchComplete && (len(proof.Auth.RedeemSig) > 0 || // completed trade
len(proof.Auth.InitSig) == 0) { // completed cancel
return false
}
// Refunded matches are inactive regardless of status.
if len(proof.RefundCoin) > 0 {
return false
}
// Revoked matches may need to be refunded or auto-redeemed first.
if proof.IsRevoked() {
// - NewlyMatched requires no further action from either side
// - MakerSwapCast requires no further action from the taker
// - (TakerSwapCast requires action on both sides)
// - MakerRedeemed requires no further action from the maker
// - MatchComplete requires no further action. This happens if taker
// does not have server's ack of their redeem request (RedeemSig).
status, side := match.Status, match.Side
if status == order.NewlyMatched || status == order.MatchComplete ||
(status == order.MakerSwapCast && side == order.Taker) ||
(status == order.MakerRedeemed && side == order.Maker) {
return false
}
}
return true
}
// MatchMetaData is important auxiliary information about the match.
type MatchMetaData struct {
// Proof is the signatures and other verification-related data for the match.
Proof MatchProof
// DEX is the URL of the server that this match is associated with.
DEX string
// Base is the base asset of the exchange market.
Base uint32
// Quote is the quote asset of the exchange market.
Quote uint32
// Stamp is the match time (ms UNIX), according to the server's 'match'
// request timestamp.
Stamp uint64
// TODO: ReceiveTime uint64 -- local time stamp for match age and time display
}
// MatchAuth holds the DEX signatures and timestamps associated with the
// messages in the negotiation process.
type MatchAuth struct {
MatchSig []byte
MatchStamp uint64
InitSig []byte
InitStamp uint64
AuditSig []byte
AuditStamp uint64
RedeemSig []byte
RedeemStamp uint64
RedemptionSig []byte
RedemptionStamp uint64
}
// MatchProof is information related to the progression of the swap negotiation
// process.
type MatchProof struct {
ContractData []byte
CounterContract []byte
CounterTxData []byte
SecretHash []byte
Secret []byte
MakerSwap order.CoinID
MakerRedeem order.CoinID
TakerSwap order.CoinID
TakerRedeem order.CoinID
RefundCoin order.CoinID
Auth MatchAuth
ServerRevoked bool
SelfRevoked bool
// SwapFeeConfirmed indicate the fees for this match have been
// confirmed and the value added to the trade.
SwapFeeConfirmed bool
// RedemptionFeeConfirmed indicate the fees for this match have been
// confirmed and the value added to the trade.
RedemptionFeeConfirmed bool
}
func boolByte(b bool) []byte {
if b {
return []byte{1}
}
return []byte{0}
}
// MatchProofVer is the current serialization version of a MatchProof.
const (
MatchProofVer = 3
matchProofPushes = 24
)
// Encode encodes the MatchProof to a versioned blob.
func (p *MatchProof) Encode() []byte {
auth := p.Auth
return versionedBytes(MatchProofVer).
AddData(p.ContractData).
AddData(p.CounterContract).
AddData(p.SecretHash).
AddData(p.Secret).
AddData(p.MakerSwap).
AddData(p.MakerRedeem).
AddData(p.TakerSwap).
AddData(p.TakerRedeem).
AddData(p.RefundCoin).
AddData(auth.MatchSig).
AddData(uint64Bytes(auth.MatchStamp)).
AddData(auth.InitSig).
AddData(uint64Bytes(auth.InitStamp)).
AddData(auth.AuditSig).
AddData(uint64Bytes(auth.AuditStamp)).
AddData(auth.RedeemSig).
AddData(uint64Bytes(auth.RedeemStamp)).
AddData(auth.RedemptionSig).
AddData(uint64Bytes(auth.RedemptionStamp)).
AddData(boolByte(p.ServerRevoked)).
AddData(boolByte(p.SelfRevoked)).
AddData(p.CounterTxData).
AddData(boolByte(p.SwapFeeConfirmed)).
AddData(boolByte(p.RedemptionFeeConfirmed))
}
// DecodeMatchProof decodes the versioned blob to a *MatchProof.
func DecodeMatchProof(b []byte) (*MatchProof, uint8, error) {
ver, pushes, err := encode.DecodeBlob(b, matchProofPushes)
if err != nil {
return nil, 0, err
}
switch ver {
case 3: // MatchProofVer
proof, err := decodeMatchProof_v3(pushes)
return proof, ver, err
case 2:
proof, err := decodeMatchProof_v2(pushes)
return proof, ver, err
case 1:
proof, err := decodeMatchProof_v1(pushes)
return proof, ver, err
case 0:
proof, err := decodeMatchProof_v0(pushes)
return proof, ver, err
}
return nil, ver, fmt.Errorf("unknown MatchProof version %d", ver)
}
func decodeMatchProof_v0(pushes [][]byte) (*MatchProof, error) {
pushes = append(pushes, encode.ByteFalse)
return decodeMatchProof_v1(pushes)
}
func decodeMatchProof_v1(pushes [][]byte) (*MatchProof, error) {
pushes = append(pushes, nil)
return decodeMatchProof_v2(pushes)
}
func decodeMatchProof_v2(pushes [][]byte) (*MatchProof, error) {
// Add the MatchProof SwapFeeConfirmed and RedemptionFeeConfirmed bytes.
// True because all fees until now are comfirmed.
pushes = append(pushes, encode.ByteTrue, encode.ByteTrue)
return decodeMatchProof_v3(pushes)
}
func decodeMatchProof_v3(pushes [][]byte) (*MatchProof, error) {
if len(pushes) != matchProofPushes {
return nil, fmt.Errorf("DecodeMatchProof: expected %d pushes, got %d",
matchProofPushes, len(pushes))
}
return &MatchProof{
ContractData: pushes[0],
CounterContract: pushes[1],
CounterTxData: pushes[21],
SecretHash: pushes[2],
Secret: pushes[3],
MakerSwap: pushes[4],
MakerRedeem: pushes[5],
TakerSwap: pushes[6],
TakerRedeem: pushes[7],
RefundCoin: pushes[8],
Auth: MatchAuth{
MatchSig: pushes[9],
MatchStamp: intCoder.Uint64(pushes[10]),
InitSig: pushes[11],
InitStamp: intCoder.Uint64(pushes[12]),
AuditSig: pushes[13],
AuditStamp: intCoder.Uint64(pushes[14]),
RedeemSig: pushes[15],
RedeemStamp: intCoder.Uint64(pushes[16]),
RedemptionSig: pushes[17],
RedemptionStamp: intCoder.Uint64(pushes[18]),
},
ServerRevoked: bytes.Equal(pushes[19], encode.ByteTrue),
SelfRevoked: bytes.Equal(pushes[20], encode.ByteTrue),
SwapFeeConfirmed: bytes.Equal(pushes[21], encode.ByteTrue),
RedemptionFeeConfirmed: bytes.Equal(pushes[22], encode.ByteTrue),
}, nil
}
// IsRevoked is true if either ServerRevoked or SelfRevoked is true.
func (p *MatchProof) IsRevoked() bool {
return p.ServerRevoked || p.SelfRevoked
}
// OrderProof is information related to order authentication and matching.
type OrderProof struct {
DEXSig []byte
Preimage []byte
}
// Encode encodes the OrderProof to a versioned blob.
func (p *OrderProof) Encode() []byte {
return versionedBytes(0).AddData(p.DEXSig).AddData(p.Preimage)
}
// DecodeOrderProof decodes the versioned blob to an *OrderProof.
func DecodeOrderProof(b []byte) (*OrderProof, error) {
ver, pushes, err := encode.DecodeBlob(b)
if err != nil {
return nil, err
}
switch ver {
case 0:
return decodeOrderProof_v0(pushes)
}
return nil, fmt.Errorf("unknown OrderProof version %d", ver)
}
func decodeOrderProof_v0(pushes [][]byte) (*OrderProof, error) {
if len(pushes) != 2 {
return nil, fmt.Errorf("decodeOrderProof: expected 2 push, got %d", len(pushes))
}
return &OrderProof{
DEXSig: pushes[0],
Preimage: pushes[1],
}, nil
}
// encodeAssetBalance serializes an asset.Balance.
func encodeAssetBalance(bal *asset.Balance) []byte {
return versionedBytes(0).
AddData(uint64Bytes(bal.Available)).
AddData(uint64Bytes(bal.Immature)).
AddData(uint64Bytes(bal.Locked))
}
// decodeAssetBalance deserializes an asset.Balance.
func decodeAssetBalance(b []byte) (*asset.Balance, error) {
ver, pushes, err := encode.DecodeBlob(b)
if err != nil {
return nil, err
}
switch ver {
case 0:
return decodeAssetBalance_v0(pushes)
}
return nil, fmt.Errorf("unknown Balance version %d", ver)
}
func decodeAssetBalance_v0(pushes [][]byte) (*asset.Balance, error) {
if len(pushes) != 3 {
return nil, fmt.Errorf("decodeBalance_v0: expected 3 push, got %d", len(pushes))
}
return &asset.Balance{
Available: intCoder.Uint64(pushes[0]),
Immature: intCoder.Uint64(pushes[1]),
Locked: intCoder.Uint64(pushes[2]),
}, nil
}
// Balance represents a wallet's balance in various contexts.
type Balance struct {
asset.Balance
Stamp time.Time `json:"stamp"`
}
// Encode encodes the Balance to a versioned blob.
func (b *Balance) Encode() []byte {
return versionedBytes(0).
AddData(encodeAssetBalance(&b.Balance)).
AddData(uint64Bytes(uint64(b.Stamp.UnixMilli())))
}
// DecodeBalance decodes the versioned blob to a *Balance.
func DecodeBalance(b []byte) (*Balance, error) {
ver, pushes, err := encode.DecodeBlob(b)
if err != nil {
return nil, err
}
switch ver {
case 0:
return decodeBalance_v0(pushes)
}
return nil, fmt.Errorf("unknown Balance version %d", ver)
}
func decodeBalance_v0(pushes [][]byte) (*Balance, error) {
if len(pushes) < 2 {
return nil, fmt.Errorf("decodeBalances_v0: expected >= 2 pushes. got %d", len(pushes))
}
if len(pushes)%2 != 0 {
return nil, fmt.Errorf("decodeBalances_v0: expected an even number of pushes, got %d", len(pushes))
}
bal, err := decodeAssetBalance(pushes[0])
if err != nil {
return nil, fmt.Errorf("decodeBalances_v0: error decoding zero conf balance: %w", err)
}
return &Balance{
Balance: *bal,
Stamp: time.UnixMilli(int64(intCoder.Uint64(pushes[1]))),
}, nil
}
// Wallet is information necessary to create an asset.Wallet.
type Wallet struct {
AssetID uint32
Type string
Settings map[string]string
Balance *Balance
EncryptedPW []byte
Address string
Disabled bool
}
// Encode encodes the Wallet to a versioned blob.
func (w *Wallet) Encode() []byte {
return versionedBytes(1).
AddData(uint32Bytes(w.AssetID)).
AddData(config.Data(w.Settings)).
AddData(w.EncryptedPW).
AddData([]byte(w.Address)).
AddData([]byte(w.Type))
}
// DecodeWallet decodes the versioned blob to a *Wallet. The Balance is NOT set;
// the caller must retrieve it. See for example makeWallet and DecodeBalance.
func DecodeWallet(b []byte) (*Wallet, error) {
ver, pushes, err := encode.DecodeBlob(b)
if err != nil {
return nil, err
}
switch ver {
case 0:
return decodeWallet_v0(pushes)
case 1:
return decodeWallet_v1(pushes)
}
return nil, fmt.Errorf("unknown DecodeWallet version %d", ver)
}
func decodeWallet_v0(pushes [][]byte) (*Wallet, error) {
// Add a push for wallet type.
pushes = append(pushes, []byte(""))
return decodeWallet_v1(pushes)
}
func decodeWallet_v1(pushes [][]byte) (*Wallet, error) {
if len(pushes) != 5 {
return nil, fmt.Errorf("decodeWallet_v1: expected 5 pushes, got %d", len(pushes))
}
idB, settingsB, keyB := pushes[0], pushes[1], pushes[2]
addressB, typeB := pushes[3], pushes[4]
settings, err := config.Parse(settingsB)
if err != nil {
return nil, fmt.Errorf("unable to decode wallet settings")
}
return &Wallet{
AssetID: intCoder.Uint32(idB),
Type: string(typeB),
Settings: settings,
EncryptedPW: keyB,
Address: string(addressB),
}, nil
}
// ID is the byte-encoded asset ID for this wallet.
func (w *Wallet) ID() []byte {
return uint32Bytes(w.AssetID)
}
// SID is a string respresentation of the wallet's asset ID.
func (w *Wallet) SID() string {
return strconv.Itoa(int(w.AssetID))
}
func versionedBytes(v byte) encode.BuildyBytes {
return encode.BuildyBytes{v}
}
var uint64Bytes = encode.Uint64Bytes
var uint32Bytes = encode.Uint32Bytes
var uint16Bytes = encode.Uint16Bytes
var intCoder = encode.IntCoder
// AccountBackup represents a user account backup.
type AccountBackup struct {
KeyParams []byte
Accounts []*AccountInfo
}
// encodeDEXAccount serializes the details needed to backup a dex account.
func encodeDEXAccount(acct *AccountInfo) []byte {
return versionedBytes(1).
AddData([]byte(acct.Host)).
AddData(acct.LegacyEncKey).
AddData(acct.DEXPubKey.SerializeCompressed()).
AddData(acct.EncKeyV2)
}
// decodeDEXAccount decodes the versioned blob into an AccountInfo.
func decodeDEXAccount(acctB []byte) (*AccountInfo, error) {
ver, pushes, err := encode.DecodeBlob(acctB)
if err != nil {
return nil, err
}
switch ver {
case 0:
pushes = append(pushes, nil)
fallthrough
case 1:
if len(pushes) != 4 {
return nil, fmt.Errorf("expected 4 pushes, got %d", len(pushes))
}
var ai AccountInfo
ai.Host = string(pushes[0])
ai.LegacyEncKey = pushes[1]
ai.DEXPubKey, err = secp256k1.ParsePubKey(pushes[2])
ai.EncKeyV2 = pushes[3]
if err != nil {
return nil, err
}
return &ai, nil
}
return nil, fmt.Errorf("unknown DEX account version %d", ver)
}
// Serialize encodes an account backup as bytes.
func (ab *AccountBackup) Serialize() []byte {
backup := versionedBytes(0).AddData(ab.KeyParams)
for _, acct := range ab.Accounts {
backup = backup.AddData(encodeDEXAccount(acct))
}
return backup
}
// decodeAccountBackup decodes the versioned blob into an *AccountBackup.
func decodeAccountBackup(b []byte) (*AccountBackup, error) {
ver, pushes, err := encode.DecodeBlob(b)
if err != nil {
return nil, err
}