-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrevertreason.go
More file actions
72 lines (55 loc) · 1.53 KB
/
revertreason.go
File metadata and controls
72 lines (55 loc) · 1.53 KB
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
package revertreason
import (
"context"
"fmt"
"strings"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethclient"
)
func GetRevertReason(client *ethclient.Client, hash common.Hash) (string, error) {
tx, _, err := client.TransactionByHash(context.Background(), hash)
if err != nil {
return "", err
}
from, err := types.Sender(types.NewEIP155Signer(tx.ChainId()), tx)
if err != nil {
return "", err
}
msg := ethereum.CallMsg{
From: from,
To: tx.To(),
Gas: tx.Gas(),
GasPrice: tx.GasPrice(),
Value: tx.Value(),
Data: tx.Data(),
}
res, err := client.CallContract(context.Background(), msg, nil)
if err != nil {
if strings.Contains(err.Error(), "reverted"){
return err.Error(), nil
}
return "", err
}
return string(res), nil
}
func parseRevertReason(input []byte) (string, error) {
if len(input) < 4 {
return "", fmt.Errorf("invalid input")
}
// methodID := input[:4]
inputData := input[4:]
parsedRevert, err := abi.JSON(strings.NewReader(abiRevert))
if err != nil {
return "", err
}
var reason string
err = parsedRevert.UnpackIntoInterface(&reason, "Error", inputData)
if err != nil {
return "", err
}
return reason, nil
}
const abiRevert = `[{ "name": "Error", "type": "function", "inputs": [ { "type": "string" } ] }]`