forked from rainbow-me/rainbowkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
607 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
'@rainbow-me/rainbowkit': patch | ||
--- | ||
|
||
Talisman Support | ||
|
||
**Example usage** | ||
|
||
```ts | ||
import { | ||
getDefaultWallets, | ||
connectorsForWallets, | ||
} from '@rainbow-me/rainbowkit'; | ||
import { talismanWallet } from '@rainbow-me/rainbowkit/wallets'; | ||
const { wallets } = getDefaultWallets({ appName, chains }); | ||
const connectors = connectorsForWallets([ | ||
...wallets, | ||
{ | ||
groupName: 'Other', | ||
wallets: [talismanWallet({ projectId, chains })], | ||
}, | ||
]); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
'@rainbow-me/rainbowkit': patch | ||
--- | ||
|
||
Safeheron Support | ||
|
||
**Example usage** | ||
|
||
```ts | ||
import { | ||
getDefaultWallets, | ||
connectorsForWallets, | ||
} from '@rainbow-me/rainbowkit'; | ||
import { safeheronWallet } from '@rainbow-me/rainbowkit/wallets'; | ||
const { wallets } = getDefaultWallets({ appName, chains }); | ||
const connectors = connectorsForWallets([ | ||
...wallets, | ||
{ | ||
groupName: 'Other', | ||
wallets: [safeheronWallet({ chains })], | ||
}, | ||
]); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
'@rainbow-me/rainbowkit': patch | ||
--- | ||
|
||
Frontier Wallet Support | ||
|
||
**Example usage** | ||
|
||
```ts | ||
import { | ||
getDefaultWallets, | ||
connectorsForWallets, | ||
} from '@rainbow-me/rainbowkit'; | ||
import { frontierWallet } from '@rainbow-me/rainbowkit/wallets'; | ||
const { wallets } = getDefaultWallets({ appName, chains }); | ||
const connectors = connectorsForWallets([ | ||
...wallets, | ||
{ | ||
groupName: 'Other', | ||
wallets: [frontierWallet({ projectId, chains })], | ||
}, | ||
]); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
'@rainbow-me/rainbowkit': patch | ||
--- | ||
|
||
BitKeep Support | ||
|
||
**Example usage** | ||
|
||
```ts | ||
import { | ||
getDefaultWallets, | ||
connectorsForWallets, | ||
} from '@rainbow-me/rainbowkit'; | ||
import { bitKeepWallet } from '@rainbow-me/rainbowkit/wallets'; | ||
const { wallets } = getDefaultWallets({ appName, projectId, chains }); | ||
const connectors = connectorsForWallets([ | ||
...wallets, | ||
{ | ||
groupName: 'Other', | ||
wallets: [bitKeepWallet({ projectId, chains })], | ||
}, | ||
]); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
packages/rainbowkit/src/wallets/walletConnectors/bitKeepWallet/bitKeepWallet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
151 changes: 151 additions & 0 deletions
151
packages/rainbowkit/src/wallets/walletConnectors/bitKeepWallet/bitKeepWallet.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
/* eslint-disable sort-keys-fix/sort-keys-fix */ | ||
import type { InjectedConnectorOptions } from '@wagmi/core/connectors/injected'; | ||
import { InjectedConnector } from 'wagmi/connectors/injected'; | ||
import { Chain } from '../../../components/RainbowKitProvider/RainbowKitChainContext'; | ||
import { getWalletConnectUri } from '../../../utils/getWalletConnectUri'; | ||
import { isAndroid } from '../../../utils/isMobile'; | ||
import { Wallet } from '../../Wallet'; | ||
import { getWalletConnectConnector } from '../../getWalletConnectConnector'; | ||
import type { | ||
WalletConnectConnectorOptions, | ||
WalletConnectLegacyConnectorOptions, | ||
} from '../../getWalletConnectConnector'; | ||
|
||
export interface BitKeepWalletLegacyOptions { | ||
projectId?: string; | ||
chains: Chain[]; | ||
walletConnectVersion: '1'; | ||
walletConnectOptions?: WalletConnectLegacyConnectorOptions; | ||
} | ||
|
||
export interface BitKeepWalletOptions { | ||
projectId: string; | ||
chains: Chain[]; | ||
walletConnectVersion?: '2'; | ||
walletConnectOptions?: WalletConnectConnectorOptions; | ||
} | ||
|
||
export const bitKeepWallet = ({ | ||
chains, | ||
projectId, | ||
walletConnectOptions, | ||
walletConnectVersion = '2', | ||
...options | ||
}: (BitKeepWalletLegacyOptions | BitKeepWalletOptions) & | ||
InjectedConnectorOptions): Wallet => { | ||
const isBitKeepInjected = | ||
typeof window !== 'undefined' && | ||
// @ts-expect-error | ||
window.bitkeep !== undefined && | ||
// @ts-expect-error | ||
window.bitkeep.ethereum !== undefined && | ||
// @ts-expect-error | ||
window.bitkeep.ethereum.isBitKeep === true; | ||
|
||
const shouldUseWalletConnect = !isBitKeepInjected; | ||
|
||
return { | ||
id: 'bitKeep', | ||
name: 'BitKeep', | ||
iconUrl: async () => (await import('./bitKeepWallet.svg')).default, | ||
iconAccent: '#f6851a', | ||
iconBackground: '#fff', | ||
installed: !shouldUseWalletConnect ? isBitKeepInjected : undefined, | ||
downloadUrls: { | ||
android: 'https://bitkeep.com/en/download?type=2', | ||
ios: 'https://apps.apple.com/app/bitkeep/id1395301115', | ||
mobile: 'https://bitkeep.com/en/download?type=2', | ||
qrCode: 'https://bitkeep.com/en/download', | ||
chrome: | ||
'https://chrome.google.com/webstore/detail/bitkeep-crypto-nft-wallet/jiidiaalihmmhddjgbnbgdfflelocpak', | ||
browserExtension: 'https://bitkeep.com/en/download', | ||
}, | ||
|
||
createConnector: () => { | ||
const connector = shouldUseWalletConnect | ||
? getWalletConnectConnector({ | ||
chains, | ||
options: walletConnectOptions, | ||
projectId, | ||
version: walletConnectVersion, | ||
}) | ||
: new InjectedConnector({ | ||
chains, | ||
options: { | ||
// @ts-expect-error | ||
getProvider: () => window.bitkeep.ethereum, | ||
...options, | ||
}, | ||
}); | ||
|
||
const getUri = async () => { | ||
const uri = await getWalletConnectUri(connector, walletConnectVersion); | ||
|
||
return isAndroid() | ||
? uri | ||
: `bitkeep://wc?uri=${encodeURIComponent(uri)}`; | ||
}; | ||
|
||
return { | ||
connector, | ||
extension: { | ||
instructions: { | ||
learnMoreUrl: 'https://study.bitkeep.com', | ||
steps: [ | ||
{ | ||
description: | ||
'We recommend pinning BitKeep to your taskbar for quicker access to your wallet.', | ||
step: 'install', | ||
title: 'Install the BitKeep extension', | ||
}, | ||
{ | ||
description: | ||
'Be sure to back up your wallet using a secure method. Never share your secret phrase with anyone.', | ||
step: 'create', | ||
title: 'Create or Import a Wallet', | ||
}, | ||
{ | ||
description: | ||
'Once you set up your wallet, click below to refresh the browser and load up the extension.', | ||
step: 'refresh', | ||
title: 'Refresh your browser', | ||
}, | ||
], | ||
}, | ||
}, | ||
mobile: { | ||
getUri: shouldUseWalletConnect ? getUri : undefined, | ||
}, | ||
qrCode: shouldUseWalletConnect | ||
? { | ||
getUri: async () => | ||
getWalletConnectUri(connector, walletConnectVersion), | ||
instructions: { | ||
learnMoreUrl: 'https://study.bitkeep.com', | ||
steps: [ | ||
{ | ||
description: | ||
'We recommend putting BitKeep on your home screen for quicker access.', | ||
step: 'install', | ||
title: 'Open the BitKeep app', | ||
}, | ||
{ | ||
description: | ||
'Be sure to back up your wallet using a secure method. Never share your secret phrase with anyone.', | ||
step: 'create', | ||
title: 'Create or Import a Wallet', | ||
}, | ||
{ | ||
description: | ||
'After you scan, a connection prompt will appear for you to connect your wallet.', | ||
step: 'scan', | ||
title: 'Tap the scan button', | ||
}, | ||
], | ||
}, | ||
} | ||
: undefined, | ||
}; | ||
}, | ||
}; | ||
}; |
1 change: 1 addition & 0 deletions
1
packages/rainbowkit/src/wallets/walletConnectors/frontierWallet/frontierWallet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.