gasFee property
Implementation
BigInt get gasFee {
return switch (this) {
RawEVMTransactionType0 type0 => type0.gasPrice * type0.gasLimit,
RawEVMTransactionType1 type1 => type1.gasPrice * type1.gasLimit,
RawEVMTransactionType2 type2 => type2.maxFeePerGas * type2.gasLimit,
};
}