exalias
Version:
A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps
130 lines (104 loc) • 4.42 kB
text/typescript
import { ConnectorUpdate } from '@web3-react/types'
import { AbstractConnector } from '@web3-react/abstract-connector'
import { IWalletConnectProviderOptions } from '@walletconnect/types'
export const URI_AVAILABLE = 'URI_AVAILABLE'
export interface WalletConnectConnectorArguments extends IWalletConnectProviderOptions {
supportedChainIds?: number[]
}
export class UserRejectedRequestError extends Error {
public constructor() {
super()
this.name = this.constructor.name
this.message = 'The user rejected the request.'
}
}
function getSupportedChains({ supportedChainIds, rpc }: WalletConnectConnectorArguments): number[] | undefined {
if (supportedChainIds) {
return supportedChainIds
}
return rpc ? Object.keys(rpc).map(k => Number(k)) : undefined
}
export class WalletConnectConnector extends AbstractConnector {
private readonly config: WalletConnectConnectorArguments
public walletConnectProvider?: any
constructor(config: WalletConnectConnectorArguments) {
super({ supportedChainIds: getSupportedChains(config) })
this.config = config
this.handleChainChanged = this.handleChainChanged.bind(this)
this.handleAccountsChanged = this.handleAccountsChanged.bind(this)
this.handleDisconnect = this.handleDisconnect.bind(this)
}
private handleChainChanged(chainId: number | string): void {
if (__DEV__) {
console.log("Handling 'chainChanged' event with payload", chainId)
}
this.emitUpdate({ chainId })
}
private handleAccountsChanged(accounts: string[]): void {
if (__DEV__) {
console.log("Handling 'accountsChanged' event with payload", accounts)
}
this.emitUpdate({ account: accounts[0] })
}
private handleDisconnect(): void {
if (__DEV__) {
console.log("Handling 'disconnect' event")
}
this.emitDeactivate()
// we have to do this because of a @walletconnect/web3-provider bug
if (this.walletConnectProvider) {
this.walletConnectProvider.stop()
this.walletConnectProvider.removeListener('chainChanged', this.handleChainChanged)
this.walletConnectProvider.removeListener('accountsChanged', this.handleAccountsChanged)
this.walletConnectProvider = undefined
}
this.emitDeactivate()
}
public async activate(): Promise<ConnectorUpdate> {
if (!this.walletConnectProvider) {
const WalletConnectProvider = await import('@walletconnect/web3-provider').then(m => m?.default ?? m)
this.walletConnectProvider = new WalletConnectProvider(this.config)
}
// ensure that the uri is going to be available, and emit an event if there's a new uri
if (!this.walletConnectProvider.wc.connected) {
await this.walletConnectProvider.wc.createSession({
chainId: this.supportedChainIds && this.supportedChainIds.length > 0 ? this.supportedChainIds[0] : 1
})
this.emit(URI_AVAILABLE, this.walletConnectProvider.wc.uri)
}
const account = await this.walletConnectProvider
.enable()
.then((accounts: string[]): string => accounts[0])
.catch((error: Error): void => {
// TODO ideally this would be a better check
if (error.message === 'User closed modal') {
throw new UserRejectedRequestError()
}
throw error
})
this.walletConnectProvider.on('disconnect', this.handleDisconnect)
this.walletConnectProvider.on('chainChanged', this.handleChainChanged)
this.walletConnectProvider.on('accountsChanged', this.handleAccountsChanged)
return { provider: this.walletConnectProvider, account }
}
public async getProvider(): Promise<any> {
return this.walletConnectProvider
}
public async getChainId(): Promise<number | string> {
return this.walletConnectProvider.send('eth_chainId')
}
public async getAccount(): Promise<null | string> {
return this.walletConnectProvider.send('eth_accounts').then((accounts: string[]): string => accounts[0])
}
public deactivate() {
if (this.walletConnectProvider) {
this.walletConnectProvider.stop()
this.walletConnectProvider.removeListener('disconnect', this.handleDisconnect)
this.walletConnectProvider.removeListener('chainChanged', this.handleChainChanged)
this.walletConnectProvider.removeListener('accountsChanged', this.handleAccountsChanged)
}
}
public async close() {
await this.walletConnectProvider?.close()
}
}