Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@aa-sdk/ethers
Advanced tools
@aa-sdk/ethers
This package contains EthersProviderAdapter
and AccountSigner
, respective extensions of the JsonRpcProvider
and Signer
classes defined in ethers.js
external library.
If you currently rely ethers.js
for web3 development, you can use these ethers.js
-compatible JsonRpcProvider
and Signer
to integrate Account Abstraction into your dApp. You may also find the util
methods helpful.
This repo is community maintained and we welcome contributions!
If you are already using the @aa-sdk/core
package, you can simply install this package and start using the EthersProviderAdapter
and AccountSigner
. If you are not using @aa-sdk/core
, you can install it and follow the instructions in the "Getting started" docs to get started.
yarn add @aa-sdk/ethers
npm i -s @aa-sdk/ethers
pnpm i @aa-sdk/ethers
You can create a provider and connect it to a signer account like so:
import {
LightSmartContractAccount,
getDefaultLightAccountFactoryAddress,
} from "@alchemy/aa-accounts";
import { EthersProviderAdapter } from "@aa-sdk/ethers";
import { LocalAccountSigner, SmartAccountSigner } from "@aa-sdk/core";
import { Alchemy, Network } from "alchemy-sdk";
import { polygonMumbai } from "@aa-sdk/core";
const chain = polygonMumbai;
// 1. Create a provider using EthersProviderAdapter
const alchemy = new Alchemy({
apiKey: process.env.API_KEY!,
network: Network.MATIC_MUMBAI,
});
const ethersProvider = await alchemy.config.getProvider();
const provider = EthersProviderAdapter.fromEthersProvider(ethersProvider);
const signer: SmartAccountSigner = LocalAccountSigner.mnemonicToAccountSigner(
process.env.YOUR_OWNER_MNEMONIC!
);
// 2. Connect the provider to the smart account signer
export const signer = provider.connectToAccount(
(rpcClient) =>
new LightSmartContractAccount({
chain,
factoryAddress: getDefaultLightAccountFactoryAddress(chain),
rpcClient,
signer,
})
);
4.8.0 (2025-01-08)
FAQs
Ethers.js wrapper for @aa-sdk/core
The npm package @aa-sdk/ethers receives a total of 47 weekly downloads. As such, @aa-sdk/ethers popularity was classified as not popular.
We found that @aa-sdk/ethers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.