UNPKG

@tronweb3/tronwallet-adapter-bitkeep

Version:

Wallet adapter for Bitget(BitKeep) Wallet extension and app.

353 lines (329 loc) 11.9 kB
import { Adapter, AdapterState, isInBrowser, WalletReadyState, WalletSignMessageError, WalletNotFoundError, WalletDisconnectedError, WalletSignTransactionError, WalletConnectionError, WalletGetNetworkError, isInMobileBrowser, } from '@tronweb3/tronwallet-abstract-adapter'; import { getNetworkInfoByTronWeb } from '@tronweb3/tronwallet-adapter-tronlink'; import { WalletInfo, TronLinkAdapter } from '@bitget-wallet/web3-sdk'; import type { TronLinkWallet } from '@tronweb3/tronwallet-adapter-tronlink'; import type { Transaction, SignedTransaction, AdapterName, BaseAdapterConfig, Network, TronWeb, } from '@tronweb3/tronwallet-abstract-adapter'; import { openBitgetWallet, supportBitgetWallet } from './utils.js'; export interface BitKeepAdapterConfig extends BaseAdapterConfig { /** * Timeout in millisecond for checking if Bitget Wallet is supported. * Default is 2 * 1000ms */ checkTimeout?: number; /** * Set if open Wallet's website url when wallet is not installed. * Default is true. */ openUrlWhenWalletNotFound?: boolean; /** * Set if open Bitget Wallet app using DeepLink. * Default is true. */ openAppWithDeeplink?: boolean; } export const BitgetWalletAdapterName = WalletInfo?.name as AdapterName<'Bitget Wallet'>; export class BitKeepAdapter extends Adapter { name = BitgetWalletAdapterName; url = WalletInfo?.homepage; icon = WalletInfo?.logolist?.base64; config: Required<BitKeepAdapterConfig>; private _readyState: WalletReadyState = WalletReadyState.Loading; private _state: AdapterState = AdapterState.Loading; private _connecting: boolean; private _wallet: { tronWeb: TronWeb; tron: TronLinkWallet; } | null; private _address: string | null; constructor(config: BitKeepAdapterConfig = {}) { super(); const { checkTimeout = 2 * 1000, openUrlWhenWalletNotFound = true, openAppWithDeeplink = true } = config; if (typeof checkTimeout !== 'number') { throw new Error('[BitKeepAdapter] config.checkTimeout should be a number'); } this.config = { checkTimeout, openUrlWhenWalletNotFound, openAppWithDeeplink, }; this._connecting = false; this._wallet = null; this._address = null; if (!isInBrowser()) { this._readyState = WalletReadyState.NotFound; this.setState(AdapterState.NotFound); return; } if (supportBitgetWallet()) { this._readyState = WalletReadyState.Found; this._updateWallet(); } else { this._checkWallet().then(() => { if (this.connected) { this.emit('connect', this.address || ''); } }); } } get address() { return this._address; } get state() { return this._state; } get readyState() { return this._readyState; } get connecting() { return this._connecting; } /** * Get network information. * @returns {Network} Current network information. */ async network(): Promise<Network> { try { await this._checkWallet(); if (this.state !== AdapterState.Connected) throw new WalletDisconnectedError(); const wallet = this._wallet; if (!wallet || !wallet.tronWeb) throw new WalletDisconnectedError(); try { return await getNetworkInfoByTronWeb(wallet.tronWeb); } catch (e: any) { throw new WalletGetNetworkError(e?.message, e); } } catch (e: any) { this.emit('error', e); throw e; } } async connect(): Promise<void> { try { this.checkIfOpenApp(); if (this.connected || this.connecting) return; await this._checkWallet(); if (this.readyState === WalletReadyState.NotFound) { if (this.config.openUrlWhenWalletNotFound !== false && isInBrowser()) { window.open(this.url, '_blank'); } throw new WalletNotFoundError(); } const wallet = this._wallet; if (!isInMobileBrowser()) { if (!wallet) return; this._connecting = true; try { await wallet.tron.request({ method: 'tron_requestAccounts' }); } catch (e: any) { throw new WalletConnectionError(e.message); } } const address = wallet?.tronWeb.defaultAddress?.base58 || window.bitkeep?.tronWeb?.defaultAddress?.base58 || ''; this.setAddress(address); this.setState(AdapterState.Connected); this.emit('connect', this.address || ''); } catch (error: any) { this.emit('error', error); throw error; } finally { this._connecting = false; } } async disconnect(): Promise<void> { if (this.state !== AdapterState.Connected) { return; } this.setAddress(null); this.setState(AdapterState.Disconnect); this.emit('disconnect'); } async signTransaction(transaction: Transaction, privateKey?: string): Promise<SignedTransaction> { try { const wallet = await this.checkAndGetWallet(); try { return await wallet.tronWeb.trx.sign(transaction, privateKey); } catch (error: any) { if (error instanceof Error) { throw new WalletSignTransactionError(error.message, error); } else { throw new WalletSignTransactionError(error, new Error(error)); } } } catch (error: any) { this.emit('error', error); throw error; } } async multiSign( transaction: Transaction, privateKey?: string | false, permissionId?: number ): Promise<SignedTransaction> { try { const wallet = await this.checkAndGetWallet(); try { return await wallet.tronWeb.trx.multiSign(transaction, privateKey, permissionId); } catch (error: any) { if (error instanceof Error) { throw new WalletSignTransactionError(error.message, error); } else { throw new WalletSignTransactionError(error, new Error(error)); } } } catch (error: any) { this.emit('error', error); throw error; } } async signMessage(message: string, privateKey?: string): Promise<string> { try { const wallet = await this.checkAndGetWallet(); try { return await wallet.tronWeb.trx.signMessageV2(message, privateKey); } catch (error: any) { if (error instanceof Error) { throw new WalletSignMessageError(error.message, error); } else { throw new WalletSignMessageError(error, new Error(error)); } } } catch (error: any) { this.emit('error', error); throw error; } } private async checkAndGetWallet() { this.checkIfOpenApp(); await this._checkWallet(); if (!this.connected) throw new WalletDisconnectedError(); const wallet = this._wallet; if (!wallet || !wallet.tronWeb) throw new WalletDisconnectedError(); return wallet; } private checkReadyInterval: ReturnType<typeof setInterval> | null = null; private checkForWalletReady() { if (this.checkReadyInterval) { return; } let times = 0; const maxTimes = Math.floor(this.config.checkTimeout / 200); const check = async () => { if (this._wallet && this._wallet?.tron.ready) { this.checkReadyInterval && clearInterval(this.checkReadyInterval); this.checkReadyInterval = null; await this._updateWallet(); this.emit('connect', this.address || ''); } else if (times > maxTimes) { this.checkReadyInterval && clearInterval(this.checkReadyInterval); this.checkReadyInterval = null; } else { times++; } }; this.checkReadyInterval = setInterval(check, 200); } private _checkPromise: Promise<boolean> | null = null; /** * check if wallet exists by interval, the promise only resolve when wallet detected or timeout * @returns if wallet exists */ private _checkWallet(): Promise<boolean> { if (this.readyState === WalletReadyState.Found) { return Promise.resolve(true); } if (this._checkPromise) { return this._checkPromise; } const interval = 100; const maxTimes = Math.floor(this.config.checkTimeout / interval); let times = 0, timer: ReturnType<typeof setInterval>; this._checkPromise = new Promise((resolve) => { const check = () => { times++; const isSupport = supportBitgetWallet(); if (isSupport || times > maxTimes) { timer && clearInterval(timer); this._readyState = isSupport ? WalletReadyState.Found : WalletReadyState.NotFound; this._updateWallet(); this.emit('readyStateChanged', this.readyState); resolve(isSupport); } }; timer = setInterval(check, interval); check(); }); return this._checkPromise; } private checkIfOpenApp() { if (this.config.openAppWithDeeplink === false) { return; } if (openBitgetWallet()) { throw new WalletNotFoundError(); } } private _updateWallet = async () => { let state = this.state; let address = this.address; if (supportBitgetWallet()) { if (isInMobileBrowser()) { const adapter = new TronLinkAdapter(); const tron = ((await adapter?.getProvider().tronLink) as unknown as TronLinkWallet) || (window.bitkeep?.tronLink as unknown as TronLinkWallet); this._wallet = { tron, tronWeb: tron?.tronWeb, }; } else { const tronWeb = window.bitkeep?.tronWeb as unknown as TronWeb; this._wallet = { tron: window.bitkeep.tronLink as unknown as TronLinkWallet, tronWeb, }; } address = this._wallet.tronWeb.defaultAddress?.base58 || null; state = this._wallet.tron?.ready ? AdapterState.Connected : AdapterState.Disconnect; if (!this._wallet.tron?.ready) { this.checkForWalletReady(); } } else { this._wallet = null; address = null; state = AdapterState.NotFound; } this.setAddress(address); this.setState(state); }; private setAddress(address: string | null) { this._address = address; } private setState(state: AdapterState) { const preState = this.state; if (state !== preState) { this._state = state; this.emit('stateChanged', state); } } }