We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4f8ee commit fcba22dCopy full SHA for fcba22d
tooling/sparta/packages/discord/src/slashCommands/operators/chain-info.ts
@@ -6,6 +6,8 @@ export const get = async (
6
interaction: ChatInputCommandInteraction
7
): Promise<string> => {
8
try {
9
+ await interaction.deferReply();
10
+
11
// Get Ethereum instance
12
const ethereum = await getEthereumInstance();
13
@@ -18,7 +20,7 @@ export const get = async (
18
20
proposerNow,
19
21
} = await ethereum.getRollupInfo();
22
- await interaction.reply({
23
+ await interaction.editReply({
24
content: `
25
Pending block: [${pendingBlockNum}](https://aztecscan.xyz/blocks/${pendingBlockNum})
26
Proven block: [${provenBlockNum}](https://aztecscan.xyz/blocks/${provenBlockNum})
0 commit comments