Skip to content

Commit b4224e8

Browse files
authored
fix: Change type of data to be optional (#117)
* fix: Change type of data to be optional * fix: Change optional to null
1 parent 497cef1 commit b4224e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/decoded-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export type DecodedDataParameterValue = {
1414
operation: 0 | 1
1515
to: string
1616
value: string
17-
data: string
17+
data: string | null
1818
dataDecoded?: {
1919
method: string
2020
parameters: DecodedDataBasicParameter[]

0 commit comments

Comments
 (0)