#ī¸âŖActions
Fluff actions
Usage
Actions to execute when a specific condition is met are declared inside a "then" block:
Available actions
Following actions are available to use:
Action | Parameters | Description |
---|---|---|
discord.send |
| Sends message to a Discord channel. |
twitter.send |
| Posts a tweet on a Twitter bot account. |
autobuy |
| Buys the NFT via burner wallet. Requires sniping module to be used. |
webhook.send |
| Sends event(s) to your own application. Requires developer module to be used. |
Rate limits
Every action has a specific rate limit connected to it so as not to overload the external services APIs. When your bot exceeds those limits, the incoming events are (to some extent) queued, so temporary spikes in the activity you track won't make your bot skip those events entirely - it will just delay them a bit.
So although, in theory, monitoring all events from all supported marketplaces with a single action is possible, it will result in skipped events when the volume is high.
Action | Rate Limit |
---|---|
discord.send | 30 messages per minute per channel |
twitter.send | 50 tweets per 24 (on basic plan) 100 tweets per 24h (on paid Twitter API plan) |
autobuy | No limits other than marketplace APIs |
webhook.send | TODO |
Last updated