diff --git a/packages/app/src/app/create/page.tsx b/packages/app/src/app/create/page.tsx index 3561ba1..70b0f7f 100644 --- a/packages/app/src/app/create/page.tsx +++ b/packages/app/src/app/create/page.tsx @@ -122,6 +122,8 @@ function CreateLockInner() { usdcDecimals, treasury, explorerUrl, + explorerName, + usdcNote, } = useMemo( () => getChainConfig( @@ -474,7 +476,7 @@ function CreateLockInner() { lockInFlightRef.current = false; setStep("success"); toast("Lock created!", "success", { - label: "View on BaseScan", + label: `View on ${explorerName}`, href: `${explorerUrl}/tx/${lockTxHash}`, }); trackLockCreated({ @@ -511,6 +513,7 @@ function CreateLockInner() { chainId, sablierLockup, explorerUrl, + explorerName, usdcDecimals, ]); @@ -616,6 +619,7 @@ function CreateLockInner() { usdcDecimals={usdcDecimals} sablierAddress={sablierLockup} explorerUrl={explorerUrl} + explorerName={explorerName} onCreateAnother={resetForm} /> ) : ( @@ -708,6 +712,11 @@ function CreateLockInner() { {formatUnits(totalAmount, usdcDecimals)} USDC (incl. {brokerFeePct} fee).

)} + {usdcNote && ( +

+ {usdcNote} +

+ )} {IS_TESTNET && isConnected && (