setMinGasPrice
Change the minimum gas price accepted by the network (in wei).
Note:
setMinGasPrice
can only be used on clients that do not have EIP-1559 enabled.
Import
ts
import { setMinGasPrice } from 'viem/test'
Usage
ts
import { setMinGasPrice, parseGwei } from 'viem/test'
import { testClient } from '.'
await setMinGasPrice(testClient, {
gasPrice: parseGwei('20'),
})
Parameters
gasPrice
- Type:
bigint
The gas price (in wei).
ts
await setMinGasPrice(testClient, {
gasPrice: parseGwei('20'),
})