payments command

This commit is contained in:
Oleksandr Honcharov 2024-06-06 04:32:24 +03:00
parent 67228671fc
commit 5a30c8bb1c

27
src/commands/payments.ts Normal file
View File

@ -0,0 +1,27 @@
import { Discord, Slash } from 'discordx'
import { CommandInteraction, EmbedBuilder } from 'discord.js'
@Discord()
export class Payments {
@Slash({
name: 'payments',
description: 'See available payments',
})
async payments(interaction: CommandInteraction) {
const embed = new EmbedBuilder().setTitle(`Payments`).setFields([
{
name: 'Crypto:',
value:
'Wallet number: `TRdGKNPABvoTrdwHgfUTX65DbqbguTh6cc`\n' +
'Crypto name: `USDT`\n' +
'Network name: `TRC20`',
},
{
name: 'PayPal:',
value: '`khamidalakkhali@gmail.com` | Types: Friends and Family',
},
])
await interaction.reply({ embeds: [embed] })
}
}