AssetFreezeTransaction class

Inheritance
Annotations
  • @JsonSerializable(fieldRename: FieldRename.kebab)

Constructors

AssetFreezeTransaction({Address? freezeAddress, int? assetId, bool? freeze, int? fee, int? firstValid, Uint8List? genesisHash, int? lastValid, Address? sender, String? type, String? genesisId, Uint8List? group, Uint8List? lease, Uint8List? note, Address? rekeyTo})
AssetFreezeTransaction.builder(AssetFreezeTransactionBuilder builder)
AssetFreezeTransaction.fromJson(Map<String, dynamic> json)
factory

Properties

assetId int?
The ID of the asset being frozen or unfrozen.
final
fee int?
Paid by the sender to the FeeSink to prevent denial-of-service. The minimum fee on Algorand is currently 1000 microAlgos. This field cannot be combined with flat fee.
getter/setter pairinherited
firstValid int?
The first round for when the transaction is valid. If the transaction is sent prior to this round it will be rejected by the network.
finalinherited
freeze bool?
True to freeze the asset.
final
freezeAddress Address?
The address of the account whose asset is being frozen or unfrozen.
final
genesisHash Uint8List?
The hash of the genesis block of the network for which the transaction is valid. See the genesis hash for MainNet, TestNet, and BetaNet.
finalinherited
genesisId String?
The human-readable string that identifies the network for the transaction. The genesis ID is found in the genesis block.
finalinherited
group Uint8List?
The group specifies that the transaction is part of a group and, if so, specifies the hash of the transaction group.
getter/setter pairinherited
hashCode int
The hash code for this object.
no setterinherited
id String
Get the transaction id. The encoded transaction is hashed using sha512/256 and base32 encoded.
no setterinherited
lastValid int?
The ending round for which the transaction is valid. After this round, the transaction will be rejected by the network.
finalinherited
lease Uint8List?
A lease enforces mutual exclusion of transactions. If this field is nonzero, then once the transaction is confirmed, it acquires the lease identified by the (Sender, Lease) pair of the transaction until the LastValid round passes.
getter/setter pairinherited
note Uint8List?
Any data up to 1000 bytes.
finalinherited
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setteroverride
rawId Uint8List
Get the binary representation of the transaction id. The encoded transaction is hashed using sha512/256 without base32 encoding
no setterinherited
rekeyTo Address?
Specifies the authorized address. This address will be used to authorize all future transactions. TODO Change key
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sender Address?
The address of the account that pays the fee and amount.
finalinherited
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited
type String?
Specifies the type of transaction. This value is automatically generated using any of the developer tools.
finalinherited

Methods

assignGroupId(Uint8List groupId) → void
Assign a group id to this transaction. GroupId is the id generated by the SDK.
inherited
export(String filePath) Future<File>
Export the transaction to a file. This creates a new File with the given filePath and streams the encoded transaction to it.
inherited
getEncodedTransaction() Uint8List
Get the encoded representation of the transaction with a prefix suitable for signing.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setFeeByFeePerByte(int feePerByte) Future
Sets the transaction fee according to feePerByte * estimateTxSize.
inherited
sign(Account account) Future<SignedTransaction>
Sign the transaction with the given account.
inherited
toBase64() String
Get the base64-encoded representation of the transaction..
inherited
toBytes() Uint8List
Get the bytes of this transaction.
inherited
toJson() Map<String, dynamic>
override
toMessagePack() Map<String, dynamic>
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited