pub struct MempoolTxContentTx {Show 17 fields
pub hash: String,
pub output_amount: Vec<TxContentOutputAmountInner>,
pub fees: String,
pub deposit: String,
pub size: i32,
pub invalid_before: Option<String>,
pub invalid_hereafter: Option<String>,
pub utxo_count: i32,
pub withdrawal_count: i32,
pub mir_cert_count: i32,
pub delegation_count: i32,
pub stake_cert_count: i32,
pub pool_update_count: i32,
pub pool_retire_count: i32,
pub asset_mint_or_burn_count: i32,
pub redeemer_count: i32,
pub valid_contract: bool,
}Fields§
§hash: StringTransaction hash
output_amount: Vec<TxContentOutputAmountInner>§fees: StringFees of the transaction in Lovelaces
deposit: StringDeposit within the transaction in Lovelaces
size: i32Size of the transaction in Bytes
invalid_before: Option<String>Left (included) endpoint of the timelock validity intervals
invalid_hereafter: Option<String>Right (excluded) endpoint of the timelock validity intervals
utxo_count: i32Count of UTXOs within the transaction
withdrawal_count: i32Count of the withdrawals within the transaction
mir_cert_count: i32Count of the MIR certificates within the transaction
delegation_count: i32Count of the delegations within the transaction
stake_cert_count: i32Count of the stake keys (de)registration within the transaction
pool_update_count: i32Count of the stake pool registration and update certificates within the transaction
pool_retire_count: i32Count of the stake pool retirement certificates within the transaction
asset_mint_or_burn_count: i32Count of asset mints and burns within the transaction
redeemer_count: i32Count of redeemers within the transaction
valid_contract: boolTrue if contract script passed validation
Implementations§
Source§impl MempoolTxContentTx
impl MempoolTxContentTx
pub fn new( hash: String, output_amount: Vec<TxContentOutputAmountInner>, fees: String, deposit: String, size: i32, invalid_before: Option<String>, invalid_hereafter: Option<String>, utxo_count: i32, withdrawal_count: i32, mir_cert_count: i32, delegation_count: i32, stake_cert_count: i32, pool_update_count: i32, pool_retire_count: i32, asset_mint_or_burn_count: i32, redeemer_count: i32, valid_contract: bool, ) -> MempoolTxContentTx
Trait Implementations§
Source§impl Clone for MempoolTxContentTx
impl Clone for MempoolTxContentTx
Source§fn clone(&self) -> MempoolTxContentTx
fn clone(&self) -> MempoolTxContentTx
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more