diff --git a/www/js/bundle.js b/www/js/bundle.js index c3e165c..d7febdf 100644 --- a/www/js/bundle.js +++ b/www/js/bundle.js @@ -61,6 +61,8 @@ prefix = "cosmos"; } else if (chainId2.indexOf("bifrost") != -1) { prefix = "iaa"; + } else if (chainId2.indexOf("edgenet-6") != -1) { + prefix = "akash"; } const cosmos = cosmosjs.network(window.lcd, chainId2); @@ -34430,6 +34432,10 @@ Cosmos.prototype.getAccounts = function(address) { accountsApi = "/cosmos/auth/v1beta1/accounts/"; } else if (this.chainId.indexOf("irishub") != -1) { accountsApi = "/cosmos/auth/v1beta1/accounts/"; + } else if (this.chainId.indexOf("akash") != -1) { + accountsApi = "/cosmos/auth/v1beta1/accounts/"; + } else if (this.chainId.indexOf("edgenet") != -1) { + accountsApi = "/cosmos/auth/v1beta1/accounts/"; } else { accountsApi = "/auth/accounts/"; }