forked from nanmu42/etherscan-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helper.go
92 lines (75 loc) · 1.96 KB
/
helper.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
/*
* Copyright (c) 2018 LI Zhennan
*
* Use of this work is governed by a MIT License.
* You may find a license copy in project root.
*/
package etherscan
import (
"math/big"
"reflect"
"strconv"
"time"
)
// compose adds input to param, whose key is tag
// if input is nil or nil of some type, compose is a no-op.
func compose(param map[string]interface{}, tag string, input interface{}) {
// simple situation
if input == nil {
return
}
// needs dig further
v := reflect.ValueOf(input)
switch v.Kind() {
case reflect.Ptr, reflect.Slice, reflect.Interface:
if v.IsNil() {
return
}
}
param[tag] = input
}
// M is a type shorthand for param input
type M map[string]interface{}
// BigInt is a wrapper over big.Int to implement only unmarshalText
// for json decoding.
type BigInt big.Int
// UnmarshalText implements the encoding.TextUnmarshaler interface.
func (b *BigInt) UnmarshalText(text []byte) (err error) {
var bigInt = new(big.Int)
err = bigInt.UnmarshalText(text)
if err != nil {
return
}
*b = BigInt(*bigInt)
return nil
}
// MarshalText implements the encoding.TextMarshaler
func (b *BigInt) MarshalText() (text []byte, err error) {
return []byte(b.Int().String()), nil
}
// Int returns b's *big.Int form
func (b *BigInt) Int() *big.Int {
return (*big.Int)(b)
}
// Time is a wrapper over big.Int to implement only unmarshalText
// for json decoding.
type Time time.Time
// UnmarshalText implements the encoding.TextUnmarshaler interface.
func (t *Time) UnmarshalText(text []byte) (err error) {
input, err := strconv.ParseInt(string(text), 10, 64)
if err != nil {
err = wrapErr(err, "strconv.ParseInt")
return
}
var timestamp = time.Unix(input, 0)
*t = Time(timestamp)
return nil
}
// Time returns t's time.Time form
func (t Time) Time() time.Time {
return time.Time(t)
}
// MarshalText implements the encoding.TextMarshaler
func (t Time) MarshalText() (text []byte, err error) {
return []byte(strconv.FormatInt(t.Time().Unix(), 10)), nil
}