You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ except Exception as e:
31
31
### Subscribing to transactions
32
32
33
33
The transaction stream is supported but without any filtering for now.
34
-
This stream yields [`fiber.client.Transaction`](/fiber/types.py#L9) objects.
34
+
This stream yields [`fiber.types.Transaction`](/fiber/types.py#L9) objects.
35
35
All the bytes fields are encoded as hexadecimal strings.
36
36
37
37
```python
@@ -49,7 +49,7 @@ except Exception as e:
49
49
50
50
#### Execution Payload Headers
51
51
52
-
This stream yields only the new block headers as [`ExecutionPayloadHeader`](/fiber/types.py#L75) objects.
52
+
This stream yields only the new block headers as [`fiber.types.ExecutionPayloadHeader`](/fiber/types.py#L75) objects.
53
53
All the bytes fields are encoded as hexadecimal strings.
54
54
55
55
```python
@@ -64,7 +64,7 @@ except Exception as e:
64
64
65
65
#### Execution Payloads
66
66
67
-
This stream yields the new blocks as full [`ExecutionPayload`](/fiber/types.py#L94) objects.
67
+
This stream yields the new blocks as full [`fiber.types.ExecutionPayload`](/fiber/types.py#L94) objects.
68
68
All the bytes fields are encoded as hexadecimal strings.
69
69
70
70
```python
@@ -79,7 +79,7 @@ except Exception as e:
79
79
80
80
#### Beacon Blocks
81
81
82
-
This stream yields the blocks as seen by the Ethereum consensus layer, in the form of [`BeaconBlock`](/fiber/types.py#L211) objects. All the bytes fields are encoded as hexadecimal strings.
82
+
This stream yields the blocks as seen by the Ethereum consensus layer, in the form of [`fiber.types.BeaconBlock`](/fiber/types.py#L211) objects. All the bytes fields are encoded as hexadecimal strings.
83
83
84
84
> **Note**
85
85
> Beacon blocks **do not** contain the execution payloads. To also get the execution payloads, please subscribe to the execution payload stream `subscribe_new_execution_payloads()` separately.
0 commit comments