Skip to content

Commit 82e4198

Browse files
authored
fix: Update transaction data property to be nullable (#119)
* fix: Update transaction data property to be nullable * chore: Bump version to 3.7.3
1 parent 3f4552c commit 82e4198

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@safe-global/safe-gateway-typescript-sdk",
3-
"version": "3.7.2",
3+
"version": "3.7.3",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"files": [

src/types/transactions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type InternalTransaction = {
1111
operation: Operation
1212
to: string
1313
value?: string
14-
data?: string
14+
data: string | null
1515
dataDecoded?: DataDecoded
1616
}
1717

0 commit comments

Comments
 (0)