GeneratorSummary (Class)¶
A class containing a summary produced by transaction Generator.
This class contains the number of transactions, the aggregated fees, the aggregated UTXOs and the final transaction amount that includes both network and QoS (priority) fees.
See Also
create_transactions, Generator
fees
property
¶
The total fees across all generated transactions in sompi.
| RETURNS | DESCRIPTION |
|---|---|
int
|
The aggregate fee amount.
TYPE:
|
final_amount
property
¶
The final transaction amount in sompi.
| RETURNS | DESCRIPTION |
|---|---|
Optional[int]
|
int | None: The final amount, or None if not applicable. |
final_transaction_id
property
¶
The ID of the final transaction.
| RETURNS | DESCRIPTION |
|---|---|
Optional[str]
|
str | None: The transaction ID, or None if not yet generated. |
network_type
property
¶
The network type used for generation.
| RETURNS | DESCRIPTION |
|---|---|
str
|
The network type string.
TYPE:
|
transactions
property
¶
The number of transactions generated.
| RETURNS | DESCRIPTION |
|---|---|
int
|
The transaction count.
TYPE:
|
utxos
property
¶
The total number of UTXOs consumed.
| RETURNS | DESCRIPTION |
|---|---|
int
|
The UTXO count.
TYPE:
|