@elizaos/plugin-farcaster 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +68 -46
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-farcaster",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -47,79 +47,101 @@
|
|
|
47
47
|
"pluginType": "elizaos:client:1.0.0",
|
|
48
48
|
"pluginParameters": {
|
|
49
49
|
"FARCASTER_DRY_RUN": {
|
|
50
|
-
"type": "
|
|
51
|
-
"
|
|
52
|
-
"
|
|
50
|
+
"type": "boolean",
|
|
51
|
+
"description": "Enables or disables dry run mode when interacting with Farcaster; when true, operations are simulated but not executed.",
|
|
52
|
+
"required": false,
|
|
53
|
+
"sensitive": false
|
|
53
54
|
},
|
|
54
55
|
"FARCASTER_FID": {
|
|
55
|
-
"type": "
|
|
56
|
-
"
|
|
57
|
-
"
|
|
56
|
+
"type": "number",
|
|
57
|
+
"description": "The Farcaster FID (user identifier) used to publish or manage casts for a specific account.",
|
|
58
|
+
"required": true,
|
|
59
|
+
"default": 123,
|
|
60
|
+
"sensitive": false
|
|
58
61
|
},
|
|
59
62
|
"MAX_CAST_LENGTH": {
|
|
60
|
-
"type": "
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
+
"type": "number",
|
|
64
|
+
"description": "Maximum number of characters allowed in a Farcaster cast.",
|
|
65
|
+
"required": false,
|
|
66
|
+
"default": 320,
|
|
67
|
+
"sensitive": false
|
|
63
68
|
},
|
|
64
69
|
"FARCASTER_POLL_INTERVAL": {
|
|
65
|
-
"type": "
|
|
66
|
-
"
|
|
67
|
-
"
|
|
70
|
+
"type": "number",
|
|
71
|
+
"description": "Polling interval in milliseconds for Farcaster operations such as fetching new casts.",
|
|
72
|
+
"required": false,
|
|
73
|
+
"default": 1000,
|
|
74
|
+
"sensitive": false
|
|
68
75
|
},
|
|
69
76
|
"ENABLE_POST": {
|
|
70
|
-
"type": "
|
|
71
|
-
"
|
|
72
|
-
"
|
|
77
|
+
"type": "boolean",
|
|
78
|
+
"description": "Enables or disables the ability to post casts to Farcaster.",
|
|
79
|
+
"required": false,
|
|
80
|
+
"default": true,
|
|
81
|
+
"sensitive": false
|
|
73
82
|
},
|
|
74
83
|
"POST_INTERVAL_MIN": {
|
|
75
|
-
"type": "
|
|
76
|
-
"
|
|
77
|
-
"
|
|
84
|
+
"type": "number",
|
|
85
|
+
"description": "Minimum interval in milliseconds between automated posts.",
|
|
86
|
+
"required": false,
|
|
87
|
+
"default": 1000,
|
|
88
|
+
"sensitive": false
|
|
78
89
|
},
|
|
79
90
|
"POST_INTERVAL_MAX": {
|
|
80
|
-
"type": "
|
|
81
|
-
"
|
|
82
|
-
"
|
|
91
|
+
"type": "number",
|
|
92
|
+
"description": "Maximum interval in milliseconds between automated posts.",
|
|
93
|
+
"required": false,
|
|
94
|
+
"default": 5000,
|
|
95
|
+
"sensitive": false
|
|
83
96
|
},
|
|
84
97
|
"ENABLE_ACTION_PROCESSING": {
|
|
85
|
-
"type": "
|
|
86
|
-
"
|
|
87
|
-
"
|
|
98
|
+
"type": "boolean",
|
|
99
|
+
"description": "Turns on or off automated action processing for Farcaster events.",
|
|
100
|
+
"required": false,
|
|
101
|
+
"default": true,
|
|
102
|
+
"sensitive": false
|
|
88
103
|
},
|
|
89
104
|
"ACTION_INTERVAL": {
|
|
90
|
-
"type": "
|
|
91
|
-
"
|
|
92
|
-
"
|
|
105
|
+
"type": "number",
|
|
106
|
+
"description": "Interval in milliseconds between action-processing cycles.",
|
|
107
|
+
"required": false,
|
|
108
|
+
"default": 1000,
|
|
109
|
+
"sensitive": false
|
|
93
110
|
},
|
|
94
111
|
"POST_IMMEDIATELY": {
|
|
95
|
-
"type": "
|
|
96
|
-
"
|
|
97
|
-
"
|
|
112
|
+
"type": "boolean",
|
|
113
|
+
"description": "If true, posts are published immediately instead of waiting for a schedule.",
|
|
114
|
+
"required": false,
|
|
115
|
+
"default": true,
|
|
116
|
+
"sensitive": false
|
|
98
117
|
},
|
|
99
118
|
"MAX_ACTIONS_PROCESSING": {
|
|
100
|
-
"type": "
|
|
101
|
-
"
|
|
102
|
-
"
|
|
119
|
+
"type": "number",
|
|
120
|
+
"description": "Maximum number of Farcaster actions to process in a single batch.",
|
|
121
|
+
"required": false,
|
|
122
|
+
"default": 10,
|
|
123
|
+
"sensitive": false
|
|
103
124
|
},
|
|
104
|
-
"
|
|
125
|
+
"FARCASTER_NEYNAR_SIGNER_UUID": {
|
|
105
126
|
"type": "string",
|
|
106
|
-
"
|
|
107
|
-
"
|
|
127
|
+
"description": "UUID of the Neynar signer associated with the Farcaster account, required to sign casts.",
|
|
128
|
+
"required": true,
|
|
129
|
+
"default": "test-signer",
|
|
130
|
+
"sensitive": false
|
|
108
131
|
},
|
|
109
132
|
"FARCASTER_NEYNAR_API_KEY": {
|
|
110
133
|
"type": "string",
|
|
111
|
-
"description": "
|
|
112
|
-
"required": true
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
"type": "string",
|
|
116
|
-
"description": "Signer UUID associated with your Farcaster account, used to sign casts and interactions.",
|
|
117
|
-
"required": true
|
|
134
|
+
"description": "API key used to authenticate with the Neynar Farcaster API.",
|
|
135
|
+
"required": true,
|
|
136
|
+
"default": "test-key",
|
|
137
|
+
"sensitive": true
|
|
118
138
|
},
|
|
119
139
|
"FARCASTER_HUB_URL": {
|
|
120
140
|
"type": "string",
|
|
121
|
-
"description": "Base URL
|
|
122
|
-
"required": false
|
|
141
|
+
"description": "Base URL for the Farcaster hub the client should communicate with.",
|
|
142
|
+
"required": false,
|
|
143
|
+
"default": "https://api.example.com",
|
|
144
|
+
"sensitive": false
|
|
123
145
|
}
|
|
124
146
|
}
|
|
125
147
|
},
|