Getting Started

Choose a language:

Install the latest version of the SDK:

npm i thirdweb

Initialize the SDK and contract on your project:

import { createThirdwebClient, getContract } from "thirdweb";
import { defineChain } from "thirdweb/chains";
// create the client with your clientId, or secretKey if in a server environment
const client = createThirdwebClient({
clientId: "YOUR_CLIENT_ID"
});
// connect to your contract
const contract = getContract({
client,
chain: defineChain(42170),
address: "0xDe6B4964c4384BcDfA150a4A8bE9865C5b91E29C"
});

You will need to pass a client ID/secret key to use thirdweb's infrastructure services. If you don't have any API keys yet you can create one for free from the dashboard settings.

All Functions & Events

import { prepareContractCall, sendTransaction } from "thirdweb";
const transaction = await prepareContractCall({
contract,
method: "function claim((address user, uint256 chainId, bytes32 parentId, address baseToken, address quoteToken, address inputToken, uint256 inputAmount, address outputToken, uint256 outputAmount, uint256 yield, uint256 initialPrice, uint256 closedPrice, uint256 finishAt) dual)",
params: [dual]
});
const { transactionHash } = await sendTransaction({
transaction,
account
});