@@ -23,8 +23,8 @@ import Json.Decode.Pipeline exposing (custom)
23
23
24
24
{-
25
25
26
- This file was generated by https://github.com/cmditch/elm-ethereum-generator v3 .0.1
27
- Compatible with elm-ethereum v4 .0.0
26
+ This file was generated by https://github.com/cmditch/elm-ethereum-generator v4 .0.0
27
+ Compatible with elm-ethereum v5 .0.0
28
28
29
29
-}
30
30
-- amountBurnedForSignal(bytes32) function
@@ -103,11 +103,11 @@ type alias SmokeSignalWithMessage =
103
103
104
104
105
105
smokeSignalWithMessageEvent : Address -> Maybe Hex -> Maybe Address -> LogFilter
106
- smokeSignalWithMessageEvent contractAddress hash_ from_ =
106
+ smokeSignalWithMessageEvent contractAddress hash_ from_ =
107
107
{ fromBlock = LatestBlock
108
108
, toBlock = LatestBlock
109
109
, address = contractAddress
110
- , topics =
110
+ , topics =
111
111
[ Just <| U . unsafeToHex " 52dc870e81fddee260ec96189fd5cc37b232d3667f3dab2372a3d98301364976"
112
112
, Maybe . map ( abiEncode << ( E . staticBytes 32 )) hash_
113
113
, Maybe . map ( abiEncode << E . address) from_
@@ -116,7 +116,7 @@ smokeSignalWithMessageEvent contractAddress hash_ from_ =
116
116
117
117
118
118
smokeSignalWithMessageDecoder : Decoder SmokeSignalWithMessage
119
- smokeSignalWithMessageDecoder =
119
+ smokeSignalWithMessageDecoder =
120
120
Decode . succeed SmokeSignalWithMessage
121
121
|> custom ( topic 1 ( D . staticBytes 32 ))
122
122
|> custom ( topic 2 D . address)
@@ -135,11 +135,11 @@ type alias SmokeSignalWithoutMessage =
135
135
136
136
137
137
smokeSignalWithoutMessageEvent : Address -> Maybe Hex -> Maybe Address -> LogFilter
138
- smokeSignalWithoutMessageEvent contractAddress hash_ from_ =
138
+ smokeSignalWithoutMessageEvent contractAddress hash_ from_ =
139
139
{ fromBlock = LatestBlock
140
140
, toBlock = LatestBlock
141
141
, address = contractAddress
142
- , topics =
142
+ , topics =
143
143
[ Just <| U . unsafeToHex " 139354f151d35bd99216f6ab24ac33a21c06e704b9d92c01e44f1c8357495044"
144
144
, Maybe . map ( abiEncode << ( E . staticBytes 32 )) hash_
145
145
, Maybe . map ( abiEncode << E . address) from_
@@ -148,7 +148,7 @@ smokeSignalWithoutMessageEvent contractAddress hash_ from_ =
148
148
149
149
150
150
smokeSignalWithoutMessageDecoder : Decoder SmokeSignalWithoutMessage
151
- smokeSignalWithoutMessageDecoder =
151
+ smokeSignalWithoutMessageDecoder =
152
152
Decode . succeed SmokeSignalWithoutMessage
153
153
|> custom ( topic 1 ( D . staticBytes 32 ))
154
154
|> custom ( topic 2 D . address)
0 commit comments