contractState = this.http.get(this.apiGetAddressData.getValue().href).pipe(
repeatWhen(() => this.contractRefresh$),
switchMap((data: ContractDataModel) => {
console.log('!!!!!!!!!!!!!!!!!!!!!!!!!!',this.apiGetAddressData.getValue().href, data)
...
}),
...
this.contractRefresh$.pipe(
switchMap(() => this.apiGetAddressData),
switchMap(addressData => this.http.get(addressData.href)),
....
)