lynn999
Forum Replies Created
-
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletAlright, thanks.
I’ve updated the development version, it can be downloaded from https://www.ads-software.com/plugins/ethpress/advanced/ . I will try get another person to test it before I put it out there as stable, just to be on the safe side.
And big thanks for the tip!
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletCould you tell me what version of WordPress you’re running, so I can update the “latest tested version” tag accurately?
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletWhere do you see this link? Probably it’s causing it, but I don’t see such a thing in my code. Sounds like it’s in walletconnect code..?
About the display, dunno if it is doable, but either way I’m atm too busy to make it. New maintainer will be joining us soon, perhaps they will have time for that. I like the idea tho!
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletCool,
Does this double login happen on example.walletconnect.org ?
Yea the table should stay, I agree, I will change that in the next release.
Which display are you talking about?
0x106417F7265E15C1aAe52F76809F171578e982a9
is my eth address (also listed on the readme), yeah you can send BNB and bsc tokens to it as well (as far as I’m aware), all good.I will update the wp.org listing tomorrow, hopefully.
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletSounds good. If it’s not buggy, then I will update the www.ads-software.com listing, too. Thanks for testing!
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletI updated the libs, you can use the dist folder from https://gitlab.com/losnappas/web3-login/-/tree/walletconnect this branch now.
Let me know if that works out, then ??
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletProbably easiest to recover the ethpress table from the backup, yea. I’m gonna write myself a todo to not remove the table like that, doesn’t make too much sense.
What version did walletconnect update to? It should say in the package.json. Or
git diff
on the package.json and paste here.Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletDid you by chance uninstall the plugin before installing it again? That would remove the ethpress table which would then result in that on the 2nd go, which is not what you want
- This reply was modified 3 years, 7 months ago by lynn999.
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletYep, let me know if it doesn’t, there’s probably some build step I’m forgetting if so.
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletYou should clone this https://gitlab.com/losnappas/web3-login , update the dependencies (maybe running
npm update
is enough), then run
npm run build` and it’ll create the new dist files. Replace the dist folder in ethpress with your new dist folder.I think that’ll be all.
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletHmm, looks like they broke, yeah.
I would need to update the walletconnect library, I think, but I’m quite busy.
I think there’s also a chance that it’ll just start working again once things quieten down; it sounds like they have too much traffic to the bridge server atm.
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet connect trust walletHmm,
Does it work on https://example.walletconnect.org/ ?
Forum: Plugins
In reply to: [EthPress - Web3 Login] website not working how to upgrade?Hi, sorry for the delay,
There will be a new, second maintainer soon~ish, check back then.
Forum: Plugins
In reply to: [EthPress - Web3 Login] Reading connected Wallet ID from local session?Hi, sorry for the delay,
The plugin stores, in its table, the WP user id and the eth address, and it uses the eth address to then log in the matching user. The ID you’re thinking of, I believe, is, in fact, the Eth address.
So, by wallet ID, do you mean the wallet address?
You can access the wallet address through the ethereum object on the window
window.ethereum
for MetaMask, or (I think) from the “walletconnect” item in localStorage for WalletConnect.But yeah, making it available on a window object could be useful.
Even more amazing would be if the pro plug-in that checks if ‘X’ tokens are held, stores (or could also store) that detail, or at least clear the session’s wallet details if not enough tokens held… ??
Thank you for the suggestion!
Forum: Plugins
In reply to: [EthPress - Web3 Login] Web3 connection when loggedin with WalletConnect?Ethpress does not use the web3.js lib, it’s just the metamask
window.ethereum
object and for walletconnect it’s just the walletconnect client library (which is pretty outdated at the moment).I think you might be able to just use walletconnect separately and it might be able to pick up the existing connection, because it is stored in localstorage.