Retrieves the bytecode of a contract.
import { getBytecode } from "thirdweb/contract";const bytecode = await getBytecode(contract);
function getBytecode( contract: Readonly<ContractOptions<abi, string>>,): Promise<Hex>;
The ThirdwebContract instance.
let contract: Readonly<ContractOptions<abi, string>>;
let returnType: ox__Hex.Hex;
A Promise that resolves to the bytecode of the contract.