From 451a062fb9832ce6e93fcb8feab50a51764e4b1e Mon Sep 17 00:00:00 2001 From: NikiTaysRD Date: Fri, 17 Jan 2025 18:25:29 +0200 Subject: [PATCH] feat: add currencies --- src/components/pages/game/game.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/pages/game/game.tsx b/src/components/pages/game/game.tsx index fd47aa1..bbb914b 100644 --- a/src/components/pages/game/game.tsx +++ b/src/components/pages/game/game.tsx @@ -84,7 +84,7 @@ export const GameSection = () => { return; } - await showTxToast('Sending Tip to the Oracle', async () => { + await showTxToast('Tipping the Oracle', async () => { await transferCurrency({ amount: selectedTip, tokenName: currencyName }); }); };