Options for waitForTransaction method.

interface WaitForTransactionOptions {
    intervalMs?: number;
    timeoutMs?: number;
}

Properties

intervalMs?: number

Interval in milliseconds. The method will check the transaction status every intervalMs milliseconds.

timeoutMs?: number

Timeout in milliseconds. After this time, the method will throw an error.