diff --git a/src/integration/blockchain/juice/dto/juice.dto.ts b/src/integration/blockchain/juice/dto/juice.dto.ts index f22e409a3e..5d1fbd583d 100644 --- a/src/integration/blockchain/juice/dto/juice.dto.ts +++ b/src/integration/blockchain/juice/dto/juice.dto.ts @@ -4,7 +4,7 @@ export interface JuicePositionGraphDto extends FrankencoinBasedCollateralDto { id: string; position: string; owner: string; - jusd: string; + stablecoinAddress: string; price: string; limitForClones: string; availableForClones: string; diff --git a/src/integration/blockchain/juice/juice-client.ts b/src/integration/blockchain/juice/juice-client.ts index a14b4e1056..6201e434bd 100644 --- a/src/integration/blockchain/juice/juice-client.ts +++ b/src/integration/blockchain/juice/juice-client.ts @@ -53,7 +53,7 @@ export class JuiceClient { id position owner - jusd + stablecoinAddress collateral price collateralSymbol diff --git a/src/integration/blockchain/juice/juice.service.ts b/src/integration/blockchain/juice/juice.service.ts index 773b408bd7..205848e7f9 100644 --- a/src/integration/blockchain/juice/juice.service.ts +++ b/src/integration/blockchain/juice/juice.service.ts @@ -119,7 +119,7 @@ export class JuiceService extends FrankencoinBasedService implements OnModuleIni positionsResult.push({ address: { position: position.position, - jusd: position.jusd, + jusd: position.stablecoinAddress, collateral: position.collateral, owner: position.owner, },