This repository was archived by the owner on Oct 20, 2024. It is now read-only.
v0.2.0
Release notes
This release updates the SimpleAccount preset to accept an ethers.Signer
type rather then a raw private key string. This enables better integration with other tools that don't expose private keys.
Breaking changes
If you're using the SimpleAccount preset, you'll need to make the following changes:
const simpleAccount = await Presets.Builder.SimpleAccount.init(
-- config.signingKey,
++ signer,
config.rpcUrl,
config.entryPoint,
config.simpleAccountFactory
);
What's Changed
- Change to require a Signer so that it can be used with external wallets such as metamask by @serinuntius in #25
- Bump minor version to 0.2 by @hazim-j in #27
New Contributors
- @serinuntius made their first contribution in #25
Full Changelog: v0.1.6...v0.2.0