UNPKG
quickswap-smart-order-router
Version:
latest (1.0.0)
1.0.0
QuickSwap Smart Order Router
github.com/QuickSwap/smart-order-router
QuickSwap/smart-order-router
quickswap-smart-order-router
/
build
/
module
/
providers
/
gas-price-provider.d.ts
11 lines
(10 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
BigNumber
}
from
'@ethersproject/bignumber'
;
export
declare
type
GasPrice
= {
gasPriceWei
:
BigNumber
; };
/** * Provider for getting gas prices. */
export
declare
abstract
class
IGasPriceProvider
{
abstract
getGasPrice
():
Promise
<
GasPrice
>; }