forked from cerc-io/cosmos-explorer
support external for api
This commit is contained in:
parent
bfedae38f1
commit
9233a4e8ef
@ -21,7 +21,7 @@ export class BaseRestClient<R extends AbstractRegistry> {
|
||||
this.registry = registry;
|
||||
}
|
||||
async request<T>(request: Request<T>, args: Record<string, any>, query = '') {
|
||||
let url = `${this.endpoint}${request.url}${query}`;
|
||||
let url = `${request.url.startsWith("http")?'':this.endpoint}${request.url}${query}`;
|
||||
Object.keys(args).forEach((k) => {
|
||||
url = url.replace(`{${k}}`, args[k] || '');
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user