Network Fee
Network fee information is used to advise wallet users as to which fee they should include in their transactions based on network load.
Examples of varying fees based on network usage are:
- Bitcoin and most other Utxo based networks
satoshi per byte
measure. - Ethereum
gas price
Plugin Input
interface {
/**
* Enum of blockchain identifiers
*/
blockchain?: Blockchains
}
Plugin Output
interface {
/**
* Gas price in wei units
*/
gasPriceWei?: string;
/**
* Recommended number of satoshis per byte
*/
satByte?: string;
}