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: components/opensea/sources/new-collection-events/new-collection-events.mjs
+50-44Lines changed: 50 additions & 44 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
4
4
exportdefault{
5
5
key: "opensea-new-collection-events",
6
6
name: "New Collection Events",
7
-
description: "Emit new listings for a collection. [See the documentation](https://docs.opensea.io/reference/get_all_listings_on_collection_v2)",
7
+
description: "Emit new filtered events for a collection. [See the documentation](https://docs.opensea.io/reference/list_events_by_collection)",
8
8
version: "0.0.4",
9
9
dedupe: "unique",
10
10
type: "source",
@@ -22,61 +22,67 @@ export default {
22
22
label: "Collection Slug",
23
23
description: "Unique string to identify a collection on OpenSea. This can be found by visiting the collection on the OpenSea website and noting the last path parameter.",
24
24
},
25
+
eventType: {
26
+
type: "string[]",
27
+
options: [
28
+
"all",
29
+
"cancel",
30
+
"listing",
31
+
"offer",
32
+
"order",
33
+
"redemption",
34
+
"sale",
35
+
"transfer",
36
+
],
37
+
label: "Event Type",
38
+
description: "The type of event to filter by. If not provided, only sales will be returned.",
0 commit comments