forked from wevm/references
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coinbaseWallet.ts
284 lines (257 loc) · 7.91 KB
/
coinbaseWallet.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import type {
CoinbaseWalletProvider,
CoinbaseWalletSDK,
} from '@coinbase/wallet-sdk'
import type { CoinbaseWalletSDKOptions } from '@coinbase/wallet-sdk/dist/CoinbaseWalletSDK'
import type { Chain } from '@wagmi/chains'
import {
type Address,
ProviderRpcError,
SwitchChainError,
UserRejectedRequestError,
createWalletClient,
custom,
getAddress,
numberToHex,
} from 'viem'
import { Connector } from './base'
import { ChainNotConfiguredForConnectorError } from './errors'
import type { WalletClient } from './types'
import { normalizeChainId } from './utils/normalizeChainId'
type Options = Omit<CoinbaseWalletSDKOptions, 'reloadOnDisconnect'> & {
/**
* Fallback Ethereum JSON RPC URL
* @default ""
*/
jsonRpcUrl?: string
/**
* Fallback Ethereum Chain ID
* @default 1
*/
chainId?: number
/**
* Whether or not to reload dapp automatically after disconnect.
*/
reloadOnDisconnect?: boolean
}
export class CoinbaseWalletConnector extends Connector<
CoinbaseWalletProvider,
Options
> {
readonly id = 'coinbaseWallet'
readonly name = 'Coinbase Wallet'
readonly ready = true
#client?: CoinbaseWalletSDK
#provider?: CoinbaseWalletProvider
constructor({ chains, options }: { chains?: Chain[]; options: Options }) {
super({
chains,
options: {
reloadOnDisconnect: false,
...options,
},
})
}
async connect({ chainId }: { chainId?: number } = {}) {
try {
const provider = await this.getProvider()
provider.on('accountsChanged', this.onAccountsChanged)
provider.on('chainChanged', this.onChainChanged)
provider.on('disconnect', this.onDisconnect)
this.emit('message', { type: 'connecting' })
const accounts = await provider.enable()
const account = getAddress(accounts[0] as string)
// Switch to chain if provided
let id = await this.getChainId()
let unsupported = this.isChainUnsupported(id)
if (chainId && id !== chainId) {
const chain = await this.switchChain(chainId)
id = chain.id
unsupported = this.isChainUnsupported(id)
}
return {
account,
chain: { id, unsupported },
}
} catch (error) {
if (
/(user closed modal|accounts received is empty)/i.test(
(error as Error).message,
)
)
throw new UserRejectedRequestError(error as Error)
throw error
}
}
async disconnect() {
if (!this.#provider) return
const provider = await this.getProvider()
provider.removeListener('accountsChanged', this.onAccountsChanged)
provider.removeListener('chainChanged', this.onChainChanged)
provider.removeListener('disconnect', this.onDisconnect)
provider.disconnect()
provider.close()
}
async getAccount() {
const provider = await this.getProvider()
const accounts = await provider.request<Address[]>({
method: 'eth_accounts',
})
// return checksum address
return getAddress(accounts[0] as string)
}
async getChainId() {
const provider = await this.getProvider()
const chainId = normalizeChainId(provider.chainId)
return chainId
}
async getProvider() {
if (!this.#provider) {
let CoinbaseWalletSDK = (await import('@coinbase/wallet-sdk')).default
// Workaround for Vite dev import errors
// https://github.com/vitejs/vite/issues/7112
if (
typeof CoinbaseWalletSDK !== 'function' &&
// @ts-expect-error This import error is not visible to TypeScript
typeof CoinbaseWalletSDK.default === 'function'
)
CoinbaseWalletSDK = (
CoinbaseWalletSDK as unknown as { default: typeof CoinbaseWalletSDK }
).default
this.#client = new CoinbaseWalletSDK(this.options)
/**
* Mock implementations to retrieve private `walletExtension` method
* from the Coinbase Wallet SDK.
*/
abstract class WalletProvider {
// https://github.com/coinbase/coinbase-wallet-sdk/blob/b4cca90022ffeb46b7bbaaab9389a33133fe0844/packages/wallet-sdk/src/provider/CoinbaseWalletProvider.ts#L927-L936
abstract getChainId(): number
}
abstract class Client {
// https://github.com/coinbase/coinbase-wallet-sdk/blob/b4cca90022ffeb46b7bbaaab9389a33133fe0844/packages/wallet-sdk/src/CoinbaseWalletSDK.ts#L233-L235
abstract get walletExtension(): WalletProvider | undefined
}
const walletExtensionChainId = (
this.#client as unknown as Client
).walletExtension?.getChainId()
const chain =
this.chains.find((chain) =>
this.options.chainId
? chain.id === this.options.chainId
: chain.id === walletExtensionChainId,
) || this.chains[0]
const chainId = this.options.chainId || chain?.id
const jsonRpcUrl =
this.options.jsonRpcUrl || chain?.rpcUrls.default.http[0]
this.#provider = this.#client.makeWeb3Provider(jsonRpcUrl, chainId)
}
return this.#provider
}
async getWalletClient({
chainId,
}: { chainId?: number } = {}): Promise<WalletClient> {
const [provider, account] = await Promise.all([
this.getProvider(),
this.getAccount(),
])
const chain = this.chains.find((x) => x.id === chainId)
if (!provider) throw new Error('provider is required.')
return createWalletClient({
account,
chain,
transport: custom(provider),
})
}
async isAuthorized() {
try {
const account = await this.getAccount()
return !!account
} catch {
return false
}
}
async switchChain(chainId: number) {
const provider = await this.getProvider()
const id = numberToHex(chainId)
try {
await provider.request({
method: 'wallet_switchEthereumChain',
params: [{ chainId: id }],
})
return (
this.chains.find((x) => x.id === chainId) ?? {
id: chainId,
name: `Chain ${id}`,
network: `${id}`,
nativeCurrency: { name: 'Ether', decimals: 18, symbol: 'ETH' },
rpcUrls: { default: { http: [''] }, public: { http: [''] } },
}
)
} catch (error) {
const chain = this.chains.find((x) => x.id === chainId)
if (!chain)
throw new ChainNotConfiguredForConnectorError({
chainId,
connectorId: this.id,
})
// Indicates chain is not added to provider
if ((error as ProviderRpcError).code === 4902) {
try {
await provider.request({
method: 'wallet_addEthereumChain',
params: [
{
chainId: id,
chainName: chain.name,
nativeCurrency: chain.nativeCurrency,
rpcUrls: [chain.rpcUrls.public?.http[0] ?? ''],
blockExplorerUrls: this.getBlockExplorerUrls(chain),
},
],
})
return chain
} catch (error) {
throw new UserRejectedRequestError(error as Error)
}
}
throw new SwitchChainError(error as Error)
}
}
async watchAsset({
address,
decimals = 18,
image,
symbol,
}: {
address: string
decimals?: number
image?: string
symbol: string
}) {
const provider = await this.getProvider()
return provider.request<boolean>({
method: 'wallet_watchAsset',
params: {
type: 'ERC20',
options: {
address,
decimals,
image,
symbol,
},
},
})
}
protected onAccountsChanged = (accounts: string[]) => {
if (accounts.length === 0) this.emit('disconnect')
else this.emit('change', { account: getAddress(accounts[0] as string) })
}
protected onChainChanged = (chainId: number | string) => {
const id = normalizeChainId(chainId)
const unsupported = this.isChainUnsupported(id)
this.emit('change', { chain: { id, unsupported } })
}
protected onDisconnect = () => {
this.emit('disconnect')
}
}