Class AccountInfoRequest
The account_info command retrieves information about an account, its activity, and its XRP balance.
All information retrieved is relative to a particular version of the ledger. Returns an AccountInfo.
Inherited Members
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class AccountInfoRequest : BaseLedgerRequest
Constructors
| Improve this Doc View SourceAccountInfoRequest(String)
Declaration
public AccountInfoRequest(string account)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | account |
Properties
| Improve this Doc View SourceAccount
A unique identifier for the account, most commonly the account's address.
Declaration
public string Account { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Queue
Whether to get info about this account's queued transactions.
Can only be used when querying for the data from the current open ledger.
Not available from servers in Reporting Mode.
Declaration
public bool? Queue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
SignerLists
Request SignerList objects associated with this account.
Declaration
public bool? SignerLists { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Strict
If true, then the account field only accepts a public key or XRP Ledger address.
Otherwise, account can be a secret or passphrase (not recommended).
The default is false.
Declaration
public bool? Strict { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |