UNPKG
deth
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Ethereum node focused on Developer Experience
deth
/
dist
/
esm
/
model
/
RpcLogObject.d.ts
13 lines
(12 loc)
•
314 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
Quantity
,
Hash
,
Address
,
HexData
}
from
'../primitives'
;
export
interface
RpcLogObject
{
removed:
boolean;
logIndex:
Quantity;
transactionIndex:
Quantity;
transactionHash:
Hash;
blockHash:
Hash;
blockNumber:
Quantity;
address:
Address;
data:
HexData;
topics:
Hash
[]
;
}