Ethers.js
Connect to your app with any ethers.js signer.
Usage
import { EthersWallet } from "@thirdweb-dev/wallets";
import { Wallet } from "ethers";
// can be any ethers.js signer
const signer = Wallet.createRandom();
const wallet = new EthersWallet(signer);
wallet.connect();
Methods
Inherits all the public methods from the AbstractWallet
class.