FeeBumpTransaction class
Represents Fee Bump Transaction in Stellar network.
- Inheritance
- Object
- AbstractTransaction
- FeeBumpTransaction
Constructors
-
FeeBumpTransaction(MuxedAccount feeAccount,
int fee, Transaction innerTransaction )
Properties
- fee → int
-
read-only
- feeAccount → MuxedAccount
-
read-only
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- innerTransaction → Transaction
-
read-only
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
-
signatures
↔ List<
XdrDecoratedSignature> -
read / write, inherited
Methods
-
hash(
Network network ) → Uint8List -
Returns the transaction hash of this transaction.
inherited
-
noSuchMethod(
Invocation invocation ) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
sign(
KeyPair signer, Network network ) → void -
Signs the transaction for the
signer
and givennetwork
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