Setup proper url for inflation C4E chain.

This commit is contained in:
Paweł Kulpa 2023-02-09 10:29:12 +01:00
parent 5dab0d6adf
commit bd9ea319a8

View File

@ -172,6 +172,9 @@ export default class ChainFetch {
if (this.config.chain_name === 'echelon') {
return this.get('/echelon/inflation/v1/inflation_rate').then(data => Number(data.inflation_rate / 100 || 0))
}
if (this.config.chain_name === 'chain4energy') {
return this.get('/c4e/minter/v1beta1/inflation').then(data => Number(data.inflation))
}
if (this.isModuleLoaded('minting')) {
return this.get('/cosmos/mint/v1beta1/inflation').then(data => Number(commonProcess(data.inflation)))
}