Skip to content

Commit b1a8402

Browse files
authored
Fix FCL EventFilter documentation (#1180)
1 parent a9784bb commit b1a8402

File tree

1 file changed

+19
-12
lines changed
  • docs/tools/clients/fcl-js

1 file changed

+19
-12
lines changed

docs/tools/clients/fcl-js/api.md

+19-12
Original file line numberDiff line numberDiff line change
@@ -1200,15 +1200,9 @@ A build that returns a [event stream connection](#eventstream) once decoded. It
12001200
12011201
#### Arguments
12021202
1203-
| Name | Type | Description |
1204-
| ------------------------ | ------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
1205-
| `opts` | `Object` | An object with the following keys: |
1206-
| `opts.startBlockId` | string | undefined | The block ID to start listening for events. Example: `9dda5f281897389b99f103a1c6b180eec9dac870de846449a302103ce38453f3` |
1207-
| `opts.startHeight` | number | undefined | The block height to start listening for events. Example: `123` |
1208-
| `opts.eventTypes` | string[] | undefined | The event types to listen for. Example: `A.7e60df042a9c0868.FlowToken.TokensWithdrawn` |
1209-
| `opts.addresses` | string[] | undefined | The addresses to listen for. Example: `0x7e60df042a9c0868` |
1210-
| `opts.contracts` | string[] | undefined | The contracts to listen for. Example: `0x7e60df042a9c0868` |
1211-
| `opts.heartbeatInterval` | number | undefined | The interval in milliseconds to send a heartbeat to the Access Node. Example: `10000` |
1203+
| Name | Type | Description |
1204+
| ------------- | --------------------------- | --------------------------------- |
1205+
| `eventFilter` | [EventFilter](#eventfilter) | The event filter to subscribe to. |
12121206
12131207
#### Returns after decoding
12141208
@@ -1565,9 +1559,9 @@ Note:
15651559
15661560
#### Arguments
15671561
1568-
| Name | Type | Description |
1569-
| ----------- | ------ | ------------------- |
1570-
| `eventName` | string | A valid event name. |
1562+
| Name | Type | Description |
1563+
| ------------------- | ----------------------------------------- | ------------------------------------------------ |
1564+
| `eventNameOrFilter` | string | [EventFilter](#eventfilter) | The name of the event or an event filter object. |
15711565
15721566
#### Returns
15731567
@@ -2017,6 +2011,19 @@ FCL arguments must specify one of the following support types for each value pas
20172011
20182012
---
20192013
2014+
### `EventFilter`
2015+
2016+
An object that contains the parameters to filter events, used for event streaming in the [`fcl.events`](#events) function.
2017+
2018+
| Name | Value Type | Description |
2019+
| ------------------------ | ------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
2020+
| `startBlockId` | string | undefined | The block ID to start listening for events. Example: `9dda5f281897389b99f103a1c6b180eec9dac870de846449a302103ce38453f3` |
2021+
| `startHeight` | number | undefined | The block height to start listening for events. Example: `123` |
2022+
| `eventTypes` | string[] | undefined | The event types to listen for. Example: `A.7e60df042a9c0868.FlowToken.TokensWithdrawn` |
2023+
| `addresses` | string[] | undefined | The addresses to listen for. Example: `0x7e60df042a9c0868` |
2024+
| `contracts` | string[] | undefined | The contracts to listen for. Example: `0x7e60df042a9c0868` |
2025+
| `opts.heartbeatInterval` | number | undefined | The interval in milliseconds to send a heartbeat to the Access Node. Example: `10000` |
2026+
20202027
### `StreamConnection`
20212028
20222029
A stream connection is an object for subscribing to generic data from any WebSocket data stream. This is the base type for all stream connections. Two channels, `close` and `error`, are always available, as they are used to signal the end of the stream and any errors that occur.

0 commit comments

Comments
 (0)