pub enum TransactionRequestNetworkFee {
String(String),
Number(f64),
}
Expand description
TransactionRequestNetworkFee : For EVM-based blockchains only. The total
transaction fee in the blockchain’s largest unit. Note: Only two of the
three arguments can be specified in a single transaction: gasLimit
,
gasPrice
and networkFee
. Fireblocks recommends using a numeric string
for accurate precision. Although a number input exists, it is deprecated. -
The transaction blockchain fee. - For Ethereum, you can’t pass gasPrice,
gasLimit and networkFee all together. - A numeric value representation is
required. For EVM-based blockchains only. The total transaction fee in the
blockchain’s largest unit. Note: Only two of the three arguments can be
specified in a single transaction: gasLimit
, gasPrice
and networkFee
.
Fireblocks recommends using a numeric string for accurate precision.
Although a number input exists, it is deprecated. - The transaction
blockchain fee. - For Ethereum, you can’t pass gasPrice, gasLimit and
networkFee all together. - A numeric value representation is required.
Variants§
Trait Implementations§
Source§impl Clone for TransactionRequestNetworkFee
impl Clone for TransactionRequestNetworkFee
Source§fn clone(&self) -> TransactionRequestNetworkFee
fn clone(&self) -> TransactionRequestNetworkFee
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for TransactionRequestNetworkFee
impl Debug for TransactionRequestNetworkFee
Source§impl<'de> Deserialize<'de> for TransactionRequestNetworkFee
impl<'de> Deserialize<'de> for TransactionRequestNetworkFee
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for TransactionRequestNetworkFee
impl PartialEq for TransactionRequestNetworkFee
Source§fn eq(&self, other: &TransactionRequestNetworkFee) -> bool
fn eq(&self, other: &TransactionRequestNetworkFee) -> bool
self
and other
values to be equal, and is used by ==
.