Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@xmtp/bot-kit-pro
Advanced tools
A database-backed bot framework for running high reliability XMTP bots
yarn
package manager version 2.x or 3.xyarn
./dev/up
yarn test
Here is a minimal example of using bot-kit-pro in your application:
import { newBotConfig, run } from "@xmtp/bot-kit-pro"
async function start() {
const config = newBotConfig(
"test",
{
xmtpEnv: "production",
},
async (ctx) => {
ctx.reply("hi")
},
)
await run([config])
}
start()
Each bot expects a configration, which can be created using newBotConfig
.
You can also optionally provide application-level configuration to specify howt he database connection is established. The following environment variables are respected for app level configuration, and take precedence over any configuration values provided in code.
POSTGRES_CONNECTION_STRING
If no application config is specified, default values are provided that correspond with the DB in the docker-compose.yml
file.
TODO
TODO
FAQs
A database-backed bot framework for running high reliability XMTP bots
We found that @xmtp/bot-kit-pro demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.