Retrieves the name associated with the given contract.
import { symbol } from "thirdweb/extensions/common"; const contractSymbol = await symbol({ contract });
function symbol(options: BaseTransactionOptions): Promise<string>;
The options for the transaction.
let options: { contract: ThirdwebContract<abi> } & T;
let returnType: Promise<string>;
A promise that resolves to the name associated with the contract.