AccountCreatedEffectResponse class

Represents an account created effect from Horizon.

This effect occurs when a new account is created on the Stellar network via the Create Account operation. The creating account must provide a starting balance of at least the minimum reserve (currently 1 XLM).

Fields:

Triggered by: Create Account operation

Example:

final effects = await sdk.effects.forAccount('account_id').execute();
for (var effect in effects.records) {
  if (effect is AccountCreatedEffectResponse) {
    print('Account created with ${effect.startingBalance} XLM');
  }
}

See also:

Inheritance

Constructors

AccountCreatedEffectResponse(String startingBalance, String id, int type_i, String type, String createdAt, String pagingToken, String account, EffectResponseLinks links)
Creates an AccountCreatedEffectResponse from Horizon API data.
AccountCreatedEffectResponse.fromJson(Map<String, dynamic> json)
factory

Properties

account String
Account ID affected by this effect
getter/setter pairinherited
accountMuxed String?
Muxed account address if the account is a muxed account
getter/setter pairinherited
accountMuxedId String?
Muxed account sub-account ID if applicable
getter/setter pairinherited
createdAt String
When this effect occurred in ISO 8601 format
getter/setter pairinherited
hashCode int
The hash code for this object.
no setterinherited
id String
Unique identifier for this effect
getter/setter pairinherited
Links to related resources
getter/setter pairinherited
pagingToken String
Cursor for pagination
getter/setter pairinherited
rateLimitLimit int?
Maximum number of requests allowed in the current rate limit window.
getter/setter pairinherited
rateLimitRemaining int?
Number of requests remaining in the current rate limit window.
getter/setter pairinherited
rateLimitReset int?
Unix timestamp when the rate limit window will reset.
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startingBalance String
The initial XLM balance provided to the new account
getter/setter pair
type String
Human-readable effect type name
getter/setter pairinherited
type_i int
Effect type as integer code
getter/setter pairinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setHeaders(Map<String, String> headers) → void
Populates rate limit fields from HTTP response headers.
inherited
toString() String
A string representation of this object.
inherited

Operators

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