-
Notifications
You must be signed in to change notification settings - Fork 127
/
validation.go
73 lines (64 loc) · 1.78 KB
/
validation.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
package bitcoin
import (
"encoding/hex"
"fmt"
"strings"
"github.com/MixinNetwork/mixin/crypto"
"github.com/btcsuite/btcd/chaincfg"
"github.com/btcsuite/btcutil"
)
const (
BitcoinChainAssetKey = "c6d0c728-2624-429b-8e0d-d9d19b6592fa"
BitcoinOmniUSDTAssetKey = "815b0b1a-2764-3736-8faa-42d694fa620a"
)
var (
BitcoinChainId crypto.Hash
BitcoinOmniUSDTId crypto.Hash
)
func init() {
BitcoinChainId = crypto.NewHash([]byte(BitcoinChainAssetKey))
BitcoinOmniUSDTId = crypto.NewHash([]byte(BitcoinOmniUSDTAssetKey))
}
func VerifyAssetKey(assetKey string) error {
if assetKey == BitcoinChainAssetKey || assetKey == BitcoinOmniUSDTAssetKey {
return nil
}
return fmt.Errorf("invalid bitcoin asset key %s", assetKey)
}
func VerifyAddress(address string) error {
address = strings.TrimSpace(address)
btcAddress, err := btcutil.DecodeAddress(address, &chaincfg.MainNetParams)
if err != nil {
return fmt.Errorf("invalid bitcoin address %s %s", address, err.Error())
}
if btcAddress.String() != address {
return fmt.Errorf("invalid bitcoin address %s %s", btcAddress.String(), address)
}
return nil
}
func VerifyTransactionHash(hash string) error {
if len(hash) != 64 {
return fmt.Errorf("invalid bitcoin transaction hash %s", hash)
}
if strings.ToLower(hash) != hash {
return fmt.Errorf("invalid bitcoin transaction hash %s", hash)
}
h, err := hex.DecodeString(hash)
if err != nil {
return fmt.Errorf("invalid bitcoin transaction hash %s %s", hash, err.Error())
}
if len(h) != 32 {
return fmt.Errorf("invalid bitcoin transaction hash %s", hash)
}
return nil
}
func GenerateAssetId(assetKey string) crypto.Hash {
switch assetKey {
case BitcoinChainAssetKey:
return BitcoinChainId
case BitcoinOmniUSDTAssetKey:
return BitcoinOmniUSDTId
default:
panic(assetKey)
}
}