FeeBumpTransaction class

Represents Fee Bump Transaction in Stellar network.

Inheritance

Constructors

FeeBumpTransaction(MuxedAccount _mFeeAccount, int _mFee, Transaction _mInner)

Properties

fee int
no setter
feeAccount MuxedAccount
no setter
hashCode int
The hash code for this object.
no setterinherited
innerTransaction Transaction
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
signatures List<XdrDecoratedSignature>
getter/setter pairinherited

Methods

hash(Network network) Uint8List
Returns the transaction hash of this transaction.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
sign(KeyPair signer, Network network) → void
Signs the transaction for the signer and given network passphrase.
inherited
signatureBase(Network network) Uint8List
Returns signature base of this transaction.
override
signHash(Uint8List preimage) → void
Adds a sha256Hash signature to this transaction by revealing preimage.
inherited
toEnvelopeXdr() XdrTransactionEnvelope
Generates a TransactionEnvelope XDR object for this transaction.
override
toEnvelopeXdrBase64() String
Returns a base64-encoded TransactionEnvelope XDR object of this transaction. This transaction needs to have at least one signature.
inherited
toString() String
A string representation of this object.
inherited
toXdr() XdrFeeBumpTransaction
Generates a Fee Bump Transaction XDR object for this fee bump transaction.
toXdrBase64() String

Operators

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

Static Methods

builder(Transaction innerTransaction) FeeBumpTransactionBuilder
Builds a new FeeBumpTransactionBuilder object.
fromFeeBumpTransactionEnvelope(XdrFeeBumpTransactionEnvelope envelope) FeeBumpTransaction