From 09c6e2072dad3770df1d13b4f9d9fdc41c8b57b1 Mon Sep 17 00:00:00 2001 From: hundredark Date: Thu, 25 Jul 2024 19:24:28 +0800 Subject: [PATCH] Add field revoked_by --- safe_multisigs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/safe_multisigs.go b/safe_multisigs.go index 34cc5cc..38bf2c7 100644 --- a/safe_multisigs.go +++ b/safe_multisigs.go @@ -28,6 +28,7 @@ type SafeMultisigRequest struct { SendersThreshold int64 `json:"senders_threshold"` Senders []string `json:"senders"` Signers []string `json:"signers"` + RevokedBy string `json:"revoked_by"` Extra string `json:"extra"` RawTransaction string `json:"raw_transaction"` CreatedAt time.Time `json:"created_at"`