get

suspend fun get(address: String): ExternalSignerInfo?

Gets information about a specific signer by address.

Checks keypair signers first (takes precedence), then wallet signers.

Return

The signer info, or null if no signer exists for this address

Example:

val info = manager.get("GABC123...")
if (info != null) {
println("Signer type: ${info.type}")
}

Parameters

address

The Stellar G-address to look up