diff --git a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/server-wallets/components/try-it-out.tsx b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/server-wallets/components/try-it-out.tsx index 9174fee80c2..93698e86056 100644 --- a/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/server-wallets/components/try-it-out.tsx +++ b/apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/engine/cloud/server-wallets/components/try-it-out.tsx @@ -186,7 +186,7 @@ export function TryItOut() { const sdkExample = () => `\ import { createThirdwebClient, sendTransaction, getContract, Engine } from "thirdweb"; import { baseSepolia } from "thirdweb/chains"; -import { claimTo } from "thirdweb/extensions/1155"; +import { claimTo } from "thirdweb/extensions/erc1155"; // Create a thirdweb client const client = createThirdwebClient({ @@ -228,7 +228,7 @@ const txHash = await Engine.waitForTransactionHash({ client, transactionId, }); -console.log("Transaction hash:", result.transactionHash); +console.log("Transaction hash:", txHash); `; const curlExample = () => `\