Results 11 comments of avivash

@anoushk1234 @swaxtic @Loque18 @jamesonnuss I came up with a workaround for this that uses `import WalletConnectProvider from '@walletconnect/web3-provider'` There are a few parts to this... **First I made a small...

@tfalencar as a temporary workaround, I was able to get it all running in sveltekit using these imports. Vite borks unless you import the `umd` files directly for some reason...

I came up with a workaround using `@walletconnect/web3-provider`, hope it helps for now https://github.com/WalletConnect/walletconnect-monorepo/issues/747#issuecomment-1137952645

One potential implementation approach could be something like this 👇🏼 . I didn't include the actual `eventEmitter.emit()` calls in here, but we can add those to the `recoverFileSystem` method as...

@bgins would it make sense to do this as part of [the fs recovery work](https://github.com/fission-codes/webnative/issues/427) since they're both fairly tied together? I'm assuming "Add username scheme and hashing support" refers...

`snapPoints={[1]}` and `BottomSheetScrollView` seem to be the only things that get it to work for me

hi @szydlovsky 👋🏼 just wondering if your team has had a chance to look into this yet?

Also, the `deployer.address` is different from my UP address for some reason, but it does fetch the correct UP for my account in ``` const universalProfile = await ethers.getContractAtFromArtifact( LSP0Artifact,...

I was able to get this working by polyfilling `navigator.userAgent` for now, but I wonder if there's a better way? ```ts if (!global?.navigator?.userAgent) { global.navigator = { ...global.navigator, userAgent: 'React...