Prepares a transaction to call the "add" function on the contract.
import { sendTransaction } from "thirdweb";import { add } from "thirdweb/extensions/thirdweb"; const transaction = add({ contract, deployer: ..., deployment: ..., chainId: ..., metadataUri: ..., overrides: { ... }}); // Send the transactionawait sendTransaction({ transaction, account });
function add( options: BaseTransactionOptions< AddParams | { asyncParams: () => Promise<AddParams> } >,): PreparedTransaction<any, AbiFunction, PrepareTransactionOptions>;
The options for the "add" function.
let options: BaseTransactionOptions< AddParams | { asyncParams: () => Promise<AddParams> }>;
let returnType: PreparedTransaction< any, AbiFunction, PrepareTransactionOptions>;
A prepared transaction object.