no signing if gas costs are zero with Metamask #2963
planichttm
started this conversation in
General
Replies: 1 comment 2 replies
-
If you are mentioning a popup for signing, then that's coming from Metamask. You can have a temporary wallet created for the user (using Wallet class) for the game and store the wallet credentials in the browser (since no funds it shouldn't be a problem), so signing can be triggered in user's browser automatically and doesn't need the user to click a button. This kind of thing is also done in Dark Forest game which involves signing transactions all the time. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the Feature
Hi there,
I am not sure if this is more a Metamask Feature Request or for ether.js
I do use ether.js for my project/game and I do have an issue with dozens of signing activities since it is a game and many actions have to be signed. Since I plan it with IOTA as DLT there are no gas fees and the signing is obsolete imo.
Is there a chance to avoid those signing actions or have the possibility to auto sign all that costs no gas? Or is this a Metamask feature request? My dirty workaround would be to have a separate backend and the client sends his transactions to the backend and then the backend would do the job with the Wallet signer so the client does not have to sign it. But this would then be less decentralized and then I would to have some kind of identity provider for the communication between client and backend and I really would like to avoid this workaround
Thanks in advance and regards
Martin
Code Example
No response
Beta Was this translation helpful? Give feedback.
All reactions