Update types.go

This commit is contained in:
Gregory Bednov 2025-08-10 12:40:53 +03:00
commit a63abd641a

View file

@ -34,3 +34,8 @@ type CompoundTx struct {
} `json:"body"` } `json:"body"`
Signature string `json:"signature"` Signature string `json:"signature"`
} }
type SignedTx struct {
Body any `json:"body"`
Signature string `json:"signature"`
}