Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

v0.2.0

Compare
Choose a tag to compare
@hazim-j hazim-j released this 05 May 04:57
· 42 commits to main since this release
5a895b6

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

Full Changelog: v0.1.6...v0.2.0