github.com/lmittmann/w3@v0.20.0/module/eth/gas_price.go (about) 1 package eth 2 3 import ( 4 "math/big" 5 6 "github.com/lmittmann/w3/internal/module" 7 "github.com/lmittmann/w3/w3types" 8 ) 9 10 // GasPrice requests the current gas price in wei. 11 func GasPrice() w3types.RPCCallerFactory[*big.Int] { 12 return module.NewFactory( 13 "eth_gasPrice", 14 nil, 15 module.WithRetWrapper(module.HexBigRetWrapper), 16 ) 17 }