From 51c796fcb4e962d6ea18a11b04c9c30f600c4010 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 3 Feb 2026 04:45:37 +0000 Subject: [PATCH] fix: use correct decimals (6) for native currency Tempo's native USD uses 6 decimals per TIP-20, not 18. Amp-Thread-ID: https://ampcode.com/threads/T-019c21d0-d0b6-700b-a7b2-b4792878ac8f Co-authored-by: Amp --- src/components/guides/steps/wallet/ConnectWallet.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/guides/steps/wallet/ConnectWallet.tsx b/src/components/guides/steps/wallet/ConnectWallet.tsx index 4567db6c..71367473 100644 --- a/src/components/guides/steps/wallet/ConnectWallet.tsx +++ b/src/components/guides/steps/wallet/ConnectWallet.tsx @@ -100,7 +100,7 @@ export function ConnectWallet(props: DemoStepProps) { addEthereumChainParameter: { nativeCurrency: { name: 'USD', - decimals: 18, + decimals: 6, symbol: 'USD', }, blockExplorerUrls: ['https://explore.tempo.xyz'],