Skip to content

UselessCrypto/walletconnect-v2-ethers-signer

 
 

Repository files navigation

Sponsor TypeScript version Node.js version APLv2 Build Status - Travis Build Status - GitHub Actions

Use

import { WalletConnectSigner } from '@symfoni/walletconnect-v2-ethers-signer';
// Create a signer with a RPC endpoint
return new WalletConnectSigner().connect(new ethers.providers.JsonRpcProvider(RPC_URL));

// Listen for URI
walletConnectSigner.on(SIGNER_EVENTS.uri, (uri) => {
  // Show URI so that a wallet can pair (not handled here yet)
});
await walletConnectSigner.open(); // This will either trigger a session creation where an URI will be created, else it will connect to old session
const address = await walletConnectSigner.getAddress();

License

Licensed under the APLv2. See the LICENSE file for details.


About

A Ethers compatible signer for Wallet Connect version 2.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 99.2%
  • JavaScript 0.8%