When execute activate() with skipAuthentication: false, we have an error: No provider
Probably (107): if (!this.provider) throw new Error('No provider');
e.g. config:
import { initializeConnector } from "@web3-react/core";
import { Venly } from "@sinodevi/web3-react-venly";
export const [venly, venlyHooks] = initializeConnector<Venly>(
(actions) =>
new Venly({
actions,
options: {
clientId: "Testaccount",
environment: "staging",
skipAuthentication: false,
},
})
);
When execute activate() with skipAuthentication: false, we have an error: No provider
Probably (107): if (!this.provider) throw new Error('No provider');
e.g. config: