@purser/signer-ethers

A signer to use purser with ethers.js

Usage no npm install needed!

<script type="module">
  import purserSignerEthers from 'https://cdn.skypack.dev/@purser/signer-ethers';
</script>

README

@purser/signer-ethers

This package allows you to use any purser wallet as an ethers.js signer.

Installation

npm install ethers @purser/signer-ethers

Quick Usage (using a MetaMask purser wallet)

import { getDefaultProvider } from "ethers";
import { create } from "@purser/metamask";
import { EthersSigner } from "@purser/signer-ethers";

const provider = getDefaultProvider("ropsten");

const initSigner = async () => {
  const wallet = await create();
  const signer = new EthersSigner({ purserWallet: wallet, provider });
};

You can then use the signer to connect to Ethereum contracts with ethers.

Documentation

You can find more in-depth description for this module's API in the purser docs.

Contributing

This package is part of the purser monorepo package.

Please read our Contributing Guidelines for how to get started.

License

The @purser/core library along with the whole purser monorepo are MIT licensed.