Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
supportedChainIds: [1]
})
export const walletconnect = new WalletConnectConnector({
rpc: { 1: process.env.REACT_APP_NETWORK_URL },
bridge: 'https://bridge.walletconnect.org',
qrcode: false,
pollingInterval: POLLING_INTERVAL
})
export const fortmatic = new FortmaticConnector({
apiKey: process.env.REACT_APP_FORTMATIC_KEY,
chainId: 1
})
export const portis = new PortisConnector({
dAppId: process.env.REACT_APP_PORTIS_ID,
networks: [1]
})
export const walletlink = new WalletLinkConnector({
url: process.env.REACT_APP_NETWORK_URL,
appName: 'Uniswap',
appLogoUrl:
'https://mpng.pngfly.com/20181202/bex/kisspng-emoji-domain-unicorn-pin-badges-sticker-unicorn-tumblr-emoji-unicorn-iphoneemoji-5c046729264a77.5671679315437924251569.jpg'
})
export const trezor = new TrezorConnector({
chainId: 1,
url: RPC_URLS[1],
pollingInterval: POLLING_INTERVAL,
manifestEmail: 'dummy@abc.xyz',
manifestAppUrl: 'http://localhost:1234'
})
export const frame = new FrameConnector({ supportedChainIds: [1] })
export const authereum = new AuthereumConnector({ chainId: 42 })
export const fortmatic = new FortmaticConnector({ apiKey: process.env.FORTMATIC_API_KEY as string, chainId: 4 })
export const portis = new PortisConnector({ dAppId: process.env.PORTIS_DAPP_ID as string, networks: [1, 100] })
export const squarelink = new SquarelinkConnector({
clientId: process.env.SQUARELINK_CLIENT_ID as string,
networks: [1, 100]
})
export const torus = new TorusConnector({ chainId: 1 })