address$

View as MarkdownOpen in Claude
get address$(): Observable<[Address](/docs/browser-sdk/v4/reference/address) | undefined>

Observable of the address associated with this call. Emits undefined until the address has been resolved by the signaling layer.

address

get address(): [Address](/docs/browser-sdk/v4/reference/address) | undefined

Snapshot of the current address associated with this call, or undefined if not yet resolved. For a reactive view, use address$ instead.

Examples

call.address$.subscribe((address) => {
console.log('address:', address);
});