We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0158ce5 commit a1340f6Copy full SHA for a1340f6
response.go
@@ -159,3 +159,15 @@ type LatestPrice struct {
159
ETHUSD float64 `json:"ethusd,string"`
160
ETHUSDTimestamp Time `json:"ethusd_timestamp"`
161
}
162
+
163
+type Log struct {
164
+ Address string `json:"address"`
165
+ Topics []string `json:"topics"`
166
+ Data string `json:"data"`
167
+ BlockNumber string `json:"blockNumber"`
168
+ TransactionHash string `json:"transactionHash"`
169
+ BlockHash string `json:"blockHash"`
170
+ LogIndex string `json:"logIndex"`
171
+ Removed bool `json:"removed"`
172
+}
173
0 commit comments