Results 36 comments of Renatex

U just need to pass gas param somewhere a bit higher than the default been used. where can we edit that? Using Truffle I've fixed by adding 'gas' amount module.exports...

Hey guys, is there any update on this topic ? This plugin is really awesome, works really good and would be amazing to have this problem solved. Thanks

Create a file: vue-mq.d.ts ``` declare module 'vue-mq' { import {PluginObject} from 'vue'; interface VueMq extends PluginObject { VueMq: VueMq; } const VueMq: VueMq; export default VueMq; } ```

Or an alternative for it: https://www.npmjs.com/package/vue-media-q

This may is not suppose to happen, You simply disconnecting your page from the Metamask, but not Metamask from your domain. Don't get confused here.

Hi @JABirchall thanks for the suggestion. Currently I'm doing it manually, but we can think about extend that to became an optional init parameter. ```ts const connectors: any = [...

Yes, you will have some timing issues. If you just wait `100ms` before checking for the `window.ethereum ` it's already enough. ```ts function sleep(ms: number) { return new Promise(resolve =>...

Hi @YCL686 can you please provide a valid git repository with the reproduction code ? Without that is not possible to properly help you.

@chnejohnson this is really awesome feature, thank you. Let me test it and give you some feedback.

@chnejohnson Works nicely locally. What do you think about something optional when initialising the plugin? ```ts app.use(VueDapp, { autoconnect: true, networks: { 80001: { chainId: ethers.utils.hexValue(80001), blockExplorerUrls: ['https://mumbai.polygonscan.com/'], chainName: 'Mumbai',...