Added Unilogin provider + support for legacy paths (#719)
* Added unilogin provier + support for legacy path * Bump onboardjs version
This commit is contained in:
parent
6bdbcd234e
commit
a18513a0a5
|
@ -48,7 +48,13 @@ export const onboard = new Onboard({
|
|||
description: 'Please select a wallet to connect to Gnosis Safe Multisig',
|
||||
wallets,
|
||||
},
|
||||
walletCheck: [{ checkName: 'connect' }, transactionDataCheck(), { checkName: 'network' }, { checkName: 'accounts' }],
|
||||
walletCheck: [
|
||||
{ checkName: 'derivationPath' },
|
||||
{ checkName: 'connect' },
|
||||
transactionDataCheck(),
|
||||
{ checkName: 'network' },
|
||||
{ checkName: 'accounts' },
|
||||
],
|
||||
})
|
||||
|
||||
export const onboardUser = async () => {
|
||||
|
|
|
@ -47,7 +47,7 @@ const wallets = [
|
|||
},
|
||||
{ walletName: 'authereum', desktop: false },
|
||||
{ walletName: 'torus', desktop: true },
|
||||
|
||||
{ walletName: 'unilogin', desktop: true },
|
||||
{ walletName: 'coinbase', desktop: false },
|
||||
{ walletName: 'opera', desktop: false },
|
||||
{ walletName: 'operaTouch', desktop: false },
|
||||
|
|
Loading…
Reference in New Issue