forked from streamingfast/eth-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.go
75 lines (65 loc) · 2.02 KB
/
utils.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
// Copyright 2021 dfuse Platform Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eth
import (
"encoding/hex"
"fmt"
"strings"
)
// SanitizeHex removes the prefix `0x` if it exists
// and ensures there is an even number of characters in the string,
// padding on the left of the string is it's not the case.
func SanitizeHex(input string) string {
if Has0xPrefix(input) {
input = input[2:]
}
if len(input)%2 != 0 {
input = "0" + input
}
return strings.ToLower(input)
}
// CanonicalHex receives an input and return it's canonical form,
// i.e. the single unique well-formed which in our case is an all-lower
// case version with even number of characters.
//
// The only differences with `SanitizeHexInput` here is an additional
// call to `strings.ToLower` before returning the result.
func CanonicalHex(input string) string {
return strings.ToLower(SanitizeHex(input))
}
func Has0xPrefix(input string) bool {
return len(input) >= 2 && input[0] == '0' && (input[1] == 'x' || input[1] == 'X')
}
// PrefixedHex is CanonicalHex but with 0x prefix
func PrefixedHex(input string) string {
return "0x" + CanonicalHex(input)
}
// ConcatHex concatenates sanitized hex strings
func ConcatHex(with0x bool, in ...string) (out string) {
if with0x {
out = "0x"
}
for _, s := range in {
out += SanitizeHex(s)
}
return
}
func MustDecodeString(hexStr string) []byte {
hexStr = SanitizeHex(hexStr)
d, err := hex.DecodeString(hexStr)
if err != nil {
panic(fmt.Errorf("unable to decode hex string: %w", err))
}
return d
}