Skip to content

Commit

Permalink
fix: remove duplicate identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
monitz87 committed May 28, 2020
1 parent 9b3c041 commit 6224d12
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Polymesh.ts
@@ -1,4 +1,3 @@
import { ApiPromise, Keyring, WsProvider } from '@polkadot/api';
import { ApiPromise, WsProvider } from '@polkadot/api';
import { Signer } from '@polkadot/api/types';
import { InMemoryCache, NormalizedCacheObject } from 'apollo-cache-inmemory';
Expand Down Expand Up @@ -57,9 +56,11 @@ export class Polymesh {

static async connect(params: ConnectParamsBase & { accountSeed: string }): Promise<Polymesh>;

static async connect(params: ConnectParamsBase & {
keyring: CommonKeyring | UiKeyring;
}): Promise<Polymesh>;
static async connect(
params: ConnectParamsBase & {
keyring: CommonKeyring | UiKeyring;
}
): Promise<Polymesh>;

static async connect(params: ConnectParamsBase & { accountUri: string }): Promise<Polymesh>;

Expand Down

0 comments on commit 6224d12

Please sign in to comment.