pub struct TransactionBuilderConfigBuilder { /* private fields */ }
Implementations
sourceimpl TransactionBuilderConfigBuilder
impl TransactionBuilderConfigBuilder
pub fn new() -> Self
pub fn fee_algo(&self, fee_algo: &LinearFee) -> Self
pub fn coins_per_utxo_byte(&self, coins_per_utxo_byte: &Coin) -> Self
sourcepub fn coins_per_utxo_word(&self, coins_per_utxo_word: &Coin) -> Self
👎Deprecated since 1.0.0: If you don’t need to support Alonzo, you don’t need this function. Use coins_per_utxo_byte instead
pub fn coins_per_utxo_word(&self, coins_per_utxo_word: &Coin) -> Self
If you don’t need to support Alonzo, you don’t need this function. Use coins_per_utxo_byte instead
TODO: remove once Babbage is on mainnet
pub fn pool_deposit(&self, pool_deposit: &BigNum) -> Self
pub fn key_deposit(&self, key_deposit: &BigNum) -> Self
pub fn max_value_size(&self, max_value_size: u32) -> Self
pub fn max_tx_size(&self, max_tx_size: u32) -> Self
pub fn prefer_pure_change(&self, prefer_pure_change: bool) -> Self
pub fn ex_unit_prices(&self, ex_unit_prices: &ExUnitPrices) -> Self
pub fn costmdls(&self, costmdls: &Costmdls) -> Self
pub fn collateral_percentage(&self, collateral_percentage: u32) -> Self
pub fn max_collateral_inputs(&self, max_collateral_inputs: u32) -> Self
pub fn build(&self) -> Result<TransactionBuilderConfig, JsError>
Trait Implementations
sourceimpl Clone for TransactionBuilderConfigBuilder
impl Clone for TransactionBuilderConfigBuilder
sourcefn clone(&self) -> TransactionBuilderConfigBuilder
fn clone(&self) -> TransactionBuilderConfigBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for TransactionBuilderConfigBuilder
impl Default for TransactionBuilderConfigBuilder
sourcefn default() -> TransactionBuilderConfigBuilder
fn default() -> TransactionBuilderConfigBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for TransactionBuilderConfigBuilder
impl Send for TransactionBuilderConfigBuilder
impl Sync for TransactionBuilderConfigBuilder
impl Unpin for TransactionBuilderConfigBuilder
impl UnwindSafe for TransactionBuilderConfigBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more