address$

View as MarkdownOpen in Claude
1get 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

1get 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

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