diff --git a/packages/core-sdk/src/types/options.ts b/packages/core-sdk/src/types/options.ts index bc91e8e8..6a373cc1 100644 --- a/packages/core-sdk/src/types/options.ts +++ b/packages/core-sdk/src/types/options.ts @@ -1,7 +1,14 @@ export type TxOptions = { + // Whether or not to wait for the transaction so you + // can receive a transaction receipt in return (which + // contains data about the transaction and return values). waitForTransaction?: boolean; + // The price (in wei) to pay per gas. gasPrice?: bigint; + // Total fee per gas (in wei). maxFeePerGas?: bigint; + // The number of confirmations (blocks that have passed) + // to wait before resolving. numBlockConfirmations?: number; };