Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
callback-data
Advanced tools
Lightweight and simple library that helps manage callback data when using inline buttons in messages
$ npm install callback-data
or using yarn
:
$ yarn add callback-data
import { Telegraf, Markup, Context } from 'telegraf';
import { CallbackData } from 'callback-data';
const bot = new Telegraf(process.env.BOT_TOKEN);
const greetingData = new CallbackData<{ type: string; }>(
'greeting', // namespace identifier
['type'] // data properties
);
bot.start((ctx: Context) =>
ctx.reply('How to greet?', {
...Markup.inlineKeyboard([
Markup.button.callback(
'oldschool',
greetingData.create({
type: 'oldschool',
})
), // callback data is equal to `greeting:oldschool`
Markup.button.callback(
'modern',
greetingData.create({
type: 'modern',
})
), // callback data is equal to `greeting:modern`
]),
})
);
bot.action(
greetingData.filter({
type: 'modern',
}),
(ctx) => ctx.answerCbQuery('Yo')
);
bot.action(
greetingData.filter({
type: 'oldschool',
}),
(ctx) => ctx.answerCbQuery('Hello')
);
bot.launch();
There's some more complex examples: counter and menu.
exampleCallbackData = new CallbackData(
'namespace-prefix',
['id', 'action' /* many as you want */]
/* separator = ':' */
);
const callbackData = exampleCallbackData.create({
id: '1337',
action: 'show',
});
console.log(callbackData); // namespace-prefix:1337:show
const parsedCallbackData = exampleCallbackData.parse(callbackData);
console.log(parsedCallbackData); // { id: "1337", action: "show" }
const regexpCallbackDataFilter = exampleCallbackData.filter({
action: 'show',
});
console.log(regexpCallbackDataFilter); // /namespace-prefix:\w+:show/
FAQs
Easy callback data management for Telegram bots
The npm package callback-data receives a total of 1,145 weekly downloads. As such, callback-data popularity was classified as popular.
We found that callback-data demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
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.