From a65626ed1a83e55f4ccf1f228ed1580600b4f4a9 Mon Sep 17 00:00:00 2001 From: rectof Date: Mon, 24 Apr 2023 01:31:29 -0400 Subject: [PATCH 1/2] Update response.go --- response.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/response.go b/response.go index d096aef..85e785d 100644 --- a/response.go +++ b/response.go @@ -50,6 +50,8 @@ type NormalTx struct { CumulativeGasUsed int `json:"cumulativeGasUsed,string"` GasUsed int `json:"gasUsed,string"` Confirmations int `json:"confirmations,string"` + MethodID string `json:"methodId"` + FunctionName string `json:"functionName"` } // InternalTx holds info from internal tx query From d73ecd4a8b3546c5d1997571ff7ad411f07c1fd4 Mon Sep 17 00:00:00 2001 From: rectof Date: Mon, 24 Apr 2023 10:30:26 -0400 Subject: [PATCH 2/2] Update go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 5837de6..1ec9a42 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/nanmu42/etherscan-api +module github.com/rectof/etherscan-api go 1.13