Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down Expand Up @@ -228,7 +228,7 @@ const txHash = await Engine.waitForTransactionHash({
client,
transactionId,
});
console.log("Transaction hash:", result.transactionHash);
console.log("Transaction hash:", txHash);
`;

const curlExample = () => `\
Expand Down
Loading