@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
9 lines (8 loc) • 347 B
TypeScript
import { ChainTypes } from '../../common/types';
import GlobalConfigService from './globalConfigService';
export default class ProxyService {
private _globalConfigService;
private _nextId;
constructor(_globalConfigService: GlobalConfigService);
fetchJsonRpc(chain: ChainTypes, method: string, params?: Array<any>): Promise<any>;
}