UNPKG
@etherspot/data-utils
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Etherspot Data Utils
etherspot.dev
etherspot/etherspot-data-utils
@etherspot/data-utils
/
dist
/
cjs
/
sdk
/
data
/
classes
/
transaction-log.d.ts
12 lines
(9 loc)
•
263 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
TransactionLogDecoded
}
from
'./transaction-log-decoded.js'
;
import
'./decoded-log-param.js'
;
declare
class
TransactionLog
{
address
:
string
;
topics
:
string
[];
data
:
string
;
decoded
?:
TransactionLogDecoded
; }
export
{
TransactionLog
};