Skip to content

Commit f4d2c81

Browse files
committed
nit: fiber.types namespace
1 parent b0b3f76 commit f4d2c81

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ except Exception as e:
3131
### Subscribing to transactions
3232

3333
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.
3535
All the bytes fields are encoded as hexadecimal strings.
3636

3737
```python
@@ -49,7 +49,7 @@ except Exception as e:
4949

5050
#### Execution Payload Headers
5151

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.
5353
All the bytes fields are encoded as hexadecimal strings.
5454

5555
```python
@@ -64,7 +64,7 @@ except Exception as e:
6464

6565
#### Execution Payloads
6666

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.
6868
All the bytes fields are encoded as hexadecimal strings.
6969

7070
```python
@@ -79,7 +79,7 @@ except Exception as e:
7979

8080
#### Beacon Blocks
8181

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.
8383

8484
> **Note**
8585
> 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

Comments
 (0)