We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run example demo
I followed the example README.md.
Running server logs the following in console when attempting to click login: Uncaught TypeError: web3.eth is undefined checkWeb3 http://localhost:8000/static/web3auth/js/web3auth.js:56 startLogin http://localhost:8000/login/:88 onclick http://localhost:8000/login/:1 web3auth.js:56:5
// web3auth.js function checkWeb3(callback) { // web3 = new Web3(window.ethereum) web3.eth.getAccounts(function (err, accounts) { // Check for wallet being locked if (err) { throw err; } callback(accounts.length !== 0); }); }
The text was updated successfully, but these errors were encountered:
It seems that @krilarite has a branch with a more functional version: https://github.com/krilarite/django-web3-auth, that I have got to work correctly.
Sorry, something went wrong.
No branches or pull requests
Description
Run example demo
What I Did
I followed the example README.md.
Running server logs the following in console when attempting to click login:
Uncaught TypeError: web3.eth is undefined
checkWeb3 http://localhost:8000/static/web3auth/js/web3auth.js:56
startLogin http://localhost:8000/login/:88
onclick http://localhost:8000/login/:1
web3auth.js:56:5
The text was updated successfully, but these errors were encountered: