Stellar PHP SDK API Documentation

SEP30AccountResponse

Response containing registered account information from SEP-0030 recovery server.

This class represents account data including the address, registered identities, and signers that can be used for multi-party account recovery operations.

Tags
see
https://github.com/stellar/stellar-protocol/blob/v0.8.1/ecosystem/sep-0030.md
see
RecoveryService
see
SEP30ResponseIdentity
see
SEP30ResponseSigner

Table of Contents

Properties

$address  : string
$identities  : array<string|int, mixed>
$signers  : array<string|int, mixed>

Methods

__construct()  : mixed
fromJson()  : SEP30AccountResponse
Constructs a SEP30AccountResponse from JSON data.
getAddress()  : string
Gets the Stellar account address.
getIdentities()  : array<string|int, SEP30ResponseIdentity>
Gets the registered identities.
getSigners()  : array<string|int, SEP30ResponseSigner>
Gets the account signers.
setAddress()  : void
Sets the Stellar account address.
setIdentities()  : void
Sets the registered identities.
setSigners()  : void
Sets the account signers.

Properties

Methods

getAddress()

Gets the Stellar account address.

public getAddress() : string
Return values
string

The account address.

setAddress()

Sets the Stellar account address.

public setAddress(string $address) : void
Parameters
$address : string

The account address.


        
On this page

Search results