Fix typos
Browse files
README.md
CHANGED
@@ -55,8 +55,8 @@ In binary form, the raw bytes are stored in most fields:
|
|
55 |
|
56 |
```python
|
57 |
datasets.Features({
|
58 |
-
|
59 |
-
|
60 |
'block_hash': datasets.features.Value(dtype='large_binary'),
|
61 |
'transaction_hash': datasets.features.Value(dtype='large_binary'),
|
62 |
'deployer_address': datasets.features.Value(dtype='large_binary'),
|
@@ -71,8 +71,8 @@ While in hexadecimal format, the data is encoded into HEX strings:
|
|
71 |
|
72 |
```python
|
73 |
datasets.Features({
|
74 |
-
|
75 |
-
|
76 |
'block_hash': datasets.features.Value(dtype='string'),
|
77 |
'transaction_hash': datasets.features.Value(dtype='string'),
|
78 |
'deployer_address': datasets.features.Value(dtype='string'),
|
|
|
55 |
|
56 |
```python
|
57 |
datasets.Features({
|
58 |
+
'chain_id': datasets.features.Value(dtype='uint64'),
|
59 |
+
'block_number': datasets.features.Value(dtype='uint64'),
|
60 |
'block_hash': datasets.features.Value(dtype='large_binary'),
|
61 |
'transaction_hash': datasets.features.Value(dtype='large_binary'),
|
62 |
'deployer_address': datasets.features.Value(dtype='large_binary'),
|
|
|
71 |
|
72 |
```python
|
73 |
datasets.Features({
|
74 |
+
'chain_id': datasets.features.Value(dtype='uint64'),
|
75 |
+
'block_number': datasets.features.Value(dtype='uint64'),
|
76 |
'block_hash': datasets.features.Value(dtype='string'),
|
77 |
'transaction_hash': datasets.features.Value(dtype='string'),
|
78 |
'deployer_address': datasets.features.Value(dtype='string'),
|