Docs

PrepareTransactionOptions

type PrepareTransactionOptions = {
accessList?: PromisedValue<AccessList | undefined>;
chain: Chain;
client: ThirdwebClient;
data?: PromisedValue<Hex | undefined>;
gas?: PromisedValue<bigint | undefined>;
gasPrice?: PromisedValue<bigint | undefined>;
maxFeePerBlobGas?: PromisedValue<bigint | undefined>;
maxFeePerGas?: PromisedValue<bigint | undefined>;
maxPriorityFeePerGas?: PromisedValue<bigint | undefined>;
nonce?: PromisedValue<number | undefined>;
to?: PromisedValue<Address | undefined>;
value?: PromisedValue<bigint | undefined>;
};