add

Prepares a transaction to call the "add" function on the contract.

Example

import { sendTransaction } from "thirdweb";
import { add } from "thirdweb/extensions/farcaster";
const transaction = add({
contract,
keyType: ...,
key: ...,
metadataType: ...,
metadata: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });
function add(
AddParams | { asyncParams: () => Promise<AddParams> }
>,

Parameters

The options for the "add" function.

Type

AddParams | { asyncParams: () => Promise<AddParams> }
>;

Returns

let returnType: PreparedTransaction<
any,
AbiFunction,
>;

A prepared transaction object.