Skip to content

Commit

Permalink
Make Multisig Tx data nullable in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Uxio0 committed Jan 24, 2025
1 parent 6ba5d7d commit 1979a12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Some parameters are common to every event:
"type": "EXECUTED_MULTISIG_TRANSACTION",
"safeTxHash": "<0x-prefixed-hex-string>",
"to": "<Ethereum checksummed address>",
"data": "<0x-prefixed-hex-string>",
"data": "<0x-prefixed-hex-string>" | null,
"failed": "true" | "false",
"txHash": "<0x-prefixed-hex-string>",
"chainId": "<stringified-int>"
Expand All @@ -78,7 +78,7 @@ Some parameters are common to every event:
"type": "PENDING_MULTISIG_TRANSACTION",
"safeTxHash": "<0x-prefixed-hex-string>",
"to": "<Ethereum checksummed address>",
"data": "<0x-prefixed-hex-string>",
"data": "<0x-prefixed-hex-string>" | null,
"chainId": "<stringified-int>"
}
```
Expand Down

0 comments on commit 1979a12

Please sign in to comment.