-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
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
chore: release v4.5.6 #512
Conversation
* chore: add test concurrency using nonceOptions (#506) --------- Co-authored-by: GabiDev <gv@popoo.io> Co-authored-by: Joe Pegler <joepegler123@gmail.com>
* chore: support erc20 payment session
* chore: release v4.4.5
chore: skip transfer tests
* fix: remove file storage (#515)
Just one small thing, PR title says 4.5.5 release but it should be 4.4.6 |
* @param chain - The chain object | ||
* @returns {@link SupportedSigner} - A signer object that can be used to sign transactions | ||
*/ | ||
export const toSupportedSigner = ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious to know where would this be useful ? We could already pass private key accounts without this function
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TBH I'm not 100% certain, but from what I've seen the typical way our sessions are used is: a dapp will not use sessionStorageClient in the backend, instead saving private keys to a db or similar, and then reconstruct the signer from the relevant private key in the backend at run time on request. I thought this would be useful helper to dapps with such a setup, and I might document it in a 'sessions in the backend' tutorial or similar moving forward
PR-Codex overview
This PR updates the Biconomy SDK to version 4.4.6, introducing changes related to session storage, token payment, and smart accounts.
Detailed summary
SessionStorageClient
to a separate package