1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

general renaming in FixedRateExchange

This commit is contained in:
Miquel A. Cabot 2022-06-14 11:41:11 +02:00
parent 31d9e912a3
commit e80483e5c8

View File

@ -388,7 +388,7 @@ export class FixedRateExchange extends SmartContractWithAddress {
consumeMarketFee: string = '0' consumeMarketFee: string = '0'
): Promise<string> { ): Promise<string> {
const exchange = await this.getExchange(exchangeId) const exchange = await this.getExchange(exchangeId)
const result = await this.contract.methods const amount = await this.contract.methods
.calcBaseOutGivenInDT( .calcBaseOutGivenInDT(
exchangeId, exchangeId,
await this.amountToUnits( await this.amountToUnits(
@ -400,7 +400,7 @@ export class FixedRateExchange extends SmartContractWithAddress {
) )
.call() .call()
return await this.unitsToAmount(exchange.baseToken, result[0], +exchange.btDecimals) return await this.unitsToAmount(exchange.baseToken, amount[0], +exchange.btDecimals)
} }
/** /**
@ -696,13 +696,13 @@ export class FixedRateExchange extends SmartContractWithAddress {
* @return {String} * @return {String}
*/ */
async getOPCCollector(): Promise<string> { async getOPCCollector(): Promise<string> {
let result = null let address = null
try { try {
result = await this.contract.methods.opcCollector().call() address = await this.contract.methods.opcCollector().call()
} catch (e) { } catch (e) {
LoggerInstance.error(`ERROR: Failed to get OPC Collector address: ${e.message}`) LoggerInstance.error(`ERROR: Failed to get OPC Collector address: ${e.message}`)
} }
return result return address
} }
/** /**
@ -710,13 +710,13 @@ export class FixedRateExchange extends SmartContractWithAddress {
* @return {String} * @return {String}
*/ */
public async getRouter(): Promise<string> { public async getRouter(): Promise<string> {
let result = null let address = null
try { try {
result = await this.contract.methods.router().call() address = await this.contract.methods.router().call()
} catch (e) { } catch (e) {
LoggerInstance.error(`ERROR: Failed to get Router address: ${e.message}`) LoggerInstance.error(`ERROR: Failed to get Router address: ${e.message}`)
} }
return result return address
} }
/** /**
@ -725,13 +725,13 @@ export class FixedRateExchange extends SmartContractWithAddress {
* @return {String} return exchange owner * @return {String} return exchange owner
*/ */
async getExchangeOwner(exchangeId: string): Promise<string> { async getExchangeOwner(exchangeId: string): Promise<string> {
let result = null let address = null
try { try {
result = await (await this.getExchange(exchangeId)).exchangeOwner address = await (await this.getExchange(exchangeId)).exchangeOwner
} catch (e) { } catch (e) {
LoggerInstance.error(`ERROR: Failed to get OPF Collector address: ${e.message}`) LoggerInstance.error(`ERROR: Failed to get OPF Collector address: ${e.message}`)
} }
return result return address
} }
/** /**