-
Notifications
You must be signed in to change notification settings - Fork 22
/
json_args.go
112 lines (97 loc) · 3.57 KB
/
json_args.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
// Copyright (C) 2023 Gobalsky Labs Limited
//
// This program 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.
//
// This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
package ethcall
import (
"bytes"
"encoding/json"
"fmt"
"reflect"
"unsafe"
"github.com/ethereum/go-ethereum/accounts/abi"
)
// JsonArgsToAny takes a list of arguments marshalled as JSON strings.
// It then uses the ethereum ABI to convert each JSON argument into the go type
// which corresponds to the ethereum type defined in the ABI for that argument.
func JsonArgsToAny(methodName string, jsonArgs []string, abiJSON []byte) ([]any, error) {
abi, err := abi.JSON(bytes.NewReader(abiJSON))
if err != nil {
return nil, fmt.Errorf("unable to parse abi json: %w", err)
}
methodAbi, ok := abi.Methods[methodName]
if !ok {
return nil, fmt.Errorf("method %s not found in abi", methodName)
}
inputsAbi := methodAbi.Inputs
if len(inputsAbi) != len(jsonArgs) {
return nil, fmt.Errorf("expected %v arguments for method %s, got %v", len(inputsAbi), methodName, len(jsonArgs))
}
args := []any{}
for i, jsonArg := range jsonArgs {
argType := inputsAbi[i].Type.GetType()
argIsPointer := argType.Kind() == reflect.Pointer
if argIsPointer {
argType = argType.Elem()
}
newArgValue := reflect.New(argType) // A reflect.Value of kind 'Pointer' to new instance of argType
// here we handle specifically this type because the type returned by GetType() method
// is a [32]uint8, which is not assignable by the json marshaller
// we then instantiate specifically a []byte
// then set the reflect instatiated type with unsafe (...) by addressing to the first
// element of the byte slice
if argType.String() == "[32]uint8" {
b := []byte{}
err := json.Unmarshal([]byte(jsonArg), &b)
if err != nil {
return nil, fmt.Errorf("unable to unmarshal json argument %s: %w", jsonArg, err)
}
newArgValue = reflect.NewAt(argType, unsafe.Pointer(&b[0]))
} else {
err := json.Unmarshal([]byte(jsonArg), newArgValue.Interface())
if err != nil {
return nil, fmt.Errorf("unable to unmarshal json argument %s: %w", jsonArg, err)
}
}
if argIsPointer {
args = append(args, newArgValue.Interface())
} else {
args = append(args, newArgValue.Elem().Interface())
}
}
return args, nil
}
// AnyArgsToJson does the inverse of the JsonArgsToAny; takes a list of arguments in go types
// and marshals them to a list of JSON strings.
func AnyArgsToJson(args []any) ([]string, error) {
result := make([]string, 0, len(args))
for _, arg := range args {
argJSON, err := json.Marshal(arg)
if err != nil {
return []string{}, fmt.Errorf("failed to json marshall args to JSON: %w", err)
}
result = append(result, string(argJSON))
}
return result, nil
}
func CanonicalizeJSON(in []byte) ([]byte, error) {
var data interface{}
if err := json.Unmarshal(in, &data); err != nil {
return nil, fmt.Errorf("failed to unmarshal json: %w", err)
}
out, err := json.Marshal(data)
if err != nil {
return nil, fmt.Errorf("failed to marshal json: %w", err)
}
return out, nil
}